/*
Theme Name: Wirkraeume
Theme URI: https://wirkraeume.de
Description: Minimales Custom-Theme für Wirkraeume.de — für Gesundheit & Bewusstsein
Author: Salewski IT
Version: 1.4.1
License: proprietary
Text Domain: wirkraeume
*/

/* ============================================================
   Design Tokens
   ============================================================ */
:root {
  --teal-900: #3a8e9b;
  --teal-700: #6dbac7;
  --teal-500: #8ccad3;
  --teal-300: #b8dde2;
  --teal-100: #e0eff1;
  --cream-100: #f6efe2;
  --cream-50:  #fbf7ee;
  --terracotta: #b07a5a;
  --coral:      #e8a3b1;
  --orange:     #ed9954;
  --leaf:       #b4d086;
  --gold:       #e0b34a;
  --ink-900: #1f2a2c;
  --ink-700: #3a4648;
  --ink-500: #5a6669;
  --ink-300: #97a2a4;
  --paper:   #ffffff;
  --line:    #e6e1d6;
  --font-sans: "Roboto", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --container: 980px;
  --radius-sm: 6px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 6px rgba(31,102,105,0.06);
  --shadow-md: 0 10px 30px rgba(31,102,105,0.08);
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-sans);
  color: var(--teal-700);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 0.4em;
}
h1 { font-size: clamp(2rem, 3.4vw, 2.75rem); }
h2 { font-size: clamp(1.6rem, 2.4vw, 2rem); }
h3 { font-size: 1.25rem; }
p  { margin: 0 0 1em; }

/* ============================================================
   Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section { padding-block: 64px; }
.section--white { background: var(--paper); }
.prose { max-width: 760px; margin-inline: auto; }
.prose p { font-size: 1rem; }
.prose h2 { margin-top: 32px; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  background: var(--teal-700);
  color: white;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 0 rgba(0,0,0,0.04);
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px 24px 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: end;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 14px;
}
.brand__mark { width: 78px; height: auto; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__wirk {
  font-weight: 300;
  font-size: 2.1rem;
  color: white;
  letter-spacing: 0.5px;
}
.brand__raeume {
  font-weight: 700;
  font-size: 2.1rem;
  color: white;
  letter-spacing: 0.5px;
  margin-top: -6px;
}
.brand__tag {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.4px;
  margin-top: 4px;
  font-style: italic;
}
.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 4px;
  padding-bottom: 0;
  margin-bottom: -1px;
}
.site-nav__link {
  display: inline-block;
  padding: 14px 22px;
  font-size: 1rem;
  font-weight: 400;
  color: white;
  border-radius: 6px 6px 0 0;
  transition: background-color 0.15s ease;
  white-space: nowrap;
}
.site-nav__link:hover { background: rgba(255,255,255,0.10); }
.site-nav__link.is-active {
  background: var(--paper);
  color: var(--teal-700);
  font-weight: 700;
}

/* Hamburger button — versteckt auf Desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  align-self: center;
  flex-shrink: 0;
}
.nav-toggle__bar {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 760px) {
  .site-header__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
    padding-bottom: 14px;
    position: relative;
  }
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: -24px;
    right: -24px;
    background: #097279;
    flex-direction: column;
    padding: 8px 0 12px;
    z-index: 100;
    box-shadow: 0 6px 20px rgba(0,0,0,0.18);
  }
  .site-nav.is-open { display: flex; }
  .site-nav__link {
    padding: 13px 24px 13px 40px;
    font-size: 1rem;
    border-radius: 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    white-space: normal;
  }
  .site-nav__link.is-active {
    background: rgba(255,255,255,0.15);
    color: white;
  }
  .brand__mark { width: 54px; height: auto; }
  .brand__wirk, .brand__raeume { font-size: 1.5rem; }
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.15s ease, background-color 0.15s ease;
  white-space: nowrap;
}
.btn--primary { background: var(--teal-500); color: white; }
.btn--primary:hover { background: var(--teal-700); transform: translateY(-1px); }
.btn--outline {
  background: transparent;
  border: 1.5px solid var(--teal-500);
  color: var(--teal-700);
}
.btn--outline:hover { background: var(--teal-100); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; background: var(--paper); }
.hero__image {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero__questions {
  background: #a5d17c;
  padding: 48px 0;
}
.hero__questions ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin-inline: auto;
  padding-inline: 24px;
}
.hero__questions li {
  padding-left: 24px;
  position: relative;
  font-size: 0.98rem;
  color: #ffffff;
}
.hero__questions li::before {
  content: "•";
  position: absolute;
  left: 6px;
  color: #ffffff;
  font-weight: 700;
}
.hero__pitch {
  background: #59b1bf;
  color: #ffffff;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.hero__pitch-image {
  align-self: stretch;
  min-height: 360px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 100%);
          mask-image: linear-gradient(to right, #000 70%, transparent 100%);
}
.hero__pitch-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero__pitch-copy {
  padding: 56px 32px 56px 24px;
  max-width: 560px;
  align-self: center;
}
.hero__pitch-copy h1 { margin-bottom: 18px; color: #ffffff; }
.hero__pitch-copy p  { font-size: 1rem; color: #ffffff; }
.hero__pitch-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero__pitch-actions .btn {
  background: #ffffff;
  color: #938883;
  border: 0;
}
.hero__pitch-actions .btn:hover {
  background: #f4eee6;
  transform: translateY(-1px);
}
@media (max-width: 760px) {
  .hero__pitch { grid-template-columns: 1fr; }
  .hero__pitch-image {
    min-height: 240px;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }
  .hero__pitch-copy { padding: 32px 24px; }
}

/* ============================================================
   Quote with image (Mark Twain)
   ============================================================ */
