/* ==========================================================
   FELDENKRAISMETODEN.DK — Haupt-Stylesheet
   Pixelgenauer Nachbau des WordPress/UNCODE-Designs

   FONTS:
   - Adobe Typekit eia3qui: neue-haas-grotesk-display, neue-haas-unica
   - Google Fonts: Roboto Flex

   WICHTIG: Das Typekit-Kit muss auf feldenkraismetoden.dk
   freigeschaltet sein unter fonts.adobe.com
   ========================================================== */

/* ----------------------------------------------------------
   DESIGN-TOKENS (Farben & Typografie)
   ---------------------------------------------------------- */
:root {
  /* Hauptfarben */
  --color-header-bg:     #141618;   /* Header/Nav Hintergrund (fast schwarz) */
  --color-mauve:         #5F3248;   /* Hauptfarbe – Texte, Akzente (abgedunkelt für mehr Kontrast) */
  --color-btn:           #DCC0D5;   /* Button-Hintergrund (zartes Lavendel-Rosa) */
  --color-white:         #FFFFFF;
  --color-near-black:    #23282D;
  --color-footer-dark:   #274E57;   /* Footer dunkler Bereich */
  --color-footer-light:  #F7F7F7;   /* Footer heller Bereich */

  /* Sektions-Hintergründe */
  --color-bg-pink:       #F8E1ED;   /* Hold og drop-in klasser */
  --color-bg-cream:      #FDE7A9;   /* Workshops-Einträge */
  --color-bg-blue:       #BCD8EF;   /* Individuelle sessioner */
  --color-bg-sand:       #F1CB78;   /* Startseite Workshops-Sektion */
  --color-bg-white:      #FFFFFF;

  /* Typografie */
  --font-primary:        'neue-haas-grotesk-display', sans-serif;
  --font-secondary:      'neue-haas-unica', sans-serif;
  --font-body:           'Roboto Flex', sans-serif;

  /* Gewichte — für bessere Lesbarkeit kräftiger gesetzt
     (Originalwerte in Klammern: thin 100, extralight 200, light 300) */
  --weight-thin:         300;
  --weight-extralight:   400;
  --weight-light:        400;
  --weight-regular:      400;
  --weight-semibold:     600;

  /* Abstände */
  --spacing-section:     80px;
  --spacing-hero:        120px;
  --max-width:           1296px;
}

/* ----------------------------------------------------------
   HERO SHARED LAYOUT — Alle Seiten-Heroes: gleiche Höhe, gleiche
   Titelposition (padding-top 350px), Content immer sichtbar.
   max-height wirkt nur bei kleinen Viewports (< 825px hoch).
   ---------------------------------------------------------- */
.kontakt-hero,
.page-comingsoon-hero,
.workshops-hero,
.hold-hero,
.sessioner-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 350px;
  box-sizing: border-box;
  max-height: calc(100vh - 80px);
}

/* els-hero: zentriert statt oben ausgerichtet */
.els-hero {
  max-height: calc(100vh - 80px);
}

/* ----------------------------------------------------------
   RESET & BASIS
   ---------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 19px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: var(--weight-thin);
  font-size: 22px;
  color: var(--color-near-black);
  background: var(--color-header-bg); /* dunkel #141618 — Seiten-BG hinter 1296px-Blöcken */
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

/* ----------------------------------------------------------
   HEADER & NAVIGATION
   ---------------------------------------------------------- */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  height: 114px;
  display: flex;
  align-items: center;
  padding: 0 40px;
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Logo */
.site-logo {
  align-self: flex-start;
  margin-top: 21px;
}

.site-logo img {
  height: 62px;
  width: auto;
  display: block;
}

/* Nav — nach rechts schieben */
.main-nav {
  margin-left: auto;
  order: 3;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav ul li {
  position: relative;
}

.main-nav ul li a {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 19px;
  color: var(--color-white);
  letter-spacing: 0.8px;
  padding: 0 14px;
  white-space: nowrap;
  transition: opacity 0.2s;
  display: block;
  line-height: 114px; /* vertikal zentriert in der Header-Höhe */
}

.main-nav ul li a:hover {
  opacity: 0.7;
}

/* Dropdown */
.main-nav .dropdown {
  position: relative;
}

.main-nav .dropdown > a::after {
  content: ' ∨';
  font-size: 14px;
  opacity: 0.7;
}

.main-nav .dropdown-menu {
  display: none;
  position: absolute;
  top: 60%;
  left: 0;
  background: rgba(20, 22, 24, 0.20);
  min-width: 220px;
  padding: 10px 0;
  z-index: 100;
}

.main-nav .dropdown:hover .dropdown-menu {
  display: block;
}

.main-nav .dropdown-menu li a {
  line-height: 1;
  padding: 12px 20px;
  font-size: 17px;
  display: block;
}

/* ----------------------------------------------------------
   HERO-SEKTIONEN (jede Seite)
   ---------------------------------------------------------- */
.page-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0; /* Header ist absolute und overlays hero */
}

/* Hintergrundbild */
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Standard leichtes Overlay für Lesbarkeit */
  filter: brightness(0.75);
}

/* Für dunkle Hero-Seiten (Om metoderne, Kontakt etc.) */
.page-hero.hero-dark .hero-bg {
  filter: brightness(0.55);
}

/* Für warme Sepia-Töne (Workshops, Hold) */
.page-hero.hero-sepia .hero-bg {
  filter: brightness(0.65) sepia(0.3);
}

/* Hero-Titel */
.page-hero .hero-title {
  position: relative;
  z-index: 2;
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(48px, 7vw, 90px);
  color: var(--color-white);
  text-align: center;
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding: 0 40px;
}

/* Vertikale Trennlinie unter Hero-Titel */
.hero-separator {
  position: relative;
  z-index: 2;
  width: 1px;
  height: 130px;
  background: rgba(255, 255, 255, 0.55);
  margin: 30px auto 0;
}

/* ----------------------------------------------------------
   FIXED VIDEO HINTERGRUND (bleibt beim Scrollen sichtbar)
   ---------------------------------------------------------- */
.video-bg-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
  background: var(--color-header-bg);
}

.video-bg-fixed video,
.video-bg-fixed .video-still {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  object-fit: cover;
}

/* Standbild liegt über dem Video, startet unsichtbar */
.video-bg-fixed .video-still {
  opacity: 0;
  transition: opacity 1.5s ease;
}

/* Nach Video-Ende: Standbild einblenden */
.video-bg-fixed.video-ended .video-still {
  opacity: 1;
}

/* ----------------------------------------------------------
   STARTSEITE HERO (nur Text-Overlay, Video ist fixed)
   ---------------------------------------------------------- */
.home-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.home-hero .hero-text-block {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 40px;
}

.home-hero .hero-label {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.home-hero .hero-name {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(56px, 8vw, 110px);
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 20px;
}

.home-hero .hero-label-bottom {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ----------------------------------------------------------
   INHALTSSEKTIONEN ALLGEMEIN
   ---------------------------------------------------------- */
.section {
  padding: var(--spacing-section) 0;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* 1296px-Blöcke — kein padding, aber 172px Abstand darunter (Video/Dunkel sichtbar) */
.section.full-bleed {
  padding: 0;
  margin-bottom: 172px;
}

.section-two-col {
  max-width: 1296px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 648px;
}

.section-two-col.reversed .col-image {
  order: -1; /* Bild erscheint links, Text rechts */
}

.col-text {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.col-image {
  overflow: hidden;
  height: 648px;
}

.col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----------------------------------------------------------
   GROSSE INTRO-TEXTE (Startseite)
   ---------------------------------------------------------- */
.intro-text-section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 75px 200px 75px 0; /* Original: asymmetrisch – kein links-padding */
}

/* Überschrift — identisch mit .col-text h2 (= "Hold og drop-in klasser") */
.intro-text-section .intro-heading {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(40px, 4.4vw, 70px);
  color: var(--color-mauve);
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Untertitel — kursiv, gleicher Fließtext wie in den Sektionen */
.intro-text-section .intro-sub {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  font-style: italic;
  color: var(--color-mauve);
  line-height: 1.75;
  margin-bottom: 24px;
}

/* Links-Absatz — explizit klein */
.intro-text-section .intro-links {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 1.75;
  margin-bottom: 0;
}

/* <a> explizit — verhindert Vererbung falscher Größen */
.intro-text-section .intro-links a {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: var(--color-mauve);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ----------------------------------------------------------
   SEKTIONSFARBEN
   ---------------------------------------------------------- */
.bg-pink    { background-color: var(--color-bg-pink); }
.bg-cream   { background-color: var(--color-bg-cream); }
.bg-blue    { background-color: var(--color-bg-blue); }
.bg-sand    { background-color: var(--color-bg-sand); }
.bg-white   { background-color: var(--color-white); }
.bg-dark    { background-color: var(--color-footer-dark); }

/* ----------------------------------------------------------
   HEADINGS IN SEKTIONEN
   ---------------------------------------------------------- */
.section h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: clamp(28px, 3.5vw, 45px);
  color: var(--color-mauve);
  line-height: 1.15;
  margin-bottom: 20px;
}

/* Große Überschriften in den zweispaltigen Homepage-Sektionen */
.col-text h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(40px, 4.4vw, 70px);
  color: var(--color-mauve);
  line-height: 1.1;
  margin-bottom: 16px;
}

.col-text p {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 24px;
}

.col-text .btn {
  margin-top: 8px;
}

.section h2.large {
  font-size: clamp(36px, 5vw, 65px);
  font-weight: var(--weight-thin);
  text-align: center;
}

.section h3 {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 22px;
  color: var(--color-mauve);
  margin-bottom: 16px;
}

.section p,
.section-text {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 1.7;
}

/* Kursive Untertitel */
.section .subtitle,
.section em {
  font-style: italic;
  font-weight: var(--weight-extralight);
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.btn {
  display: inline-block;
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 17px;
  letter-spacing: 0.5px;
  color: var(--color-white);
  background: var(--color-btn);
  border: none;
  padding: 12px 28px;
  cursor: pointer;
  transition: opacity 0.2s, background 0.2s;
  border-radius: 0;
  text-align: center;
}

.btn:hover {
  opacity: 0.85;
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--color-mauve);
  color: var(--color-mauve);
}

/* ----------------------------------------------------------
   TESTIMONIALS
   ---------------------------------------------------------- */
.testimonials-section {
  padding: 80px 0;
  background: var(--color-white);
  margin-top: 0; /* Abstand kommt von section.full-bleed margin-bottom */
}

.testimonial-separator {
  width: 1px;
  height: 60px;
  background: var(--color-mauve);
  opacity: 0.4;
  margin: 0 auto 40px;
}

.testimonial {
  max-width: 860px;
  margin: 0 auto 60px;
  text-align: center;
  padding: 0 60px;
}

.testimonial blockquote {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--color-mauve);
  line-height: 1.5;
  margin-bottom: 20px;
}

.testimonial cite {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--color-mauve);
  text-transform: uppercase;
  font-style: normal;
}

/* ----------------------------------------------------------
   WORKSHOPS ÜBERSICHT
   ---------------------------------------------------------- */
/* alte Workshop-Regeln entfernt — neue Regeln weiter unten */

/* Trennfoto zwischen Einträgen */
.workshop-photo-divider {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.workshop-photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.4) brightness(0.7);
}

