/* ============================================================
   atemraum — Design System
   Shared between styleguide and all static pages.
   Edit here = single source of truth.
============================================================ */

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Fonts — Wix-treu: Montserrat überall, keine Serifenschrift */
  --font-brand: 'Montserrat', system-ui, sans-serif;
  --font-ui:    'Montserrat', system-ui, sans-serif;

  /* Brand colours — Wix-treu: helles Coral-Rot als Primärfarbe,
     Burgund nur für tiefe Akzente (Hover, vierte Tag-Bubble) */
  --burgundy:        #FF4040;   /* primär: Titel, Marke, Links */
  --burgundy-dark:   #B00032;   /* Hover, dunkler Akzent */
  --text-body:       #960000;   /* Fliesstext (Wix-gemessen) */
  --burgundy-faint:  rgba(255, 64, 64, 0.06);
  --burgundy-faint2: rgba(255, 64, 64, 0.12);

  /* Rose palette */
  --rose-soft:  #F9DDD7;
  --rose-mid:   #F2C4B8;
  --rose-warm:  #EBA99A;

  /* Neutrals */
  --warm-white:      #F7F4F2;
  --warm-white-deep: #EEE9E6;
  --peach:           #FFF5F0;   /* Wix mid-page Hintergrund: Trio, Hilfe, Praxis, Kontakt */
  --nav-bg:          #F0EDED;   /* Wix Nav-Hintergrund */
  --white:           #FFFFFF;
  --text-primary:    #242020;
  --text-secondary:  #6B6460;
  --border:          #E2DAD7;

  /* Feedback colours */
  --error:   #C0392B;
  --success: #27AE60;

  /* Shadows */
  --shadow-xs: 0 1px 3px rgba(36, 32, 32, 0.06);
  --shadow-sm: 0 2px 8px rgba(36, 32, 32, 0.08);
  --shadow-md: 0 4px 16px rgba(36, 32, 32, 0.10);

  /* Radii */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-pill: 999px;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --duration: 200ms;

  /* Layout */
  --max-w:  1100px;
  --nav-h:  88px;            /* Wix-Stil: deutlich höher als Standard */
  --side-w: 220px;
  --gap:    8px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-ui);
  color: var(--text-primary);
  background: var(--warm-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: var(--burgundy); }
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--burgundy);
  outline-offset: 2px;
}

/* Skip-link for screen readers / keyboard */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--burgundy);
  color: white;
  padding: 8px 16px;
  z-index: 1000;
  text-decoration: none;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* Visually hidden but available to assistive tech */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   ── COMPONENTS ──
============================================================ */

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 10px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    color var(--duration) var(--ease),
    border-color var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn:active { transform: translateY(0); box-shadow: none; }
/* Wix-Stil: Coral-Rot Hintergrund, schwarzer Text (gemessen).
   Schwarz auf #FF4040 hat besseren Kontrast als Weiss. */
.btn--primary {
  background: var(--burgundy);
  color: #000;
  border-color: var(--burgundy);
}
.btn--primary:hover { background: var(--burgundy-dark); border-color: var(--burgundy-dark); color: white; }
.btn--outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}
.btn--outline:hover { background: var(--burgundy); color: white; }
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border);
}
.btn--ghost:hover { color: var(--text-primary); border-color: var(--text-secondary); background: var(--warm-white); }
.btn--sm { font-size: 11px; padding: 6px 16px; }
.btn--lg { font-size: 15px; padding: 14px 36px; }

/* ---------- TAG PILLS / BUBBLES ----------
   Wix-Stil: runde Bubbles in abgestuften Rose-Tönen, zentrierter Text,
   mehrzeilig möglich. Geschwister-Selektoren färben automatisch ab. */