.quote--leaf {
  background: #a5d17c;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  align-items: stretch;
  overflow: hidden;
}
.quote--leaf .quote__image {
  min-height: 240px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 60%, transparent 100%);
          mask-image: linear-gradient(to right, #000 60%, transparent 100%);
}
.quote--leaf .quote__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.quote--leaf .quote__body {
  align-self: center;
  padding: 40px 36px 32px 24px;
  text-align: left;
  position: relative;
}
.quote--leaf .quote__mark {
  position: absolute;
  top: -10px;
  left: 6px;
  font-family: Georgia, serif;
  font-size: 7rem;
  color: #59b1bf;
  opacity: 0.22;
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
  margin: 0;
}
.quote--leaf .quote__text,
.quote--leaf .quote__author { position: relative; z-index: 1; }
.quote--leaf .quote__text {
  color: #ffffff;
  font-style: italic;
  font-size: 1.35rem;
  max-width: none;
  margin: 0 0 10px;
  text-align: left;
  line-height: 1.35;
}
.quote--leaf .quote__author {
  color: #59b1bf;
  display: block;
  text-align: center;
  font-size: 0.9rem;
}
@media (max-width: 720px) {
  .quote--leaf { grid-template-columns: 1fr; }
  .quote--leaf .quote__image {
    min-height: 180px;
    -webkit-mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 60%, transparent 100%);
  }
  .quote--leaf .quote__body { padding: 24px; }
}

/* ============================================================
   Testimonials — Karousel
   ============================================================ */
.testimonials { padding: 56px 0; background: var(--paper); }
.testimonials h2 { text-align: left; margin-bottom: 24px; }
.testimonial-carousel {
  position: relative;
  overflow: hidden;
  transition: height 0.35s ease;
}
.testimonial-track {
  display: flex;
  align-items: flex-start;
  transition: transform 0.38s cubic-bezier(0.4,0,0.2,1);
}
.testimonial {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px 0;
  position: relative;
}
.testimonial__author { font-weight: 700; color: var(--teal-700); margin-bottom: 2px; }
.testimonial__role {
  font-size: 0.85rem;
  color: var(--ink-500);
  margin-bottom: 10px;
  min-height: 1.2em;
}
.testimonial__text { font-size: 0.95rem; color: var(--ink-700); font-style: italic; margin: 0; }
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-700);
  color: white;
  font-size: 1.3rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 0;
  transition: background-color 0.15s ease;
  flex-shrink: 0;
}
.carousel-btn:hover { background: var(--teal-900); }
.carousel-btn:disabled { background: var(--teal-300); cursor: default; }
.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal-300);
  border: 0;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease;
}
.carousel-dot.is-active { background: var(--teal-700); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--teal-700);
  color: white;
  padding: 36px 0 24px;
}
.site-footer h3 { color: white; font-size: 1.15rem; margin-bottom: 14px; }
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 24px;
}
.site-footer__contact p { margin: 0 0 4px; font-size: 0.95rem; }
.site-footer__contact a:hover { text-decoration: underline; }
.site-footer__legal { font-size: 0.85rem; color: rgba(255,255,255,0.85); }
.site-footer__legal a { margin-inline: 6px; }
.site-footer__legal a:hover { text-decoration: underline; }
@media (max-width: 600px) {
  .site-footer__inner { grid-template-columns: 1fr; }
}

/* ============================================================
   Page: Über uns
   ============================================================ */