.workshop-date {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 18px;
  color: #000;
  line-height: 1.4;
  padding-top: 4px;
}

.workshop-info h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(24px, 3vw, 40px);
  color: #000;
  line-height: 1.15;
  margin-bottom: 10px;
}

.workshop-info .subtitle {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: 19px;
  color: #000;
  margin-bottom: 20px;
}

.workshop-info .btn {
  margin-top: 10px;
}

/* ----------------------------------------------------------
   WORKSHOP DETAILSEITE
   ---------------------------------------------------------- */
.workshop-detail-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 80px 60px;
}

.workshop-detail-content h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(32px, 4vw, 55px);
  color: #000;
  margin-bottom: 12px;
  line-height: 1.15;
}

.workshop-detail-content .workshop-meta {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 22px;
  color: #000;
  margin-bottom: 40px;
}

.workshop-detail-content p {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: #000;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ----------------------------------------------------------
   HOLD SEITE – STUNDENPLAN
   ---------------------------------------------------------- */
.hold-schedule {
  padding: 60px;
  background: var(--color-bg-pink);
}

.hold-schedule-grid {
  display: grid;
  grid-template-columns: 200px 1fr 120px;
  gap: 0;
  max-width: 900px;
  margin: 0 auto;
}

.schedule-row {
  display: contents;
}

.schedule-row > * {
  padding: 14px 0;
  border-bottom: 1px solid rgba(119, 62, 90, 0.15);
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 19px;
  color: var(--color-mauve);
}

.schedule-day {
  font-weight: var(--weight-light);
}

.schedule-dates {
  font-size: 17px;
  opacity: 0.8;
}

/* ----------------------------------------------------------
   HOLD SEITE – NY LAYOUT (hold-day / hold-entry)
   ---------------------------------------------------------- */
.hold-schedule.bg-white {
  background: var(--color-bg-white);
  padding: 60px 40px 80px;
}

.hold-schedule-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hold-schedule-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 32px;
  color: var(--color-mauve);
  margin-bottom: 48px;
  letter-spacing: 0.5px;
}

.hold-day {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(119, 62, 90, 0.18);
}

.hold-day:last-child {
  border-bottom: 1px solid rgba(119, 62, 90, 0.18);
}

.hold-day-label {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-mauve);
  padding-top: 2px;
}

.hold-entries {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hold-entry {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 0 24px;
  align-items: start;
}

.hold-time {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 18px;
  color: var(--color-mauve);
  opacity: 0.9;
  padding-top: 3px;
}

.hold-info h3 {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 22px;
  color: var(--color-near-black);
  margin-bottom: 4px;
}

.hold-location {
  font-family: var(--font-body);
  font-weight: var(--weight-thin);
  font-size: 17px;
  color: var(--color-mauve);
  opacity: 0.75;
}

.hold-praktisk {
  max-width: 720px;
}

.hold-praktisk h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 28px;
  color: var(--color-mauve);
  margin-bottom: 20px;
}

.hold-praktisk p {
  margin-bottom: 16px;
  font-size: 20px;
  line-height: 1.75;
}

/* ----------------------------------------------------------
   KONTAKTFORMULAR (alle Seiten)
   ---------------------------------------------------------- */
.contact-form-section {
  background: var(--color-bg-cream);
  padding: 80px 60px;
}

.contact-form-section.on-workshop {
  background: var(--color-bg-pink);
  margin-top: 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

.form-wrapper h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 32px;
  color: var(--color-mauve);
  margin-bottom: 30px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 16px;
  color: var(--color-mauve);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
}

.form-field input,
.form-field textarea,
.form-field select {
  font-family: var(--font-body);
  font-weight: var(--weight-thin);
  font-size: 18px;
  color: var(--color-near-black);
  background: var(--color-white);
  border: 1px solid rgba(119, 62, 90, 0.25);
  padding: 12px 16px;
  outline: none;
  border-radius: 0;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--color-mauve);
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 32px;
  text-align: left;
}

.form-submit .btn {
  width: auto;
  padding: 16px 40px;
  font-size: 18px;
  letter-spacing: 1px;
  background: var(--color-mauve);
  color: var(--color-white);
}

.form-success {
  display: none;
  background: #e8f5e9;
  border: 1px solid #a5d6a7;
  color: #2e7d32;
  padding: 16px 20px;
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 18px;
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.site-footer {
  background: var(--color-footer-dark);
  color: var(--color-white);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-contact {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-white);
}

.footer-contact a {
  color: var(--color-white);
  opacity: 0.85;
}

.footer-contact a:hover {
  opacity: 1;
}

/* Footer Kontaktformular */
.footer-form input {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
  color: var(--color-white);
}

.footer-form input::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-form .btn {
  background: var(--color-btn);
  color: var(--color-mauve);
  width: 100%;
}

.footer-legal {
  font-family: var(--font-body);
  font-weight: var(--weight-thin);
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
}

.footer-legal h4 {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 60px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.4);
}

/* ----------------------------------------------------------
   COMING SOON SEITEN
   ---------------------------------------------------------- */
.coming-soon-page .page-hero {
  height: calc(100vh - 114px);
  margin-top: 114px;
}

.coming-soon-page .page-hero .hero-bg {
  filter: brightness(0.55);
}

.coming-soon-text {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(42px, 6vw, 80px);
  color: var(--color-white);
  text-align: center;
}

/* ----------------------------------------------------------
   ESSENTIEL LÆRINGS STUDIO (Neuronen-Hintergrund)
   ---------------------------------------------------------- */
.studio-page .page-hero {
  /* Neuronen-Bild mit leichtem Blau-Sepia */
}

.studio-content {
  background: var(--color-white);
  padding: 80px 60px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* ----------------------------------------------------------
   KONTAKT SEITE
   ---------------------------------------------------------- */
.kontakt-info-box {
  background: var(--color-white);
  padding: 60px;
  max-width: 600px;
  margin: -60px auto 0;
  position: relative;
  z-index: 2;
}

.kontakt-info-box p {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 22px;
  color: var(--color-near-black);
  line-height: 2;
}

/* ----------------------------------------------------------
   WORKSHOP ÜBERSICHT – Eintrags-Layout
   ---------------------------------------------------------- */

/* Foto-Trenner zwischen Einträgen */
.workshop-photo-divider {
  width: 100%;
  height: 320px;
  overflow: hidden;
}

.workshop-photo-divider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(0.35) brightness(0.7);
}

/* Workshop-Eintrag */
.workshop-entry {
  background: var(--color-bg-cream);
}

.workshop-entry.alt {
  background: var(--color-white);
}

.workshop-entry-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0;
  padding: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  align-items: start;
}

.workshop-date {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 18px;
  color: #000;
  line-height: 1.6;
  padding-top: 6px;
}

.workshop-info h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(26px, 3vw, 42px);
  color: #000;
  line-height: 1.15;
  margin-bottom: 10px;
}