.tag-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 180px;
  height: 180px;
  padding: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--burgundy);
  background: var(--rose-soft);
  border: none;
  border-radius: 50%;
  text-decoration: none;
  transition:
    background var(--duration) var(--ease),
    transform var(--duration) var(--ease),
    box-shadow var(--duration) var(--ease);
}
/* Wix-Original (pixel-gemessen) — vier abgestufte Rose-Töne */
.site-tags-wrap > li:nth-child(4n+1) .tag-pill,
.preview-tags-wrap > .tag-pill:nth-of-type(4n+1),
.preview-tags-wrap > li:nth-child(4n+1) .tag-pill { background: #E9D2CC; }   /* dusty tan */
.site-tags-wrap > li:nth-child(4n+2) .tag-pill,
.preview-tags-wrap > .tag-pill:nth-of-type(4n+2),
.preview-tags-wrap > li:nth-child(4n+2) .tag-pill { background: #FADCD6; }
.site-tags-wrap > li:nth-child(4n+3) .tag-pill,
.preview-tags-wrap > .tag-pill:nth-of-type(4n+3),
.preview-tags-wrap > li:nth-child(4n+3) .tag-pill { background: #FFB4B4; }
.site-tags-wrap > li:nth-child(4n+4) .tag-pill,
.preview-tags-wrap > .tag-pill:nth-of-type(4n+4),
.preview-tags-wrap > li:nth-child(4n+4) .tag-pill { background: #FF8E8E; }

.tag-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.tag-pill.active {
  background: var(--burgundy);
  color: white;
}

/* ---------- FORMS ---------- */
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-label {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--burgundy);
}
.form-label .required { color: var(--burgundy); }
.form-input,
.form-textarea {
  font-family: var(--font-ui);
  font-size: 15px;
  color: var(--burgundy);
  background: var(--white);
  border: none;
  border-radius: 0;
  padding: 14px 16px;
  transition:
    box-shadow var(--duration) var(--ease);
  outline: none;
  width: 100%;
}
.form-input:hover { border-color: var(--rose-warm); }
.form-input:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px var(--burgundy-faint2);
}
.form-input.error,
.form-input:invalid:not(:placeholder-shown) {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.10);
}
.form-input.success {
  border-color: var(--success);
  box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.10);
}
.form-textarea { min-height: 100px; resize: vertical; }
.form-hint { font-size: 11px; color: var(--text-secondary); }
.form-hint.error { color: var(--error); }
.form-hint.success { color: var(--success); }

/* ============================================================
   ── SITE / PAGE COMPONENTS ──
   Used in both the styleguide previews and on real pages.
============================================================ */

/* ---------- NAVIGATION (preview-nav + site-nav share styles) ----------
   Wix-treu: grauer Hintergrund, nur Textlinks, zentriert. */
.site-nav,
.preview-nav {
  background: var(--nav-bg);
  border-bottom: none;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 40px;
  justify-content: center;
}
.site-nav { position: sticky; top: 0; z-index: 50; }
.preview-nav { border-radius: var(--radius-md) var(--radius-md) 0 0; }
.site-nav__nav { width: 100%; display: flex; justify-content: center; }

.site-nav__brand,
.preview-nav__brand {
  font-family: var(--font-brand);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--burgundy);
  text-decoration: none;
}
.site-nav__links,
.preview-nav__links {
  display: flex;
  gap: 64px;
  list-style: none;
  align-items: center;
}
.site-nav__link,
.preview-nav__link {
  font-size: 20px;
  font-weight: 400;
  color: var(--burgundy-dark);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: color var(--duration) var(--ease);
  position: relative;
}
.site-nav__link:hover,
.preview-nav__link:hover,
.site-nav__link.active,
.site-nav__link[aria-current="page"],
.preview-nav__link.active { color: var(--burgundy); }
.site-nav__trigger { cursor: pointer; user-select: none; }

.site-nav__cta,
.preview-nav__cta {
  font-size: 12px;
  font-weight: 500;
  color: var(--burgundy);
  border: 1.5px solid var(--burgundy);
  padding: 6px 16px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background var(--duration) var(--ease),
              color var(--duration) var(--ease);
}
.site-nav__cta:hover,
.preview-nav__cta:hover { background: var(--burgundy); color: white; }

/* ---------- DROPDOWN (Therapieleistungen) ---------- */
.site-nav__item--has-dropdown { position: relative; }
.site-nav__dropdown {
  position: absolute;
  top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  list-style: none;
  padding: 8px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration), visibility var(--duration);
  z-index: 60;
}
.site-nav__item--has-dropdown:hover .site-nav__dropdown,
.site-nav__item--has-dropdown:focus-within .site-nav__dropdown {
  opacity: 1; visibility: visible;
}
.site-nav__dropdown a {
  display: block;
  padding: 8px 20px;
  font-size: 13px;
  color: var(--text-secondary);
  text-decoration: none;
}
.site-nav__dropdown a:hover { color: var(--burgundy); background: var(--burgundy-faint); }