.bio {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 40px;
  align-items: start;
  padding-block: 56px;
}
.bio--reverse { grid-template-columns: 1fr 320px; }
.bio__media { display: flex; flex-direction: column; gap: 12px; }
.bio__photo {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 0;
}
.bio__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.bio__caption { font-size: 0.85rem; color: var(--ink-500); text-align: center; font-style: italic; }
.bio__copy h2 { margin-top: 0; }
.bio__pull {
  padding: 24px 0 18px;
  margin: 0 0 22px;
  position: relative;
  text-align: right;
}
.bio__pull::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: -6px;
  font-family: Georgia, serif;
  font-size: 7rem;
  color: #59b1bf;
  opacity: 0.22;
  line-height: 0.8;
  pointer-events: none;
  z-index: 0;
}
.bio__pull p, .bio__pull cite { position: relative; z-index: 1; }
.bio__pull--lg { margin: 36px 0 36px 33.333%; }
.bio__pull--lg p { font-size: 1.9rem; line-height: 1.3; }
.bio__pull p { margin: 0; color: #a5d17c; font-style: italic; font-size: 1.15rem; line-height: 1.4; }
.bio__pull cite { display: block; margin-top: 10px; font-style: normal; font-size: 0.9rem; color: #59b1bf; font-weight: 600; }
.quals {
  margin: 18px 0 0;
  padding: 10px 14px;
  background: #59b1bf;
  display: grid;
  gap: 4px;
}
.bio > .quals { grid-column: 1 / -1; margin-top: 8px; }
.qual { background: transparent; }
.qual + .qual { border-top: 1px solid rgba(255,255,255,0.45); }
.qual__head {
  list-style: none;
  cursor: pointer;
  padding: 12px 8px 12px 32px;
  color: var(--paper);
  font-weight: 600;
  font-size: 1rem;
  position: relative;
  user-select: none;
}
.qual__head::-webkit-details-marker { display: none; }
.qual__head::before {
  content: "+";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--paper);
  line-height: 1;
  transition: transform 0.2s ease;
}
.qual[open] > .qual__head::before { content: "–"; }
.qual__body { padding: 0 8px 14px 32px; color: var(--paper); font-size: 0.95rem; }
.qual__body p { margin: 0; }
.qual__body p + p { margin-top: 8px; }
.bio-cta { text-align: center; padding: 36px 0 48px; }
.bio-cta h3 { color: var(--ink-900); margin-bottom: 16px; font-size: 1.35rem; }
@media (max-width: 760px) {
  .bio, .bio--reverse { grid-template-columns: 1fr; }
  .bio__pull--lg { margin-left: 0; }
  .bio__pull--lg p { font-size: 1.4rem; }
}

/* ============================================================
   Page: Philosophie
   ============================================================ */
.philosophy { padding-block: 56px; }
.philosophy h2 { margin-top: 28px; }
.philosophy__split {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
  align-items: stretch;
  margin: 28px 0;
}
.philosophy__split-body h2 { margin-top: 0; }
.philosophy__split-body p:last-child { margin-bottom: 0; }
.philosophy__split-image {
  overflow: hidden;
  align-self: stretch;
}
.philosophy__split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
@media (max-width: 720px) {
  .philosophy__split { grid-template-columns: 1fr; }
  .philosophy__split-image { min-height: 220px; }
}
.entfalte-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "tall text text"
    "tall a    b";
  gap: 16px;
  margin-top: 32px;
}
.entfalte-grid__text {
  grid-area: text;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 0 0;
  position: relative;
}
.entfalte-grid__text__heading {
  margin-left: 33.333%;
  position: relative;
  padding-top: 18px;
  margin-bottom: 18px;
}
.entfalte-grid__text__heading::before {
  content: "\201C";
  position: absolute;
  top: -22px;
  left: -10px;
  font-family: Georgia, serif;
  font-size: 7rem;
  color: #59b1bf;
  opacity: 0.22;
  line-height: 0.8;
  pointer-events: none;
}
.entfalte-grid__text__heading h2 {
  color: #a5d17c;
  font-style: italic;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: right;
  margin: 0;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}
.entfalte-grid__text p { color: var(--ink-700); font-size: 1rem; margin-bottom: 0; }
.entfalte-grid__text p + p { margin-top: 10px; }
.entfalte-grid__img { position: relative; overflow: hidden; min-height: 200px; }
.entfalte-grid__img--tall { grid-area: tall; }
.entfalte-grid__img--a    { grid-area: a; }
.entfalte-grid__img--b    { grid-area: b; }
.entfalte-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.entfalte-grid__img--placeholder {
  background: repeating-linear-gradient(45deg, #b8c4b4 0 14px, #c5d0c0 14px 28px);
}
@media (max-width: 760px) {
  .entfalte-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "text text" "tall tall" "a b";
  }
  .entfalte-grid__text__heading { margin-left: 0; }
}