.workshop-info .subtitle {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: var(--weight-light);
  font-size: 19px;
  color: #000;
  margin-bottom: 24px;
  display: block;
}

/* Workshop Intro */
.workshop-intro {
  padding: 60px 0 40px;
  max-width: 860px;
}

.workshop-intro p {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 22px;
  color: #000;
  line-height: 1.7;
}

/* ----------------------------------------------------------
   WORKSHOP DETAIL SEITE
   ---------------------------------------------------------- */
.workshop-detail {
  background: var(--color-bg-cream);
  padding: 80px 60px;
}

.workshop-detail-inner {
  max-width: 860px;
  margin: 0 auto;
}

.workshop-detail .ws-meta {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 19px;
  color: #000;
  margin-bottom: 40px;
  letter-spacing: 0.3px;
}

.workshop-detail h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(32px, 4vw, 56px);
  color: var(--color-mauve);
  line-height: 1.15;
  margin-bottom: 14px;
}

.workshop-detail .ws-subtitle {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: var(--weight-extralight);
  font-size: 20px;
  color: var(--color-mauve);
  margin-bottom: 40px;
  display: block;
}

.workshop-detail p {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  color: #000;
  line-height: 1.85;
  margin-bottom: 22px;
}

.workshop-detail blockquote {
  border-left: 2px solid #000;
  padding: 8px 0 8px 28px;
  margin: 40px 0;
  font-style: italic;
  font-size: 19px;
  color: #000;
}

.workshop-detail blockquote cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  font-size: 16px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Tilmeld knap øverst */
.workshop-detail .tilmeld-top {
  display: inline-block;
  margin-bottom: 50px;
}

/* ----------------------------------------------------------
   HOLD SIDE
   ---------------------------------------------------------- */
.hold-intro {
  padding: 70px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hold-intro p {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 1.8;
  max-width: 760px;
  margin-bottom: 16px;
}

.hold-tider {
  background: var(--color-bg-pink);
  padding: 60px;
}

.hold-tider-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hold-tider h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 36px;
  color: var(--color-mauve);
  margin-bottom: 40px;
}

.tider-grid {
  display: grid;
  grid-template-columns: 220px 1fr 140px;
  gap: 0;
}

.tider-row {
  display: contents;
}

.tider-row > div {
  padding: 16px 0;
  border-bottom: 1px solid rgba(119,62,90,0.12);
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 19px;
  color: var(--color-mauve);
  vertical-align: middle;
  display: flex;
  align-items: center;
}

.tider-row .dag {
  font-weight: var(--weight-light);
  font-size: 20px;
}

.tider-row .datoer {
  font-size: 17px;
  opacity: 0.8;
  padding-right: 20px;
}

.tider-row .tilmeld-link a {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 16px;
  color: var(--color-mauve);
  letter-spacing: 0.5px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hold-priser {
  background: var(--color-white);
  padding: 60px;
}

.hold-priser-inner {
  max-width: 860px;
  margin: 0 auto;
}

.hold-priser h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 32px;
  color: var(--color-mauve);
  margin-bottom: 30px;
}

.priser-tabel {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 19px;
  color: var(--color-mauve);
  line-height: 2.2;
}

.priser-tabel strong {
  font-weight: var(--weight-light);
}

/* ----------------------------------------------------------
   INDHOLDSSIDER (om-metoderne, om-nana, boern, individuelle)
   ---------------------------------------------------------- */
.content-page {
  max-width: 800px;
}

.content-page h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(30px, 4vw, 52px);
  color: var(--color-mauve);
  margin-bottom: 12px;
  line-height: 1.1;
}

.content-page .content-subtitle {
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 22px;
  color: var(--color-mauve);
  opacity: 0.8;
  margin-bottom: 40px;
}

.content-page h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 26px;
  color: var(--color-mauve);
  margin: 36px 0 12px;
}

.content-page p {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 20px;
  color: var(--color-near-black);
  line-height: 1.8;
  margin-bottom: 20px;
}

.content-page a {
  color: var(--color-mauve);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.studio-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

/* ----------------------------------------------------------
   KONTAKT SIDE – layout med info + formular
   ---------------------------------------------------------- */
.kontakt-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: var(--max-width);
}

.kontakt-info h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: clamp(30px, 4vw, 48px);
  color: var(--color-mauve);
  margin-bottom: 16px;
}

.kontakt-info > p {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 20px;
  color: var(--color-near-black);
  line-height: 1.7;
  margin-bottom: 32px;
}

.kontakt-details {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 19px;
  color: var(--color-near-black);
  line-height: 2;
}

.kontakt-details a {
  color: var(--color-mauve);
}

/* ----------------------------------------------------------
   TAK SIDE
   ---------------------------------------------------------- */
.tak-section {
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.tak-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.tak-inner h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 64px;
  color: var(--color-mauve);
  margin-bottom: 20px;
}

.tak-inner p {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 20px;
  color: var(--color-near-black);
  line-height: 1.7;
}

/* ----------------------------------------------------------
   HILFKLASSEN
   ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-mauve  { color: var(--color-mauve); }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
}

/* ==========================================================
   KONTAKT SEITE — gemessene Werte vom Live-Original
   Viewport-Referenz: 1680×932 (Live-Scraping 2026-04-23)
   ========================================================== */

/* Foto-Wrapper: CPH-Foto spannt hinter Hero + Info-Block.
   WICHTIG: Das Original-PNG enthält bereits den teal/dimmed Look —
   es gibt KEINEN CSS-Overlay auf der Original-Seite.
   background-attachment: fixed = Foto bleibt beim Scrollen stehen (wie Original). */
.kontakt-bg {
  /* Hände-Foto. Fallback-Farbe greift wenn Bild nicht lädt. */
  background-image: url('/images/haende.jpg');
  /* background-size: cover reicht nicht — das Bild ist 1092×728px (ratio 1.5),
     bei 1440px Viewport skaliert cover auf exakt 1440px Breite → kein horizontaler
     Überlauf → background-position-x hat keinen Effekt.
     Lösung: Bild auf 180% aufziehen → 2592px breit, 1152px Überlauf horizontal.
     background-position 0% = linke Kante bündig → Hände (bei 50% des Originals =
     1296px in der skalierten Version) landen bei 1296/1440 = 90% vom linken Rand.
     Titelbereich (Viewport-Mitte, 720px) zeigt linkes Drittel des Originals = neutrales Teppich-Grau. */
  background-size: 120% auto;
  background-position: 30% 15%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #162d34;
  position: relative;
  min-height: 100vh;
}

/* Gradient-Overlay: links dunkler (Titelbereich lesbar), rechts/Mitte heller (Hände leuchten) */
.kontakt-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 30, 38, 0.65) 0%,
    rgba(15, 30, 38, 0.65) 40%,
    rgba(15, 30, 38, 0.20) 70%,
    rgba(15, 30, 38, 0.35) 100%
  );
  z-index: 0;
  pointer-events: none;
}

/* Hero — exakt gleich wie .workshops-hero (745px, padding-top 350px). */
.kontakt-hero {
  position: relative;
  height: 745px;
  z-index: 1;
}

/* "Kontakt" — Original: neue-haas-grotesk-display, FIXED 86.4px, fw=100, weiß.
   Original scaliert NICHT mit Viewport (gleicher Wert bei 1512 und 1680 Breite).
   Wir benutzen Clamp nur für schmale Screens (<768px). */
.kontakt-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);        /* 100 */
  font-size: 86.4px;
  color: var(--color-white);
  letter-spacing: normal;
  text-align: center;
  line-height: 1.2;    /* Original line-height 103.68 / 86.4 = 1.2 */
  margin: 0;
}

@media (max-width: 768px) {
  .kontakt-title {
    font-size: clamp(48px, 11vw, 72px);
  }
}

/* Trennlinie — analog zu .workshops-hero-sep (margin-top, nicht absolut). */
.kontakt-hero-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin-top: 50px;
}

/* Info-Sektion: kein eigener BG — Foto scheint durch */
.kontakt-info-section {
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Spacer unter weißem Block — analog zu .workshops-bottom-spacer */
.kontakt-bottom-spacer {
  height: 170px;
}

/* Weißer Kontaktinfo-Block — exakt wie .workshops-intro-section
   (max-width 1296px, padding 80px 100px). */
.kontakt-info-box {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-white);
  padding: 80px 100px;
}

/* Kontakttext — gemessen: neue-haas-grotesk-display, 35px, fw=100, schwarz, lh=42px */
.kontakt-info-box p {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);  /* 100 */
  font-size: 35px;
  color: #000;
  line-height: 42px;
  margin: 0;
}

.kontakt-info-box a {
  color: #000;
  text-decoration: none;
}

.kontakt-info-box a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ==========================================================
   STARTSEITE — NEU (gemessene Werte vom Live-Original)
   Messungen bei 2560px Viewport-Breite
   ========================================================== */

/* ----------------------------------------------------------
   HERO — NEUROMOVEMENT-Label (unten)
   .hero-label (oben) ist bereits oben definiert
   ---------------------------------------------------------- */