/* ---------- MOBILE NAV ---------- */
.site-nav__toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
}
.site-nav__toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform var(--duration), opacity var(--duration);
}
.site-nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.site-nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.preview-nav-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}
.preview-nav-mobile {
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ---------- HERO ----------
   Wix-treu: zwei sehr grosse Zeilen, "Myriam Engler" ragt unten ins Rose-Band. */
.site-hero,
.preview-hero {
  background: var(--white);
  padding: 64px 32px 0;
  text-align: center;
  position: relative;
}
/* Beide Hero-Zeilen auf Wix-Wert: 86px Montserrat 400 (gemessen) */
.site-hero__brand,
.preview-hero__brand {
  font-family: var(--font-brand);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--burgundy);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.site-hero__name,
.preview-hero__name {
  font-family: var(--font-brand);
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: 0.01em;
  color: var(--burgundy);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.site-hero__creds-band,
.preview-hero__creds-band {
  background: #FFEEEE;            /* Wix-gemessen: pale rose */
  padding: 56px 40px 40px;        /* extra top padding, weil Hero-Text reinragt */
  margin: -32px -32px 0;          /* negative top: Band rutscht unter den Text */
  font-size: 20px;
  font-weight: 400;
  color: var(--burgundy);
  letter-spacing: 0.01em;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  z-index: 0;
}
.preview-hero__creds-band { margin: 0 -64px -48px; }

/* ---------- SPLIT HERO ----------
   Wix-Original: 980px breit, zentriert (kein full-width).
   Höhe ~490px bei 1280px Viewport. Text in Panels zentriert. */
.site-split,
.preview-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 260px;
  max-height: 540px;
  max-width: 980px;
  margin: 40px auto;
  overflow: hidden;
}
.site-split__panel { text-align: center; align-items: center; }
.preview-split {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.site-split__panel,
.preview-split__panel {
  background: var(--rose-soft);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.site-split__eyebrow,
.preview-split__eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.site-split__title,
.preview-split__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--burgundy);
}
.site-split__quote {
  margin-top: 24px;
  color: var(--burgundy);
  font-size: 18px;
  line-height: 1.5;
}
.site-split__quote p { margin: 0; font-style: italic; }
.site-split__quote cite {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-style: normal;
  color: var(--burgundy);
}
.site-split__photo,
.preview-split__photo {
  background: var(--warm-white-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 13px;
}
.site-split__photo img,
.preview-split__photo img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- CARDS ---------- */
/* Wrapper-Sektion füllt 100% der Bildschirmbreite */
.site-cards-section {
  width: 100%;
  background: var(--white);
}
.site-cards,
.preview-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
  width: 100%;
}
.site-card,
.preview-card {
  padding: 56px 36px 36px;
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
}
/* Wix-Original (pixel-genau aus Screenshot gemessen):
   Karte 1 #FBF7F4 (warmes Cream), Karte 2 #FADCD6, Karte 3 #FFB4B4 */
.site-card:nth-child(1),
.preview-card:nth-child(1) { background: #FBF7F4; }
.site-card:nth-child(2),
.preview-card:nth-child(2) { background: #FADCD6; }
.site-card:nth-child(3),
.preview-card:nth-child(3) { background: #FFB4B4; }

/* Arrow-Icon unten unter jeder Karte */
.site-card__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 28px auto 0;
  font-size: 28px;
  color: var(--burgundy);
  text-decoration: none;
  line-height: 1;
  transition: transform var(--duration) var(--ease);
}
.site-card__arrow:hover { transform: translateX(4px); }
.site-card__title,
.preview-card__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 36px);   /* Wix-Wert: 36px, wie Section-Titel */
  font-weight: 400;
  line-height: 1.2;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.site-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.site-card__title a:hover { color: var(--burgundy-dark); }
.site-card__text,
.preview-card__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.6;
  flex: 1;
  font-weight: 400;
}
.site-card__link {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  text-decoration: none;
  align-self: center;
}
.site-card__link::after { content: " →"; transition: transform var(--duration); display: inline-block; }
.site-card__link:hover::after { transform: translateX(3px); }

/* ---------- TAGS SECTION ---------- */
.site-tags-section,
.preview-tags-section {
  background: #F9F3F1;          /* Wix-Pixel-gemessen */
  padding: 80px 40px;
  text-align: center;
}
.preview-tags-section {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
}
.site-tags-section__title,
.preview-tags-section__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.site-tags-section__intro,
.preview-tags-section__intro {
  font-size: 15px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto 28px;
  line-height: 1.7;
}
.site-tags-wrap,
.preview-tags-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  max-width: 880px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.site-tags-wrap li,
.preview-tags-wrap li {
  list-style: none;
}

/* ---------- PRAXIS (Photo | Text | Photo) ---------- */
.site-praxis {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--peach);
}
.site-praxis__photo {
  background: var(--warm-white-deep);
  overflow: hidden;
  min-height: 320px;
}
.site-praxis__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.site-praxis__text {
  padding: 64px 40px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.site-praxis__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.site-praxis__text p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}