/* ============================================================
   Page: Angebote
   ============================================================ */
.angebote-intro {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  overflow: hidden;
  background: #a5d17c;
}
.angebote-intro__image {
  align-self: stretch;
  min-height: 300px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 70%, transparent 100%);
          mask-image: linear-gradient(to right, #000 70%, transparent 100%);
}
.angebote-intro__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.angebote-intro__copy {
  background: #a5d17c;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}
.angebote-intro__copy p { color: var(--paper); font-style: italic; font-size: 0.98rem; margin: 0; line-height: 1.5; }
.angebote-intro__cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--paper);
  color: #097279;
  border: 1px solid #097279;
  border-radius: 999px;
  padding: 10px 8px 10px 18px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  align-self: flex-start;
}
.angebote-intro__cta .btn--primary { margin-left: 4px; padding: 8px 16px; }
@media (max-width: 760px) {
  .angebote-intro { grid-template-columns: 1fr; }
  .angebote-intro__image {
    min-height: 240px;
    -webkit-mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
            mask-image: linear-gradient(to bottom, #000 70%, transparent 100%);
  }
}

/* Service category cards */
.service-cat {
  border: 1px solid #097279;
  border-radius: var(--radius-md);
  margin-block: 28px;
  overflow: hidden;
}
.service-cat__header {
  background: #097279;
  color: white;
  display: grid;
  grid-template-columns: 1fr 230px;
  align-items: stretch;
  height: 130px;
}
.service-cat__title {
  display: flex;
  align-items: center;
  padding: 0 28px;
  font-size: 1.5rem;
  font-weight: 700;
}
.service-cat__avatar {
  overflow: hidden;
  position: relative;
}
.service-cat__avatar::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 90px;
  background: linear-gradient(90deg, #097279 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.service-cat__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.service-cat__list { padding: 16px; display: grid; gap: 12px; }
.service-cat__item {
  background: #59b1bf;
  border-radius: var(--radius-md);
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 18px;
  color: #ffffff;
}
.service-cat__icon {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 3px solid #ffffff;
  overflow: hidden;
  flex-shrink: 0;
}
.service-cat__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-cat__item h3 { font-size: 1.1rem; margin: 0 0 4px; color: #ffffff; font-style: italic; font-weight: 700; }
.service-cat__item p  { margin: 0; font-size: 0.92rem; color: #ffffff; }
.service-cat--coaching .service-cat__icon { background: var(--terracotta); }
.service-cat--yoga     .service-cat__icon { background: var(--coral); }
.service-cat--life     .service-cat__icon { background: var(--orange); }
.service-cat--food     .service-cat__icon { background: var(--leaf); }
.mandala { width: 56px; height: 56px; }

/* ============================================================
   Kontakt-Seite
   ============================================================ */
body.page-id-779 {
  background: var(--teal-100);
}
body.page-id-779 main {
  padding: 48px 16px 64px;
}
.kontakt-page {
  max-width: 680px;
  margin-inline: auto;
  padding: 48px 40px;
  background: var(--paper);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.kontakt-page h1 { margin-bottom: 8px; color: var(--ink-900); }
.kontakt-page .kontakt-intro { margin-bottom: 32px; color: var(--ink-500); }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 1rem;
  color: var(--ink-700);
  background: var(--paper);
  transition: border-color 0.2s;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--teal-700);
}
.wpcf7 textarea { min-height: 140px; resize: vertical; }
.wpcf7 label { display: block; margin-bottom: 16px; font-size: 0.95rem; color: var(--ink-700); }
.wpcf7 input[type="submit"] {
  background: var(--teal-500);
  color: white;
  border: 0;
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.wpcf7 input[type="submit"]:hover { background: var(--teal-700); }
.wpcf7-response-output { margin-top: 16px; padding: 12px 16px; border-radius: var(--radius-sm); }

/* ============================================================
   Simple page (Impressum, Datenschutz)
   ============================================================ */
.simple-page {
  max-width: 760px;
  margin-inline: auto;
  padding: 56px 24px;
}
.simple-page h1 { margin-bottom: 24px; }
.simple-page h2 { margin-top: 32px; font-size: 1.3rem; }
.simple-page p, .simple-page li { font-size: 0.98rem; line-height: 1.7; }

/* ============================================================
   Hash-router page visibility
   ============================================================ */
.wr-page { display: none; }
.wr-page.is-active { display: block; }