.home-hero .hero-neuro {
  font-family: var(--font-secondary);   /* neue-haas-unica */
  font-weight: var(--weight-regular);   /* 400 */
  font-size: 31px;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* Korrektur: FELDENKRAIS-Label (oben) auf unica + gemessene Werte */
.home-hero .hero-label {
  font-family: var(--font-secondary);   /* neue-haas-unica */
  font-weight: var(--weight-regular);   /* 400 */
  font-size: 35px;
  color: var(--color-white);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Nana Gravesen — gemessen 150.76px ≈ 6vw bei 2560px */
.home-hero .hero-name {
  font-family: var(--font-primary);     /* neue-haas-grotesk-display */
  font-weight: var(--weight-thin);      /* 100 */
  font-size: clamp(56px, 6vw, 160px);
  color: var(--color-white);
  letter-spacing: 0.02em;
  line-height: 1.0;
  margin-bottom: 16px;
}

/* ----------------------------------------------------------
   CONTENT-BLOCK — alle Inhalts-Sektionen
   Je 1296px breit, 172px Abstand dazwischen (Video sichtbar)
   ---------------------------------------------------------- */
.content-block {
  padding: 0;
  margin-bottom: 172px;
}

/* ----------------------------------------------------------
   INTRO-BLOCK — weißer Block, Fließtext in Mauve-Ton
   Gemessen: padding 75px 200px 75px 0; alle Texte gleich groß
   fs=77.975px ≈ 3.1vw bei 2560px; fw=200
   ---------------------------------------------------------- */
.intro-block {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-white);
  padding: 75px 200px 75px 80px;
}

.intro-block > p {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);  /* 200 */
  font-size: clamp(32px, 3.1vw, 82px);
  color: var(--color-mauve);
  line-height: 1.2;
  margin-bottom: 0.15em;
}

/* Link-Zeilen: etwas mehr Gewicht + Abstand + Pfeil */
.intro-block > p:has(a) {
  font-weight: 300;
  margin-top: 0.5em;
  margin-bottom: 0.1em;
}

.intro-block > p:has(a)::before {
  content: '→\00a0';
}

.intro-block > p a {
  font-family: var(--font-primary);
  font-weight: 300;
  font-size: inherit;
  color: var(--color-mauve);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* ----------------------------------------------------------
   TWO-COL — zweispaltige Sektionen (Pink / Sand / Blau)
   1296px max-width, bunt hinterlegt, min-height 648px
   ---------------------------------------------------------- */
.two-col {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: 648px;
}

/* Bild links statt rechts (Workshops: reversed) */
.two-col.reversed .col-image {
  order: -1;
}

/* Textspalte */
.two-col .col-text {
  padding: 60px 60px 60px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

/* Innerer Wrapper — richtet Inhalt oben aus, padding-top=50px */
.two-col .col-text-inner {
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* Bildspalte */
.two-col .col-image {
  overflow: hidden;
  height: 100%;
  min-height: 648px;
}

.two-col .col-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Überschrift in den 3 farbigen Sektionen — aus Save (clamp 40→70px, fw=200) */
.two-col .col-text-inner h2 {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);  /* 300 — 50% kräftiger für bessere Lesbarkeit */
  font-size: clamp(40px, 4.4vw, 70px);
  color: #3C1F2D;  /* 50% dunkler als --color-mauve */
  line-height: 1.1;
  text-align: center;
  margin: 0;
}

/* Fließtext in den 3 farbigen Sektionen — aus Save (16px, fw=200, lh=1.75) */
.two-col .col-text-inner > p {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);  /* 300 — 50% kräftiger */
  font-size: 19.2px;  /* 20% größer (war 16px) */
  color: #3C1F2D;  /* 50% dunkler als --color-mauve */
  line-height: 1.75;
  text-align: center;
  max-width: 420px;
  margin: 0;
}

.two-col .col-text-inner > p em {
  font-style: italic;
}

/* Button in den Sektionen */
.two-col .col-text-inner .btn {
  margin-top: 8px;
}

/* Sektionsüberschrift (Fallback-Klasse, falls anderswo verwendet) */
.section-heading {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: clamp(36px, 3.8vw, 100px);
  color: var(--color-mauve);
  line-height: 1.0;
  text-align: center;
  margin: 0;
}

/* Fließtext (Fallback-Klasse) */
.section-body {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 22px;
  color: var(--color-mauve);
  line-height: 31.5px;
  text-align: center;
  margin: 0;
}

.section-body em {
  font-style: italic;
}

/* ----------------------------------------------------------
   TESTIMONIALS-BLOCK — weißer Bereich, zentriert
   ---------------------------------------------------------- */
.testimonials-block {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--color-white);
  padding: 60px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Trennlinie — 1px breit, 30px hoch, schwarz, 36px margin vertikal */
.testimonial-sep {
  width: 1px;
  height: 30px;
  background: #000;
  margin: 36px auto;
}

/* Zitat — gemessen 43.19px ≈ 1.7vw bei 2560px, fw=600 */
.testimonial-quote {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);  /* 600 */
  font-size: clamp(18px, 1.7vw, 46px);
  color: var(--color-mauve);
  line-height: 1.5;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

/* Name — gemessen 20px, fw=600, neue-haas-unica, schwarz */
.testimonial-name {
  font-family: var(--font-secondary);   /* neue-haas-unica */
  font-weight: var(--weight-semibold);  /* 600 */
  font-size: 20px;
  color: #000;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* ----------------------------------------------------------
   ZITAT-BLOCK — über den Inline-Editor einfügbar (❝-Button)
   Wird als eigenes Listen-Item (<blockquote>) gespeichert und
   rendert auf der öffentlichen Seite genauso wie im Edit-Modus.
   ---------------------------------------------------------- */
blockquote:has(> .ed-quote-text),
blockquote:has(> .ed-quote-author) {
  position: relative;
  max-width: 100%;        /* passt sich dem Block an, in dem es steht */
  margin: 8px auto;
  padding: 8px 16px 6px;
  border-top: 1px solid rgba(119, 62, 90, 0.25);
  border-bottom: 1px solid rgba(119, 62, 90, 0.25);
  text-align: center;
}

/* Dekoratives Anführungszeichen */
blockquote:has(> .ed-quote-text)::before {
  content: "\201C";          /* „ */
  display: block;
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 34px;
  line-height: 0.5;
  color: var(--color-mauve);
  opacity: 0.55;
  margin-bottom: 2px;
}

.ed-quote-text {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);      /* 300 */
  font-style: italic;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.4;
  color: var(--color-mauve);
  margin: 0 auto 6px;
  max-width: 100%;
}

.ed-quote-author {
  font-family: var(--font-secondary);    /* neue-haas-unica */
  font-weight: var(--weight-semibold);   /* 600 */
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #000;
  margin: 0;
}

/* ----------------------------------------------------------
   KURSIV — mehr Laufweite (Buchstabenabstand) für bessere Lesbarkeit
   ---------------------------------------------------------- */
em, i, .ed-quote-text {
  letter-spacing: 0.04em;
}

/* ----------------------------------------------------------
   FOOTER — neue Klassen (footer-inner statt footer-top)
   ---------------------------------------------------------- */
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 60px;
  padding: 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-col {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 18px;
  line-height: 1.9;
  color: var(--color-white);
}

.footer-col a {
  color: var(--color-white);
  opacity: 0.85;
}

.footer-col a:hover {
  opacity: 1;
}

/* Footer Kontaktformular */
.footer-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-form input,
.footer-form textarea {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 17px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--color-white);
  padding: 10px 14px;
  width: 100%;
  outline: none;
  border-radius: 0;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-form textarea {
  resize: vertical;
}

.footer-form button[type="submit"] {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 17px;
  letter-spacing: 1px;
  background: var(--color-btn);
  color: var(--color-mauve);
  border: none;
  padding: 12px 28px;
  width: 100%;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s;
}

.footer-form button[type="submit"]:hover {
  opacity: 0.85;
}

/* Footer rechtliche Texte */
.footer-legal-heading {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-white);
  margin-bottom: 8px;
  margin-top: 24px;
}

.footer-legal-heading:first-child {
  margin-top: 0;
}

/* ==========================================================
   COMING SOON PAGES — om-metoderne, om-nana, boern
   Gemessen auf Live-Original (Viewport 1680×932):
   - Seite gesamt ~1187px hoch (≈ 1.27 × 932vh)
   - H1 "Coming Soon": y≈444, h≈104, font-size 86.4px, fw=100, weiß
   - Separator: 1×140px weiß, y≈648 (ca. 96px unter H1-Unterkante)
   - Hintergrund: box-wrapper, background-attachment: fixed, cover
   - Kein CSS-Overlay (beim Original auch transparent/none)
   ========================================================== */
.comingsoon-bg {
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: calc(100vh + 255px);  /* ~1187 bei 932vh */
}