/* ---------- TRIO (Wix-treu: full-width, gleichbreite Spalten) ---------- */
.site-trio {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
  background: var(--peach);
}
.site-trio__panel {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
/* Mein Ansatz (links) = rose, Über mich (rechts) = weiss */
.site-trio__panel--left { background: #FFD8D8; }
.site-trio__panel--right { background: var(--white); }
.site-trio__photo {
  overflow: hidden;
  background: var(--warm-white-deep);
}
.site-trio__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.site-trio__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4vw, 36px);   /* Wix-Wert: 36px, wie Section-Titel */
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.site-trio__title a {
  color: inherit;
  text-decoration: none;
}
.site-trio__title a:hover { color: var(--burgundy-dark); }
.site-trio__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
}
.site-trio__text em {
  color: var(--burgundy);
  font-style: italic;
}
.site-trio__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 24px;
  font-size: 28px;
  color: var(--burgundy);
  text-decoration: none;
  line-height: 1;
  transition: transform var(--duration) var(--ease);
}
.site-trio__arrow:hover { transform: translateX(4px); }

/* ---------- TRIO (styleguide-preview) ---------- */
.preview-trio {
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  min-height: 240px;
  overflow: hidden;
}
.preview-trio__panel {
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.preview-trio__panel--left { background: #FADCD6; }
.preview-trio__panel--right { background: var(--white); }
.preview-trio__photo {
  background: var(--warm-white-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 12px;
}
.preview-trio__title {
  font-family: var(--font-brand);
  font-size: 28px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 16px;
}
.preview-trio__title a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--duration) var(--ease);
}
.preview-trio__title a:hover { border-bottom-color: var(--burgundy); }
.preview-trio__text {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  font-weight: 400;
}
.preview-trio__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  margin-top: 20px;
  transition: background var(--duration), color var(--duration);
}
.preview-trio__arrow:hover {
  background: var(--burgundy);
  color: white;
}

/* ---------- KONTAKT-LAYOUT: Form + Map nebeneinander (Wix-Stil) ---------- */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  align-items: stretch;
}
.kontakt-map {
  min-height: 600px;
  background: #FFEEEE;
}
.kontakt-map iframe { display: block; width: 100%; height: 100%; }

/* ---------- FORM CONTAINER ----------
   Wix-Original (pixel-gemessen): Form-Panel #FFEEEE auf Peach-Section */
.preview-form,
.site-form {
  background: #FFEEEE;
  border: none;
  border-radius: 0;
  padding: 48px 40px;
}
.site-form__title {
  font-family: var(--font-brand);
  font-weight: 400;
  font-size: 28px;
  color: var(--burgundy);
  margin-bottom: 32px;
  text-align: center;
}
.preview-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
/* Wix-Layout: 2 Spalten, Nachricht spannt 2 Reihen rechts */
.site-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-rows: auto;
  gap: 16px 20px;
  margin-bottom: 24px;
}
.form-field--span { grid-row: span 2; grid-column: 2; }
.form-field--span .form-textarea { height: 100%; min-height: 160px; }
.form-field--full { grid-column: 1 / -1; }

.form-checkbox-group {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}
.form-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: var(--burgundy);
  cursor: pointer;
}
.form-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--burgundy);
}

.site-form__submit {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 8px;
}

/* ---------- FOOTER — Wix-treu: einzeilig, zentriert.
   Wix-Original (pixel-gemessen): #F0EDED, gleich wie Nav. */
.site-footer {
  background: var(--nav-bg);
  border-top: none;
  padding: 24px 24px 32px;
  text-align: center;
}
.site-footer__line {
  font-size: 14px;
  color: var(--burgundy-dark);
  margin-bottom: 4px;
}
.site-footer__line a {
  color: var(--burgundy-dark);
  text-decoration: none;
  transition: color var(--duration) var(--ease);
}
.site-footer__line a:hover { color: var(--burgundy); }
.site-footer__copy {
  font-size: 14px;
  color: var(--burgundy-dark);
}