.comingsoon-bg-metoderne {
  background-image: url('/images/test-scaled.jpg');
}
.comingsoon-bg-metoderne::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 79, 88, 0.5);
  mix-blend-mode: multiply;
  z-index: 0;
  pointer-events: none;
}
.comingsoon-bg-metoderne > * {
  position: relative;
  z-index: 1;
}
.comingsoon-bg-metoderne .site-header {
  position: absolute; /* restore: header must stay absolute so it doesn't push hero down */
  z-index: 10;        /* must be above hero section (z-index:1) so nav stays clickable */
}

.comingsoon-bg-nana {
  background-image: url('/images/comingsoon-nana.jpg');
}

.comingsoon-bg-boern {
  background-image: url('/images/boern-painting.jpg');
}

/* Hero — exakt wie sessioner (745px, padding-top 350px) */
.page-comingsoon-hero {
  height: 745px;
  position: relative;
  z-index: 1;
}

.page-comingsoon-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);    /* 100 */
  font-size: 86.4px;
  color: var(--color-white);
  letter-spacing: normal;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

@media (max-width: 768px) {
  .page-comingsoon-title {
    font-size: clamp(44px, 11vw, 72px);
  }
}

/* Separator — inline flow wie sessioner */
.page-comingsoon-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin-top: 40px;
}

/* ── Shared content blocks für om-metoderne / om-nana / børn ── */
.page-intro-section {
  max-width: 1286px;
  margin: 0 auto;
  padding: 75px 100px;
}
.page-intro-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 75.6px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 40px;
}
.page-intro-sub {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 22px;
  line-height: 1.4;
  color: var(--color-mauve);
  margin: 0;
  font-style: italic;
}
.page-body-section {
  max-width: 1286px;
  margin: 0 auto;
  padding: 0 100px 60px;
}
.page-body-section p {
  font-family: var(--font-secondary);
  font-weight: var(--weight-light);
  font-size: 22px;
  line-height: 31.5px;
  color: #000;
  margin: 0 0 24px;
  max-width: 900px;
}
.page-bottom-spacer { height: 170px; }

/* Per-page content box colors */
.comingsoon-bg-metoderne .page-intro-section,
.comingsoon-bg-metoderne .page-body-section { background: #c0dde0; }

.comingsoon-bg-nana .page-intro-section,
.comingsoon-bg-nana .page-body-section { background: #f0e2d5; }

.comingsoon-bg-boern .page-intro-section,
.comingsoon-bg-boern .page-body-section { background: #f5e8c2; }

@media (max-width: 900px) {
  .page-intro-section,
  .page-body-section { padding-left: 30px; padding-right: 30px; }
  .page-intro-heading { font-size: clamp(40px, 6vw, 60px); line-height: 1.05; }
  .page-bottom-spacer { height: 60px; }
}


/* ==========================================================
   ESSENTIEL LÆRINGS STUDIO (Parent-Seite) — gemessen vom Original
   Viewport 1680×932, Seitenhöhe 2237px
   Hero: 745px mit synapsen_dark.png bg, fixed, cover, KEIN Overlay
   H1: 86.4px fw=100 weiß, zentriert, y=400
   Separator: 1×140px weiß, y=505 (36px unter H1)
   Subtitle: "Turning Challenges into Opportunities – for learning & growth"
     18px fw=100 Roboto Flex #777 — im Original in 1px-Spalte (gebrochen),
     wir machen es lesbar
   Weißes Content-Box: 1296px centered, padding 75px 100px
   H2: 75.6px fw=200 mauve, Roboto Flex? nein — neue-haas-grotesk-display
   Body: 18px fw=100 Roboto Flex #777 lh=31.5px
   ========================================================== */

/* Page-Wrapper (wie kontakt-bg, aber mit synapsen-Bild) */
.els-bg {
  background-image: url('/images/synapsen_dark.png');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: fixed;
  position: relative;
  min-height: 100vh;
}

/* Hero */
.els-hero {
  height: 745px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding-top: 100px;  /* Platz für transparenten Header */
}

.els-title {
  font-family: var(--font-primary);      /* neue-haas-grotesk-display */
  font-weight: var(--weight-thin);       /* 100 */
  font-size: 86.4px;
  color: var(--color-white);
  letter-spacing: normal;
  text-align: center;
  line-height: 1.2;
  margin: 0 0 36px;                      /* 36px Abstand zu Separator */
}

@media (max-width: 768px) {
  .els-title {
    font-size: clamp(44px, 9vw, 72px);
  }
}

.els-hero-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin: 0 auto;
}

.els-subtitle {
  font-family: var(--font-secondary);    /* Roboto Flex */
  font-weight: var(--weight-thin);
  font-size: 22px;
  color: #cfd6d9;
  line-height: 31.5px;
  text-align: center;
  margin: 24px 0 0;
  max-width: 600px;
}

.els-tagline {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 18px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-align: center;
  margin: 16px 0 0;
}

/* Weißer Content-Block — 1296px, zentriert, Text 100px von Links */
.els-content-section {
  position: relative;
  z-index: 1;
  padding: 0;
}

.els-content-box {
  max-width: var(--max-width);          /* 1296px */
  margin: 0 auto;
  background: var(--color-white);
  padding: 75px 100px 75px 100px;
}

/* H2 in magenta — 75.6px fw=200 */
.els-content-box h2,
.els-content-box .els-h2 {
  font-family: var(--font-primary);     /* neue-haas-grotesk-display */
  font-weight: 400;                     /* explizit 200, nicht Variable */
  font-size: 75.6px;
  line-height: 75.6px;
  color: var(--color-mauve);            /* #773E5A */
  margin: 0 0 75px;                     /* 75px Abstand zu Body */
  letter-spacing: normal;
}

@media (max-width: 900px) {
  .els-content-box h2 {
    font-size: clamp(40px, 6vw, 60px);
    line-height: 1.05;
  }
}

/* Body-Text — schmale Linke-Spalte ~785px */
.els-content-body {
  max-width: 785px;
}

.els-content-body p {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);   /* 400 */
  font-size: 22px;
  line-height: 31.5px;
  color: #333;
  margin: 0 0 31.5px;
}

.els-content-body p:last-child {
  margin-bottom: 0;
}

.els-content-body em {
  font-style: italic;
}

.els-content-body strong {
  font-weight: 400;
}

/* Small-caps-artige Zwischentitel: HOLD, WORKSHOPS og RETREAT, PRIVATE SESSIONER */
.els-content-body .els-subheading {
  display: block;
  font-weight: var(--weight-light);
  letter-spacing: 1px;
  margin-top: 24px;
  color: #555;
}

/* Mauve-farbige Titelzeilen (wie rot im Pages-Dokument) */
.els-content-body .els-accent-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 32px;
  color: var(--color-mauve);
  line-height: 1.2;
  margin: 0 0 4px;
}

.els-content-body .els-accent-sub {
  font-family: var(--font-primary);
  font-weight: var(--weight-extralight);
  font-size: 22px;
  color: var(--color-mauve);
  line-height: 1.2;
  margin: 0 0 32px;
}

/* "Tilbyder to modaliteter:" */
.els-content-body .els-modaliteter {
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}

/* Farbiges Initial-E / -A */
.els-content-body .els-initial {
  color: var(--color-mauve);
}

/* Bullet-Liste */
.els-content-body .els-list {
  margin: 20px 0 20px 20px;
  padding: 0;
  list-style: disc;
}

.els-content-body .els-list li {
  font-family: var(--font-secondary);
  font-weight: var(--weight-light);
  font-size: 22px;
  color: #000;
  line-height: 1.75;
  margin-bottom: 8px;
}

/* Trennabstand zwischen den zwei Inhaltsteilen */
.els-content-body .els-content-sep {
  height: 48px;
}

/* Einleitung zu den 3 Wegen */
.els-content-body .els-ways-intro {
  margin-top: 32px;
  font-style: italic;
}

/* Schluss-Tagline */
.els-content-body .els-closing {
  margin-top: 36px;
  letter-spacing: 2px;
}

/* Bereich zwischen weißem Block und Footer — synapsen BG bleibt sichtbar */
.els-bottom-spacer {
  height: 170px;         /* gemessen 2237 - 1811 - 256 (footer) ≈ 170 */
}

/* Responsive */
@media (max-width: 900px) {
  .els-content-box {
    padding: 60px 30px;
  }
  .els-hero { height: 100vh; min-height: 600px; }
  .els-bottom-spacer { height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   WORKSHOPS OVERVIEW PAGE — /workshops.html
   Foto-BG (Studio) als fixed cover hinter Hero + gelben Blöcken.
   Gelbe Content-Box: #fde7a9, 1296px breit, zentriert.
   4 Workshop-Einträge untereinander in derselben gelben Box.
   ═══════════════════════════════════════════════════════════════ */
.workshops-bg {
  background-image: url('/images/workshop-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}

/* HERO — H1 "Workshops og retreats" 745px hoch, weiß zentriert */
.workshops-hero {
  position: relative;
  height: 745px;
}

.workshops-hero-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 86.4px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  text-align: center;
  letter-spacing: 0.5px;
}

.workshops-hero-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin-top: 50px;
}

/* GELBE INTRO-BOX — eigener Kasten mit Abstand nach unten */
.workshops-intro-section {
  max-width: var(--max-width);
  margin: 0 auto 40px;   /* 40px = Foto-BG zwischen Intro und erstem Workshop */
  background: #fde7a9;
  padding: 80px 100px;
}

.workshops-intro-section h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 75.6px;
  line-height: 75.6px;
  color: var(--color-mauve);
  margin: 0 0 40px;
  text-align: center;
}

.workshops-intro-section .workshops-intro-body p {
  font-family: var(--font-secondary);
  font-weight: var(--weight-thin);
  font-size: 22px;
  line-height: 31.5px;
  color: #000;
  margin: 0 0 31.5px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* WORKSHOP-EINTRÄGE — neutraler Container, kein eigener Hintergrund */
.workshops-entries {
  /* nur Wrapper, Hintergrund kommt von .workshop-entry */
}

/* WORKSHOP-EINTRAG — jeder Workshop in eigenem gelben Kasten */
.workshop-entry {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  background: #fde7a9;
  padding: 50px 100px 0;
}

/* 2-Spalten-Grid: Datum links | Inhalt rechts */
.workshop-entry-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: start;
  padding-bottom: 40px;
}

/* Button unten mittig — kein Rahmen, kein Trennstrich */
.workshop-entry-footer {
  padding: 0 0 48px;
  text-align: center;
}

.workshop-entry-date {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  line-height: 1.35;
  color: var(--color-mauve);
  margin: 0;
  padding-top: 4px;
}
.workshop-entry-date .workshop-entry-weekday,
.workshop-entry-date .workshop-entry-time {
  font-weight: var(--weight-thin);
  font-size: 22px;
  text-transform: lowercase;
}
.workshop-entry-date .workshop-entry-time {
  font-size: 19px;
  opacity: 0.85;
}

.workshop-entry-body h3 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 35px;
  line-height: 1.2;
  color: var(--color-mauve);
  margin: 0 0 12px;
}

.workshop-entry-body .workshop-entry-subtitle {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  line-height: 1.35;
  color: var(--color-mauve);
  margin: 0 0 8px;
}

.workshop-entry-body .workshop-entry-theme {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.35;
  color: var(--color-mauve);
  margin: 0;
}

/* Series-Label (z.B. "Mini-Workshop 2/3") — kleine dezente Zeile,
   gleicher Stil in Übersicht und Detail-Seite. */
.workshop-entry-body .workshop-entry-series,
.ws-col-right .ws-series {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-mauve);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 12px 0 0;
}
.ws-col-right .ws-series {
  margin: 24px 0 36px;
}

.workshop-entry-btn {
  display: inline-block;
  background: #dcc0d5;
  color: var(--color-white);
  border: 1px solid #dcc0d5;
  padding: 15px 35px;
  font-family: var(--font-secondary);
  font-weight: 400;
  font-size: 17px;
  line-height: 1;
  text-transform: lowercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  transition: background .2s;
}

.workshop-entry-btn:hover {
  background: var(--color-mauve);
  border-color: var(--color-mauve);
}

/* Spacer unter letztem Kasten — Foto-BG scheint durch bis Footer */
.workshops-bottom-spacer {
  height: 170px;
}

/* Responsive */
@media (max-width: 900px) {
  .workshops-intro-section {
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 24px;
  }
  .workshops-intro-section h2 {
    font-size: 44px;
    line-height: 1.1;
  }
  .workshop-entry {
    padding: 30px 24px;
    margin-bottom: 20px;
  }
  .workshop-entry-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .workshop-entry-body h3 { font-size: 28px; }
  .workshops-hero { padding-top: 200px; height: auto; min-height: 80vh; }
  .workshops-hero-title { font-size: 44px; }
  .workshops-bottom-spacer { height: 60px; }
  .kontakt-bottom-spacer { height: 60px; }
}


/* ═══════════════════════════════════════════════════════════════
   HOLD OVERVIEW PAGE — /hold.html
   Hero-Foto als fixed cover BG hinter gesamter Seite.
   Rosa Content-Boxen (#f8e1ed), 1286px breit, zentriert.
   ═══════════════════════════════════════════════════════════════ */
.hold-bg {
  background-image: url('/images/hold-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}

/* HERO */
.hold-hero {
  position: relative;
  height: 745px;
}

.hold-hero-title,
.hold-hero h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 86.4px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}

.hold-hero-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin-top: 40px;
}

/* ROSA INTRO-BOX */
.hold-intro-section {
  max-width: 1286px;
  margin: 0 auto;
  background: #f8e1ed;
  padding: 75px 100px;
}

.hold-intro-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 75.6px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 40px;
}

.hold-intro-heading span {
  display: block;
}

.hold-intro-heading em {
  font-style: italic;
}

.hold-intro-body {
  max-width: 780px;
}

.hold-intro-body p {
  font-family: var(--font-secondary);
  font-weight: var(--weight-light);
  font-size: 22px;
  line-height: 31.5px;
  color: #000;
  margin: 0 0 20px;
  white-space: pre-line;
}

/* Sub-Title innerhalb hold-intro-body (Pages-Text "Feldenkrais hold") */
.hold-intro-body h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-mauve);
  margin: 0 0 24px;
}

/* Bullet-Liste in hold-intro-body */
.hold-intro-body ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.hold-intro-body ul li {
  font-family: var(--font-secondary);
  font-weight: var(--weight-light);
  font-size: 22px;
  line-height: 1.55;
  color: #000;
  padding-left: 1.2em;
  position: relative;
  margin-bottom: 8px;
}
.hold-intro-body ul li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: #000;
}

/* Akzent am Ende: "sans bevæg trives" — rotbraun, schräg, kursiv */
.hold-intro-accent {
  color: #8b3a1f;
  font-style: italic;
  letter-spacing: 0.5px;
}

/* KLASSEN-REIHEN — 4 Kästen á 229h */
.hold-classes {
  max-width: 1286px;
  margin: 0 auto;
  background: #f8e1ed;
  padding: 0 100px 40px;
}

.hold-class,
.hold-classes article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  padding: 30px 0;
  border-top: 1px solid rgba(119, 62, 90, 0.2);
  align-items: center;
}

.hold-class-text h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 35px;
  line-height: 1.2;
  color: #101213;
  margin: 0 0 8px;
}

.hold-class-dates {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: #303133;
  margin: 0;
}

.hold-class-btn {
  display: inline-block;
  background: #dcc0d5;
  color: #000;
  border: 1px solid #dcc0d5;
  padding: 12px 28px;
  font-family: var(--font-secondary);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: lowercase;
  letter-spacing: 0.5px;
  line-height: 1;
  transition: background .2s;
}

.hold-class-btn:hover {
  background: var(--color-mauve);
  color: #fff;
  border-color: var(--color-mauve);
}

/* TILMELDING / FORM-BLOCK */
.hold-tilmelding {
  max-width: 1286px;
  margin: 60px auto 0;             /* Abstand zum vorherigen Block */
  background: #f8e1ed;
  padding: 60px 100px 80px;
}

.hold-tilmelding h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 60px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 30px;
}

.hold-tilmelding p,
.hold-tilmelding li {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-mauve);
  margin: 0 0 12px;
}

.hold-tilmelding ul {
  margin: 0 0 24px 20px;
  padding: 0;
}

/* PRISER / ADRESSE — kleine Caps-Labels wie auf workshop.php */
.hold-tilmelding strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-mauve);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 32px 0 8px;
}

.hold-tilmelding em {
  font-style: italic;
}

/* TILMELDING-FORMULAR */
.hold-form {
  margin-top: 40px;
}

.hold-form fieldset {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}

.hold-form legend {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-mauve);
  margin-bottom: 10px;
}

.hold-form label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 17px;
  color: #555;
  margin: 0 0 4px;
}

.hold-form input[type="text"],
.hold-form input[type="email"],
.hold-form input[type="tel"],
.hold-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #d7b9c8;
  border-radius: 2px;
  font-family: var(--font-secondary);
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 14px;
}

.hold-form .checkbox-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hold-form .checkbox-row label {
  margin: 0;
  font-size: 18px;
  color: #000;
}

/* Submit-Button im workshop.php-Stil (.form-submit .btn) */
.hold-form button {
  display: inline-block;
  background: var(--color-mauve);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-primary);
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s;
}

.hold-form button:hover {
  background: #5c2f47;
}

.hold-bottom-spacer {
  height: 170px;
}

/* Responsive */
@media (max-width: 900px) {
  .hold-intro-section,
  .hold-classes,
  .hold-tilmelding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .hold-intro-heading { font-size: 40px; }
  .hold-hero { padding-top: 200px; height: auto; min-height: 80vh; }
  .hold-hero-title { font-size: 44px; }
  .hold-class {
    grid-template-columns: 1fr;
    gap: 16px;
    justify-items: start;
  }
  .hold-tilmelding h2 { font-size: 40px; }
  .hold-bottom-spacer { height: 60px; }
}

/* ═══════════════════════════════════════════════════════════════
   INDIVIDUELLE SESSIONER — /individuelle-sessioner.html
   Hero-Foto (vibrant_session) als fixed cover BG.
   Blaue Content-Boxen (#bcd8ef), 1286px breit, zentriert.
   ═══════════════════════════════════════════════════════════════ */