/* Preview-Footer im Styleguide bleibt 3-spaltig (Demonstration des Bausteins) */
.preview-footer {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 32px 40px;
  text-align: center;
}
.preview-footer__brand {
  font-family: var(--font-brand);
  font-size: 24px;
  font-weight: 400;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.preview-footer__tagline {
  font-size: 12px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.preview-footer__heading {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.preview-footer__links { list-style: none; padding: 0; margin: 0; }
.preview-footer__links li { margin-bottom: 6px; }
.preview-footer__links a {
  font-size: 12px;
  color: var(--text-secondary);
  text-decoration: none;
}
.preview-footer__links a:hover { color: var(--burgundy); }
.preview-footer__copy { font-size: 11px; color: var(--text-secondary); }

/* ---------- QUOTE ---------- */
.preview-quote,
.site-quote {
  border-left: 3px solid var(--rose-warm);
  padding: 24px 28px;
  background: var(--burgundy-faint);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin: 24px 0;
}
.preview-quote__text,
.site-quote__text {
  font-family: var(--font-brand);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--burgundy);
  line-height: 1.5;
  margin-bottom: 8px;
}
.preview-quote__cite,
.site-quote__cite {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  font-style: normal;
}

/* ============================================================
   ── PAGE LAYOUT HELPERS ──
============================================================ */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container--wide { max-width: 1280px; }
.section { padding: 80px 0; background: var(--white); }
.section--tight { padding: 48px 0; }
.section--light { background: var(--warm-white); }
.section--rose  { background: var(--rose-soft); }
.section--peach { background: var(--peach); }

/* ---------- CTA-Banner ----------
   Wix-Pattern: rosa Streifen mit Text links und Button rechts.
   Erscheint auf Einzelbehandlung, Gruppenunterricht, Buteyko. */
.site-cta {
  background: #FFEEEE;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
.site-cta__text {
  font-size: 18px;
  color: var(--burgundy);
  margin: 0;
}

.section__header { text-align: center; margin-bottom: 48px; }
.section__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 8px;
}
.section__title {
  font-family: var(--font-brand);
  font-size: clamp(28px, 4.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--burgundy);
}
/* DESIGN-DECISION: nicht aus Wix gemessen — Wix nutzt 18px Bold #960000
   für "Meine Gedanken zum Atem". Für SEO-Heading-Hierarchie wollen wir
   trotzdem ein <h2>, aber visuell kleiner als der grosse .section__title.
   Kompromiss: 24px coral, Regular. */
.section__title--sub {
  font-size: 24px;
  font-weight: 400;
}
.section__intro {
  font-size: 15px;
  color: var(--text-body);
  max-width: 620px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.prose { max-width: 680px; margin: 0 auto; }
.prose p { margin-bottom: 16px; font-size: 18px; line-height: 1.5; color: var(--text-body); }   /* Wix-Wert: 18px */
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--burgundy); font-weight: 500; }
.prose a { color: var(--burgundy); }
.prose ul { padding-left: 24px; margin-bottom: 16px; color: var(--text-body); }
.prose ul li { margin-bottom: 6px; line-height: 1.5; font-size: 18px; }
.prose h2, .prose h3 { color: var(--burgundy); margin-bottom: 16px; margin-top: 24px; }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }

/* ============================================================
   ── RESPONSIVE ──
============================================================ */
@media (max-width: 960px) {
  .site-cards,
  .preview-cards { grid-template-columns: 1fr; }
  .site-split,
  .preview-split { grid-template-columns: 1fr; max-height: none; }
  .preview-footer { grid-template-columns: 1fr; gap: 32px; text-align: left; }
  .preview-trio { grid-template-columns: 1fr; }
  .preview-form__grid,
  .site-form__grid { grid-template-columns: 1fr; }
  .form-field--span { grid-row: auto; grid-column: auto; }
  .site-praxis { grid-template-columns: 1fr; }
  .site-praxis__photo { min-height: 280px; }
  .kontakt-layout { grid-template-columns: 1fr; }
  .kontakt-map { min-height: 360px; }
  .site-trio { grid-template-columns: 1fr; }
  .site-trio__photo { min-height: 320px; }
}

@media (max-width: 720px) {
  .site-nav { padding: 0 20px; }
  .site-nav__links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 24px;
    gap: 16px;
    align-items: flex-start;
    /* Use clip-path so the element stays in flow for screen readers but is visually hidden */
    clip-path: inset(0 0 100% 0);
    opacity: 0;
    pointer-events: none;
    transition: clip-path var(--duration), opacity var(--duration);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--nav-h));
    overflow-y: auto;
  }
  .site-nav__links[data-open="true"] {
    clip-path: inset(0 0 0 0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav__link { font-size: 16px; }
  .site-nav__cta { display: none; }
  .site-nav__toggle { display: inline-flex; }
  .site-nav__dropdown {
    position: static;
    transform: none;
    opacity: 1; visibility: visible;
    box-shadow: none;
    border: none;
    padding: 4px 0 4px 16px;
    min-width: auto;
  }
  .site-hero { padding: 64px 24px 40px; }
  .site-hero__creds-band { margin: 0 -24px -40px; padding: 14px 24px; font-size: 12px; }
  .section { padding: 56px 0; }
  .site-tags-section { padding: 48px 24px; }
}

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