.sessioner-bg {
  background-image: url('/images/sessioner-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}

.sessioner-hero {
  position: relative;
  height: 745px;
}

.sessioner-hero-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 86.4px;
  line-height: 1.2;
  color: var(--color-white);
  margin: 0;
  text-align: center;
}

.sessioner-hero-sep {
  width: 1px;
  height: 140px;
  background: var(--color-white);
  margin-top: 40px;
}

/* BLAUE INTRO-BOX — Heading + Subheading */
.sessioner-intro-section {
  max-width: 1286px;
  margin: 0 auto;
  background: #bcd8ef;
  padding: 75px 100px;
}

.sessioner-intro-heading {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 75.6px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 40px;
}

.sessioner-intro-sub {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 50px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 0;
  font-style: italic;
}

/* BLAUE BODY-BOX — Platzhaltertexte / Nana's Inhalt */
.sessioner-body-section {
  max-width: 1286px;
  margin: 0 auto;
  background: #bcd8ef;
  padding: 0 100px 60px;
}

.sessioner-body-section p {
  font-family: var(--font-secondary);
  font-weight: var(--weight-light);
  font-size: 22px;
  line-height: 31.5px;
  color: #000;
  margin: 0 0 24px;
  max-width: 900px;
}

/* BLAUE TILMELDING-BOX */
.sessioner-tilmelding {
  max-width: 1286px;
  margin: 60px auto 0;             /* Abstand zum vorherigen Block */
  background: #bcd8ef;
  padding: 60px 100px 80px;
}

.sessioner-tilmelding h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 60px;
  line-height: 1.1;
  color: var(--color-mauve);
  margin: 0 0 30px;
}

.sessioner-tilmelding p,
.sessioner-tilmelding li {
  font-family: var(--font-primary);
  font-weight: var(--weight-light);
  font-size: 20px;
  line-height: 1.8;
  color: var(--color-mauve);
  margin: 0 0 12px;
}

.sessioner-tilmelding ul {
  margin: 0 0 24px 20px;
  padding: 0;
}

/* PRISER / ADRESSE — kleine Caps-Labels wie auf workshop.php */
.sessioner-tilmelding strong {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 14px;
  color: var(--color-mauve);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 32px 0 8px;
}

.sessioner-tilmelding em {
  font-style: italic;
}

.sessioner-form {
  margin-top: 40px;
}

.sessioner-form fieldset {
  border: none;
  margin: 0 0 20px;
  padding: 0;
}

.sessioner-form legend {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: 20px;
  color: var(--color-mauve);
  margin-bottom: 10px;
}

.sessioner-form label {
  display: block;
  font-family: var(--font-secondary);
  font-size: 17px;
  color: #555;
  margin: 0 0 4px;
}

.sessioner-form input[type="text"],
.sessioner-form input[type="email"],
.sessioner-form input[type="tel"],
.sessioner-form textarea {
  width: 100%;
  max-width: 500px;
  padding: 12px 14px;
  background: #fff;
  border: 1px solid #9bbcd6;
  border-radius: 2px;
  font-family: var(--font-secondary);
  font-size: 18px;
  color: #333;
  box-sizing: border-box;
  margin-bottom: 14px;
}

/* Submit-Button im workshop.php-Stil (.form-submit .btn) */
.sessioner-form button {
  display: inline-block;
  background: var(--color-mauve);
  color: var(--color-white);
  border: none;
  padding: 16px 40px;
  font-family: var(--font-primary);
  font-size: 18px;
  letter-spacing: 1px;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s;
}

.sessioner-form button:hover {
  background: #5c2f47;
}

.sessioner-bottom-spacer {
  height: 170px;
}

/* Responsive */
@media (max-width: 900px) {
  .sessioner-intro-section,
  .sessioner-body-section,
  .sessioner-tilmelding {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sessioner-intro-heading { font-size: 40px; }
  .sessioner-intro-sub { font-size: 26px; }
  .sessioner-hero { padding-top: 200px; height: auto; min-height: 80vh; }
  .sessioner-hero-title { font-size: 44px; }
  .sessioner-bottom-spacer { height: 60px; }
}


/* ═══════════════════════════════════════════════════════════════
   WORKSHOP DETAIL SEITEN  (Samsø, Summer Intensive, TaKeTiNa …)
   Wrapper mit fixem BG-Foto, ein gelber Content-Block,
   Abstand, ein gelber Tilmelding-Block mit weißem Formular.
   ═══════════════════════════════════════════════════════════════ */

/* Wrapper — BG-Foto kommt als inline-style je Seite */
.ws-detail-bg {
  background-size: cover;
  background-position: center 40%;
  background-attachment: fixed;
  background-repeat: no-repeat;
  position: relative;
  min-height: 100vh;
}

/* ── HERO — nur ein schmaler Foto-Streifen unter dem Header ── */
.ws-detail-hero {
  height: 260px;
  min-height: 0;
  position: relative;
  /* kein Overlay — Foto kommt 1:1 vom wrapper durch */
}

.ws-detail-hero-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);
  font-size: 86.4px;
  color: var(--color-white);
  letter-spacing: normal;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

/* Vertikale Linie — absolut positioniert direkt unter Titel-Mitte */
.ws-detail-hero-sep {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(50% + 88px);
  width: 1px;
  height: 140px;
  background: var(--color-white);
}

/* ── GELBER CONTENT-BLOCK ──────────────────────────────────── */
.ws-content-block {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fde7a9;
  padding: 80px 120px 100px;
}

.ws-content-inner {
  max-width: 1056px;   /* 240px left + 60px gap + 756px right */
}

/* ── SERIEN-ÜBERSICHT (Lettere til fods + ähnliche) ─────── */
.ws-series-entries {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 8px;
}

.ws-series-entry {
  display: grid;
  grid-template-columns: 280px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-top: 1px solid rgba(119, 62, 90, 0.2);
}

.ws-series-entry:last-child {
  border-bottom: 1px solid rgba(119, 62, 90, 0.2);
}

.ws-series-entry-date {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 18px;
  color: var(--color-mauve);
  line-height: 1.5;
}

.ws-series-entry-title {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 22px;
  color: var(--color-mauve);
  line-height: 1.4;
}

/* ── 2-SPALTEN-LAYOUT im oberen Content ─────────────────── */
.ws-two-col {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  align-items: start;
}

.ws-col-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding-top: 6px;   /* Optische Ausrichtung mit H1 */
}

/* Meta-Datum im linken Block: gleicher Stil, aber kein bottom-margin nötig */
.ws-col-left .ws-meta {
  margin: 0;
}

/* Datum + Wochentag im linken Block — wie in der Übersichts-Karte */
.ws-col-left .ws-meta-date {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 24px;
  color: var(--color-mauve);
  line-height: 1.2;
}
.ws-col-left .ws-meta-weekday,
.ws-col-left .ws-meta-time {
  font-family: var(--font-primary);
  font-weight: var(--weight-semibold);
  font-size: 22px;
  color: var(--color-mauve);
  line-height: 1.4;
  display: inline-block;
  margin-top: 4px;
  text-transform: lowercase;
}
.ws-col-left .ws-meta-time {
  font-size: 19px;
  opacity: 0.85;
}

/* Type unter Subtitle — kleine, dezente Workshop-Art */
.ws-col-right .ws-type {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  color: var(--color-mauve);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 36px;
}

.ws-col-right .ws-theme {
  margin-top: 24px;
}

/* Tilmeld-Knopf im linken Block */
.ws-col-left .ws-tilmeld-btn {
  margin-bottom: 0;
}

.ws-content-block .ws-meta {
  font-family: var(--font-primary);       /* neue-haas-grotesk-display */
  font-weight: 500;
  font-size: 24px;
  color: var(--color-mauve);              /* #773E5A */
  line-height: 36px;
  margin: 0 0 28px;
}

.ws-content-block h1 {
  font-family: var(--font-primary);
  font-weight: var(--weight-thin);        /* 100 */
  font-size: 35px;
  color: var(--color-mauve);
  line-height: 42px;
  margin: 0 0 14px;
}

.ws-content-block .ws-subtitle {
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-mauve);
  display: block;
  line-height: 24px;
  margin: 0 0 44px;
}

/* "Tilbage til oversigten"-Link in der oberen rechten Ecke
   des gelben Content-Blocks. */
.ws-content-block { position: relative; }
.ws-back-link {
  position: absolute;
  top: 24px;
  right: 32px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-mauve);
  text-decoration: none;
  border: 1px solid var(--color-mauve);
  padding: 7px 14px 6px 10px;
  background: transparent;
  transition: background .2s, color .2s, border-color .2s;
}
.ws-back-link::before {
  content: '←';
  font-size: 16px;
  font-weight: 300;
  transition: transform .2s;
}
.ws-back-link:hover {
  background: var(--color-mauve);
  color: #fff;
  border-color: var(--color-mauve);
}
.ws-back-link:hover::before {
  transform: translateX(-3px);
}

.ws-content-block .ws-tilmeld-btn {
  display: inline-block;
  background: var(--color-btn);           /* #DCC0D5 */
  color: #000000;
  padding: 14px 40px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 2.6px;
  margin-bottom: 48px;
  transition: background 0.2s, color 0.2s;
}
.ws-content-block .ws-tilmeld-btn:hover {
  background: var(--color-mauve);
  color: var(--color-white);
}

.ws-content-block blockquote {
  border-left: 2px solid rgba(119, 62, 90, 0.35);
  padding: 10px 0 10px 32px;
  margin: 48px 0;
  font-family: var(--font-primary);
  font-style: italic;
  font-weight: 500;
  font-size: 20px;
  color: #000000;                         /* schwarz, exakt wie Original */
  line-height: 24px;
}
.ws-content-block blockquote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  font-family: var(--font-body);          /* Roboto Flex */
  font-weight: var(--weight-thin);        /* 100 */
  font-size: 16px;
  color: #777777;                         /* grau, exakt wie Original */
  letter-spacing: normal;
  text-transform: none;
  opacity: 1;
}

.ws-content-block h2 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 24px;
  margin: 48px 0 16px;
}
.ws-content-block h2:first-of-type { margin-top: 0; }

.ws-content-block h3 {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 20px;
  color: var(--color-mauve);
  line-height: 24px;
  margin: 40px 0 12px;
}

.ws-content-block p {
  font-family: var(--font-body);          /* Roboto Flex */
  font-weight: var(--weight-thin);        /* 100 */
  font-size: 22px;
  color: #777777;                         /* grau #777, exakt wie Original */
  line-height: 31.5px;
  margin: 0 0 20px;
}

/* Links im Content (Inspiratoriet etc.) */
.ws-content-block p a {
  color: var(--color-mauve);
  text-decoration: underline;
}

.ws-content-block ul {
  margin: 0 0 24px 0;
  padding-left: 22px;
}
.ws-content-block ul li {
  font-family: var(--font-body);          /* Roboto Flex */
  font-weight: var(--weight-thin);        /* 100 */
  font-size: 22px;
  color: #777777;
  line-height: 31.5px;
  margin-bottom: 6px;
}

/* Bilder im Content-Block */
.ws-img {
  display: block;
  margin: 40px 0;
  max-width: 100%;
  height: auto;
}
.ws-img-portrait  { max-width: 400px; }
.ws-img-landscape { max-width: 100%; }
.ws-img-full      { width: 100%; max-width: 100%; }

/* ── SPACER zwischen den gelben Blöcken ───────────────────── */
.ws-spacer        { height: 60px; }
.ws-bottom-spacer { height: 140px; }

/* Content-Fließtext auf der Detailseite — schwarz, leicht fetter */
.ws-content-body,
.ws-content-body p,
.ws-content-body div,
.ws-content-body li,
.ws-content-body ul li {
  color: #000;
  font-weight: var(--weight-light); /* 300 statt 200 */
}

/* ── GELBER TILMELDING-BLOCK ───────────────────────────────── */
.ws-tilmelding-block {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #fde7a9;
  padding: 80px 120px 100px;
}

.ws-tilmelding-block > h2 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: clamp(38px, 4.5vw, 60px);
  color: var(--color-mauve);
  margin: 0 0 56px;
  line-height: 1.1;
}

/* Praktische Info-Liste (TID / STED / PRIS …)
   Funktioniert sowohl mit alter dl/dt/dd-Struktur wie auch mit der neuen
   ed_block_list (div mit span.ws-info-label + div.ws-info-value pro Pair). */
.ws-info-list {
  max-width: 700px;
  margin: 0 0 64px;
}
.ws-info-list dt,
.ws-info-list .ws-info-label {
  display: block;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 17px;
  color: var(--color-mauve);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin: 32px 0 8px;
}
.ws-info-list dt:first-child,
.ws-info-list > div:first-child .ws-info-label {
  margin-top: 0;
}
.ws-info-list dd,
.ws-info-list .ws-info-value {
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 22px;
  color: var(--color-mauve);
  line-height: 1.8;
  margin: 0;
}
/* Listen-Items (das outer div pro Pair) — kein extra Margin oben/unten */
.ws-info-list > [data-edit-list-item],
.ws-info-list > div {
  margin: 0;
  color: var(--color-mauve);
  font-family: var(--font-primary);
  font-weight: var(--weight-regular);
  font-size: 22px;
  line-height: 1.8;
}

/* Weißes Formular-Box */
.ws-form-box {
  background: var(--color-white);
  padding: 60px 70px;
  max-width: 780px;
}
.ws-form-box h3 {
  font-family: var(--font-primary);
  font-weight: 400;
  font-size: 30px;
  color: var(--color-mauve);
  margin: 0 0 36px;
}
.ws-form-box .form-field label {
  font-weight: var(--weight-semibold);
}

/* ── RESPONSIVE ────────────────────────────────────────────── */
@media (max-width: 900px) {
  .ws-detail-hero {
    height: 160px;
    min-height: 0;
  }
  .ws-content-block,
  .ws-tilmelding-block {
    padding: 50px 30px 60px;
  }
  .ws-form-box {
    padding: 36px 24px;
    max-width: 100%;
  }
  .ws-info-list { max-width: 100%; }
  .ws-spacer { height: 30px; }
  .ws-bottom-spacer { height: 60px; }
  .ws-two-col {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .ws-content-inner { max-width: 100%; }
}

@media (max-width: 600px) {
  .ws-content-block,
  .ws-tilmelding-block {
    padding: 40px 20px 50px;
  }
  .ws-tilmelding-block > h2 {
    font-size: clamp(28px, 8vw, 40px);
    margin-bottom: 32px;
  }
  .ws-form-box { padding: 28px 20px; }
  .ws-form-box h3 { font-size: 22px; }
}

/* ==========================================================
   LANGUAGE SWITCHER — DA / EN
   ========================================================== */
/* ── Sprach-Umschalter: fixed oben-rechts, über allem ────────────────── */
.lang-switch {
  position: fixed;
  top: 12px;
  right: 20px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0;
  /* Äußere Kapsel */
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  padding: 3px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.lang-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.50);
  padding: 4px 10px;
  border-radius: 16px;
  transition: color 0.2s, background 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.85);
}

.lang-btn.active {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
}

.lang-sep {
  display: none; /* Trennlinie nicht mehr nötig im Pill-Design */
}

/* .lang-en blokke: skjult som standard (DA er default) */
.lang-en {
  display: none;
}

@media (max-width: 900px) {
  .lang-switch {
    top: 10px;
    right: 14px;
  }
}

/* Honeypot — for bots only, invisible to users */
.form-hp {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
}

/* ============================================================
   FORM STATUS — Inline-Meldung nach Versand
   ============================================================ */
.form-status {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: 4px;
  font-family: 'Roboto Flex', sans-serif;
  font-size: 18px;
  line-height: 1.45;
  font-weight: 400;
  text-align: center;
  transition: opacity .25s ease;
}
.form-status.is-sending {
  background: rgba(255, 255, 255, 0.55);
  color: #555;
  font-style: italic;
}
.form-status.is-success {
  background: #2e7d32;
  color: #fff;
}
.form-status.is-error {
  background: #c62828;
  color: #fff;
}
/* Im dunklen Footer: dezenter heller Erfolg */
.footer-form .form-status {
  margin-top: 10px;
  font-size: 17px;
  padding: 10px 14px;
}

/* Stiller Login-Link im Footer-Copyright — sieht aus wie normaler Text */
.footer-login,
.footer-login:hover,
.footer-login:focus,
.footer-login:visited {
  color: inherit;
  text-decoration: none;
  cursor: inherit;
  background: transparent;
  border: none;
  outline: none;
}

/* ============================================================
   INLINE-EDITOR — eingefügte Bilder (Public-sichtbar)
   Diese Klassen müssen IMMER greifen, nicht nur im Edit-Modus,
   weil Nana eingefügte Bilder ja auch live anzeigen will.
   ============================================================ */
.ed-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 12px 0;
  border-radius: 2px;
}

/* Diskrete Größen — wenn keine Klasse gesetzt: max-width:100% wie oben */
.ed-image-s    { max-width: 200px; }
.ed-image-m    { max-width: 400px; }
.ed-image-l    { max-width: 700px; }
.ed-image-full { max-width: 100%; width: 100%; }

/* Ausrichtung — float für s/m/l (Text fließt drumherum), center zentriert */
.ed-image-align-left {
  float: left;
  margin: 6px 18px 12px 0;
  display: inline;
}
.ed-image-align-right {
  float: right;
  margin: 6px 0 12px 18px;
  display: inline;
}
.ed-image-align-center {
  margin-left: auto;
  margin-right: auto;
  display: block;
  float: none;
}

/* Trennstrich zwischen Testimonial-Items in der Block-Liste — reproduziert
   das vertikale schwarze Strichlein zwischen den ursprünglichen <p>-Paaren */
.testimonials-block [data-edit-list-item] + [data-edit-list-item]::before {
  content: "";
  display: block;
  width: 1px;
  height: 30px;
  background: #000;
  margin: 36px auto;
}
