/* ==========================================================================
   Gelassen Leben - 1:1 Port from WordPress/Elementor
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Raleway:wght@300;400;500;600;700&display=swap');

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

:root {
  /* --- Brand primitives (unverändert) --- */
  --color-sage: #c3dbc5;
  --color-sage-light: #e8f0e8;
  --color-sage-dark: #a4c4a7;
  --color-dark: #141827;
  --color-teal: #074240;
  --color-teal-hover: #095a57;
  --color-white: #ffffff;
  --color-grey: #5f5e57;
  --color-cream: #f5f0eb;
  --color-border: #e0e0e0;

  /* --- Semantische Aliase --- */
  --bg: var(--color-cream);
  --surface: var(--color-white);
  --surface-soft: var(--color-sage-light);
  --text: var(--color-dark);
  --text-muted: var(--color-grey);
  --primary: var(--color-teal);
  --primary-hover: var(--color-teal-hover);
  --accent: var(--color-sage);
  --ring: rgba(7, 66, 64, 0.55);

  /* --- Typografie --- */
  --font-body: 'Raleway', sans-serif;
  --font-heading: 'Lora', serif;
  --font-nav: 'Lora', serif;
  /* Fluide Skala (Minor Third), mobil → desktop */
  --step--1: clamp(0.83rem, 0.78rem + 0.22vw, 0.94rem);
  --step-0:  clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1:  clamp(1.2rem, 1.11rem + 0.45vw, 1.5rem);
  --step-2:  clamp(1.44rem, 1.28rem + 0.8vw, 2rem);
  --step-3:  clamp(1.73rem, 1.46rem + 1.35vw, 2.67rem);
  --step-4:  clamp(2.07rem, 1.62rem + 2.25vw, 3.55rem);
  --step-5:  clamp(2.49rem, 1.74rem + 3.75vw, 4.5rem);

  /* --- Spacing (4px-Basis) --- */
  --space-1: 0.25rem;  --space-2: 0.5rem;   --space-3: 0.75rem;
  --space-4: 1rem;     --space-5: 1.5rem;   --space-6: 2rem;
  --space-8: 3rem;     --space-10: 4rem;    --space-12: 5rem;
  --space-16: 6rem;

  /* --- Radius & Schatten --- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 50px;
  --shadow-sm: 0 1px 3px rgba(20, 24, 39, 0.05), 0 2px 8px rgba(20, 24, 39, 0.04);
  --shadow-md: 0 4px 12px rgba(20, 24, 39, 0.06), 0 12px 28px rgba(20, 24, 39, 0.06);
  --shadow-lg: 0 8px 24px rgba(20, 24, 39, 0.08), 0 24px 48px rgba(20, 24, 39, 0.09);

  /* --- Motion (langsam & beruhigend) --- */
  --ease-calm: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur-fast: 280ms;
  --dur-slow: 600ms;
  --dur-slower: 900ms;

  --max-width: 1200px;
}

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-dark);
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--color-cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-dark);
}

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

/* ==========================================================================
   Motion Utilities — Scroll-Reveal & beruhigende Bewegung
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--dur-slow) var(--ease-calm),
              transform var(--dur-slow) var(--ease-calm);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Sichtbarer, ruhiger Focus-Ring für Tastatur-Navigation */
:focus-visible {
  outline: 2px solid var(--ring);
  outline-offset: 3px;
  border-radius: 3px;
}

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

/* ==========================================================================
   Skip Link
   ========================================================================== */

.skip-link {
  position: fixed;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--color-teal);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: 0 0 8px 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ==========================================================================
   Header — Fixed, transparent → frosted on scroll
   ========================================================================== */

:root {
  --header-height: 72px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 0 40px;
  transition: background 0.45s ease, backdrop-filter 0.45s ease, box-shadow 0.45s ease;
}

/* Scrim behind the transparent (over-hero) header so white nav links stay
   readable regardless of how bright the hero video/image is. Fades out once
   the header turns frosted on scroll. */
.header::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 150px;
  background: linear-gradient(to bottom, rgba(20, 24, 39, 0.45), rgba(20, 24, 39, 0));
  pointer-events: none;
  z-index: -1;
  opacity: 1;
  transition: opacity 0.45s ease;
}

.header.is-scrolled::before {
  opacity: 0;
}

.header.is-scrolled {
  background: rgba(245, 240, 235, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(20, 24, 39, 0.07);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

/* Logo */
.logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 62px;
  width: auto;
  /* Subtle lift so the logo reads cleanly over the hero and the frosted header. */
  filter: drop-shadow(0 1px 3px rgba(20, 24, 39, 0.35));
  transition: opacity 0.3s ease;
}

/* Over the hero (header transparent) → white logo; once frosted → colour logo. */
.logo-dark { display: none; }
.header.is-scrolled .logo-light { display: none; }
.header.is-scrolled .logo-dark { display: block; }

.logo:hover img {
  opacity: 0.75;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav > a:not(.btn-book) {
  font-family: var(--font-nav);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  padding: 6px 0;
  position: relative;
  transition: color 0.3s ease;
}

.nav > a:not(.btn-book)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.7);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.32s ease;
}

.nav > a:not(.btn-book):hover {
  color: var(--color-white);
}

.nav > a:not(.btn-book):hover::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.nav > a:not(.btn-book)[aria-current="page"] {
  color: var(--color-white);
}

.nav > a:not(.btn-book)[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left center;
}

/* Frosted state — links become dark on cream background */
.header.is-scrolled .nav > a:not(.btn-book) {
  color: var(--color-dark);
}

.header.is-scrolled .nav > a:not(.btn-book)::after {
  background: var(--color-teal);
}

.header.is-scrolled .nav > a:not(.btn-book):hover {
  color: var(--color-teal);
}

.header.is-scrolled .nav > a:not(.btn-book)[aria-current="page"] {
  color: var(--color-teal);
}

/* Buchen CTA */
.btn-book {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-white);
  padding: 10px 24px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, color 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.btn-book:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  transform: translateY(-1px);
}

/* Frosted state — solid teal button on cream bg */
.header.is-scrolled .btn-book {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.header.is-scrolled .btn-book:hover {
  background: #095a57;
  border-color: #095a57;
  box-shadow: 0 6px 20px rgba(7, 66, 64, 0.25);
  transform: translateY(-1px);
}

.btn-book-outline {
  background: transparent;
  color: var(--color-dark);
  border: 1.5px solid var(--color-dark);
  box-shadow: none;
}

.btn-book-outline:hover {
  background: var(--color-dark);
  color: var(--color-white);
  transform: translateY(-1px);
}

.btn-book-sage {
  background: var(--color-sage);
  color: var(--color-teal);
}

.btn-book-sage:hover {
  background: var(--color-sage-dark);
  color: var(--color-teal);
}

/* Hamburger toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
}

.nav-toggle span {
  position: absolute;
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--color-dark);
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* Over the hero (not yet frosted) the toggle sits on the dark scrim → white. */
.header:not(.is-scrolled) .nav-toggle span {
  background: var(--color-white);
}

.nav-toggle span:nth-child(1) { transform: translateY(-7px); }
.nav-toggle span:nth-child(2) { transform: translateY(0); }
.nav-toggle span:nth-child(3) { transform: translateY(7px); }

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(0) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(0) rotate(-45deg); }

/* Mobile */
@media (max-width: 768px) {
  :root { --header-height: 64px; }

  .header { padding: 0 20px; }

  .nav-toggle { display: flex; }

  .nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: rgba(245, 240, 235, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: flex-start;
    padding: 0 24px;
    gap: 0;
    box-shadow: 0 8px 40px rgba(20, 24, 39, 0.1);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.42s ease, opacity 0.3s ease, padding 0.42s ease;
  }

  .nav.is-open {
    max-height: 480px;
    opacity: 1;
    pointer-events: auto;
    padding: 16px 24px 28px;
  }

  /* On mobile the links live inside the light dropdown panel (never over the
     hero), so they must stay dark regardless of the header's scroll state.
     Without this they inherit the white over-hero colour and are unreadable
     when the menu is opened at the top of the page. */
  .nav > a:not(.btn-book),
  .header:not(.is-scrolled) .nav > a:not(.btn-book) {
    color: var(--color-dark);
    font-size: 19px;
    padding: 13px 0;
    width: 100%;
    border-bottom: 1px solid rgba(20, 24, 39, 0.07);
    letter-spacing: 0.01em;
  }

  .nav > a:not(.btn-book)::after { display: none; }

  .btn-book {
    margin-top: 18px;
    width: 100%;
    justify-content: center;
    padding: 13px 24px;
  }
}

/* ==========================================================================
   Main Content
   ========================================================================== */

.main {
  flex: 1;
}


/* ==========================================================================
   Hero Sections - Pastel gradient with background image
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg,
    rgba(195, 219, 197, 0.3) 0%,
    rgba(7, 66, 64, 0.8) 60%,
    rgba(7, 66, 64, 0.95) 100%
  );
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

video.hero-bg {
  object-fit: cover;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 120px 40px 80px;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: var(--step-5);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-2);
  line-height: 1.08;
  letter-spacing: -0.01em;
  text-shadow: 0 2px 30px rgba(0,0,0,0.22);
}

.hero .subtitle {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  line-height: 1.7;
}

.hero .btn-book {
  font-size: 14px;
  padding: 12px 32px;
}

/* Solid teal for content page buttons (outside hero/header) */
.main .btn-book {
  background: var(--color-teal);
  border-color: var(--color-teal);
  color: var(--color-white);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.main .btn-book:hover {
  background: #095a57;
  border-color: #095a57;
  color: var(--color-white);
  box-shadow: 0 6px 20px rgba(7, 66, 64, 0.25);
  transform: translateY(-1px);
}

/* Hero buttons stay ghost/glass */
.main .hero .btn-book {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--color-white);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.main .hero .btn-book:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.8);
  color: var(--color-white);
  box-shadow: none;
  transform: translateY(-1px);
}

/* ==========================================================================
   Page Hero - Pastel gradient with optional background image
   ========================================================================== */

.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-height) + 40px) 40px 60px;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 215, 200, 0.4) 0%,
    rgba(195, 219, 197, 0.5) 40%,
    rgba(7, 66, 64, 0.3) 100%
  );
}

.page-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: var(--step-4);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-4);
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.page-hero p {
  max-width: 480px;
  color: var(--color-dark);
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.8;
}

@media (max-width: 768px) {
  .page-hero {
    min-height: 300px;
    padding: calc(var(--header-height) + 20px) 20px 40px;
  }
  .hero { min-height: 80vh; }
}

/* ==========================================================================
   Section Utilities
   ========================================================================== */

.section {
  padding: 60px 40px;
  background: var(--color-cream);
}

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

.section-white {
  background: var(--color-white);
}

.section h2 {
  font-family: var(--font-heading);
  font-size: var(--step-3);
  color: var(--color-dark);
  margin-bottom: var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section h3 {
  font-family: var(--font-heading);
  font-size: var(--step-1);
  color: var(--color-dark);
  margin-bottom: var(--space-3);
  line-height: 1.25;
}

.section p {
  color: var(--color-grey);
  line-height: 1.8;
  margin-bottom: 12px;
}

.text-center { text-align: center; }

@media (max-width: 768px) {
  .section { padding: 40px 20px; }
}

/* ==========================================================================
   Home Page - Service Cards
   ========================================================================== */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.service-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur-fast) var(--ease-calm), box-shadow var(--dur-fast) var(--ease-calm);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 14px;
  color: var(--color-grey);
  margin-bottom: 8px;
}

.service-card .price {
  font-size: 17px;
  font-weight: 600;
  color: var(--color-dark);
  margin-top: 12px;
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Promo / CTA Section
   ========================================================================== */

.promo-section {
  background: var(--color-cream);
  padding: 80px 40px;
}

.promo-inner {
  max-width: 600px;
  margin: 0 auto;
}

.promo-section h2 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-size: var(--step-4);
  margin-bottom: var(--space-4);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.promo-section p {
  color: var(--color-grey);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 28px;
}

/* Angebote - split layout with rounded image */
.angebote-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.angebote-image {
  border-radius: 200px 200px 200px 0;
  overflow: hidden;
  max-height: 500px;
}

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

@media (max-width: 768px) {
  .angebote-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   About / Über mich Page
   ========================================================================== */

.about-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
}

.about-image-col {
  text-align: center;
}

.about-image-col img {
  max-width: 250px;
  margin: 0 auto;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 15px;
  color: var(--color-dark);
  opacity: 0.85;
}

.target-audience {
  background: var(--color-sage-light);
  border-radius: 12px;
  padding: 40px;
  margin-top: 40px;
}

.target-audience h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.target-audience ul {
  list-style: none;
  padding: 0;
}

.target-audience li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: var(--color-grey);
  line-height: 1.7;
  font-size: 15px;
}

.target-audience li::before {
  content: '\2014';
  position: absolute;
  left: 0;
  color: var(--color-sage-dark);
}

.goal-box {
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
}

.goal-box h3 {
  font-family: var(--font-heading);
  color: var(--color-sage);
  margin-bottom: 12px;
  font-size: 24px;
}

.goal-box p {
  color: rgba(255,255,255,0.9);
  font-size: 16px;
  line-height: 1.8;
}

.attitude-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
  border-left: 4px solid var(--color-sage);
}

.attitude-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.attitude-box p {
  color: var(--color-grey);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 12px;
}

.qualifications-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  margin-top: 32px;
  border-left: 4px solid var(--color-sage);
}

.qualifications-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-teal);
  margin-bottom: 20px;
}

.qualifications-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qualification-item {
  display: flex;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
}

.qualification-item:last-child {
  border-bottom: 0;
}

.qualification-year {
  flex: 0 0 110px;
  font-weight: 600;
  color: var(--color-teal);
  font-size: 15px;
}

.qualification-desc {
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .qualification-item {
    flex-direction: column;
    gap: 4px;
  }
  .qualification-year {
    flex-basis: auto;
  }
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ==========================================================================
   Angebot / Offer Cards
   ========================================================================== */

.offer-card {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.offer-card-header {
  background: linear-gradient(135deg, var(--color-teal) 0%, #095a57 100%);
  padding: 40px;
  color: var(--color-white);
}

.offer-card-header h2 {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--color-white);
  margin-bottom: 8px;
}

.offer-subtitle {
  color: var(--color-sage) !important;
  font-size: 17px !important;
  font-style: italic;
}

.offer-card-body {
  padding: 40px;
}

.offer-card-body p {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.offer-card-note {
  background: var(--color-sage-light);
  padding: 24px 40px;
  border-top: 1px solid var(--color-border);
}

.offer-card-note p {
  font-size: 15px;
  color: var(--color-teal);
  font-style: italic;
  line-height: 1.7;
}

.section-sage {
  background: var(--color-sage-light);
}

.pricing-info-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.pricing-info-box h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-teal);
  margin-bottom: 16px;
  text-align: center;
}

.pricing-info-box ol {
  padding-left: 24px;
}

.pricing-info-box li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.7;
}

/* ==========================================================================
   Methoden / Methods Grid
   ========================================================================== */

.methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.method-card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
  border-top: 3px solid var(--color-sage);
}

.method-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.method-card h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.method-detail strong {
  display: block;
  font-size: 14px;
  color: var(--color-dark);
  margin-bottom: 8px;
}

.method-detail p {
  font-size: 14px;
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 8px;
}

.method-detail ul {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}

.method-detail li {
  font-size: 14px;
  color: var(--color-grey);
  padding: 2px 0 2px 16px;
  position: relative;
}

.method-detail li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--color-sage-dark);
}

.method-effect {
  color: var(--color-teal) !important;
  font-style: italic;
  font-size: 13px !important;
}

@media (max-width: 768px) {
  .methods-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 18px;
  color: var(--color-dark);
  text-align: left;
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--color-teal);
}

.faq-icon {
  font-size: 24px;
  font-weight: 300;
  color: var(--color-sage-dark);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item.is-open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding: 0 28px 24px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--color-grey);
  line-height: 1.8;
}

/* ==========================================================================
   Preise / New Pricing Cards
   ========================================================================== */

.preise-lead {
  font-size: 18px !important;
  color: var(--color-dark) !important;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 40px;
}

.preise-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.preis-card {
  background: var(--color-white);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.preis-card h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-dark);
  margin-bottom: 12px;
}

.preis-card p {
  font-size: 14px;
  line-height: 1.7;
}

.preis-badge {
  display: inline-block;
  background: var(--color-sage);
  color: var(--color-teal);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.preis-amount {
  font-size: 42px;
  font-weight: 700;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.preis-card-free {
  border-top: 4px solid var(--color-sage);
}

.preis-card-paid {
  border-top: 4px solid var(--color-teal);
}

.kalender-info {
  margin-bottom: 32px;
}

.kalender-info p {
  font-size: 16px;
  color: var(--color-dark);
  line-height: 1.8;
}

.kalender-legend {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-grey);
}

.legend-dot {
  width: 12px;
  height: 12px;
  background: var(--color-sage);
  border-radius: 2px;
  display: inline-block;
}

@media (max-width: 768px) {
  .preise-cards {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Questionnaire / Kundenfragebogen
   ========================================================================== */

.questionnaire-form h2 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-teal);
  margin: 32px 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--color-sage-light);
}

.questionnaire-form h2:first-of-type {
  margin-top: 0;
}

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

.range-input {
  width: 100%;
  accent-color: var(--color-teal);
  height: 6px;
  margin-top: 8px;
}

.range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--color-grey);
  margin-top: 4px;
}

.form-notice {
  background: var(--color-sage-light);
  border-left: 4px solid var(--color-sage);
  border-radius: 8px;
  padding: 16px 20px;
  margin: 24px 0;
}

.form-notice p {
  font-size: 14px;
  color: var(--color-teal);
  font-style: italic;
  margin: 0;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-dark);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-teal);
  margin-top: 2px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   Kalender / Calendar Page
   ========================================================================== */

.events-list {
  display: grid;
  gap: 16px;
}

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--color-white);
  border-radius: 12px;
  padding: 24px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.event-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.event-date {
  text-align: center;
  background: var(--color-sage-light);
  border-radius: 10px;
  padding: 16px 12px;
}

.event-date .day {
  font-size: 28px;
  font-weight: 700;
  color: var(--color-teal);
  line-height: 1;
}

.event-date .month {
  font-size: 12px;
  font-weight: 600;
  color: var(--color-grey);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

.event-info h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.event-info p {
  font-size: 14px;
  color: var(--color-grey);
  margin: 0;
}

.event-info .event-time {
  font-size: 13px;
  color: var(--color-sage-dark);
  font-weight: 500;
}

.no-events {
  text-align: center;
  padding: 60px 40px;
}

.no-events p {
  font-size: 17px;
  color: var(--color-grey);
}

@media (max-width: 768px) {
  .event-card {
    grid-template-columns: 80px 1fr;
    padding: 20px;
  }
  .event-card .btn-book {
    grid-column: 1 / -1;
    text-align: center;
  }
}

/* ==========================================================================
   Kontakt / Contact Page
   ========================================================================== */

.contact-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  overflow: hidden;
  background: linear-gradient(135deg,
    rgba(245, 215, 200, 0.5) 0%,
    rgba(195, 219, 197, 0.5) 50%,
    rgba(7, 66, 64, 0.2) 100%
  );
}

.contact-hero-left {
  flex: 1;
  padding: 100px 40px 60px 40px;
  max-width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-hero-left .label,
.page-hero-content .label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  margin-bottom: 4px;
}

.contact-hero-left h1 {
  font-family: var(--font-heading);
  font-size: 48px;
  color: var(--color-dark);
  line-height: 1.1;
  margin-bottom: 24px;
}

.contact-hero-left h1 em {
  font-style: italic;
  color: var(--color-teal);
}

.contact-hero-phone {
  font-size: 13px;
  color: var(--color-grey);
  margin-bottom: 4px;
}

.contact-hero-phone strong {
  font-size: 16px;
  color: var(--color-dark);
}

.contact-hero-right {
  flex: 1;
  position: relative;
  max-width: 45%;
}

.contact-hero-right img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-intro {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: var(--color-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 340px));
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.contact-info-box {
  background: var(--color-white);
  border-radius: 12px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.contact-info-box h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-teal);
  margin-bottom: 8px;
}

.contact-info-box p {
  color: var(--color-grey);
  line-height: 1.7;
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-info-box .hours {
  font-size: 13px;
  color: var(--color-sage-dark);
  font-weight: 500;
}

.contact-info-box .get-directions {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: 14px;
  color: var(--color-teal);
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 8px;
}

.contact-form > p {
  text-align: center;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--color-dark);
  background: var(--color-white);
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-sage-dark);
  box-shadow: 0 0 0 3px rgba(195,219,197,0.3);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

.form-submit {
  text-align: center;
  margin-top: 24px;
}

.form-alert {
  padding: 16px;
  border-radius: 8px;
  margin-bottom: 24px;
  text-align: center;
  font-size: 14px;
}

.form-alert.success {
  background: var(--color-sage-light);
  color: var(--color-teal);
}

.form-alert.error {
  background: #fde8e8;
  color: #c53030;
}

@media (max-width: 768px) {
  .contact-hero {
    flex-direction: column;
  }
  .contact-hero-left {
    max-width: 100%;
    padding: 80px 20px 40px;
  }
  .contact-hero-left h1 { font-size: 32px; }
  .contact-hero-right {
    max-width: 100%;
    height: 300px;
    position: relative;
  }
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Preise / Pricing Page
   ========================================================================== */

.consultation-list {
  margin-top: 24px;
}

.consultation-list ol {
  list-style: decimal;
  padding-left: 24px;
}

.consultation-list li {
  padding: 8px 0;
  font-size: 15px;
  color: var(--color-dark);
  line-height: 1.7;
}

.see-programs {
  margin-top: 60px;
}

.see-programs h2 {
  font-family: var(--font-heading);
  font-size: 42px;
  color: var(--color-dark);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.pricing-card {
  background: var(--color-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pricing-card-header {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 24px 28px;
}

.pricing-card-header h3 {
  font-family: var(--font-heading);
  color: var(--color-white);
  font-size: 22px;
  margin-bottom: 4px;
}

.pricing-card-header p {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  margin: 0;
}

.pricing-card-body {
  padding: 20px 28px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.pricing-row:last-child { border-bottom: none; }

.pricing-row .room-type {
  font-weight: 500;
  color: var(--color-dark);
  font-size: 14px;
}

.pricing-row .prices { text-align: right; }

.pricing-row .regular-price {
  font-weight: 600;
  color: var(--color-dark);
  font-size: 15px;
}

.pricing-row .early-price {
  font-size: 12px;
  color: var(--color-sage-dark);
  display: block;
  margin-top: 2px;
}

.pricing-card-footer {
  padding: 0 28px 24px;
  text-align: center;
}

@media (max-width: 768px) {
  .pricing-grid { grid-template-columns: 1fr; }
}


/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background: var(--color-teal);
  color: var(--color-white);
  padding: 56px 40px 40px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 48px;
}

/* Brand column */
.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  height: 110px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 4px;
}

.footer-contact-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(195, 219, 197, 0.9);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-link:hover {
  color: var(--color-white);
}

.footer-contact-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  opacity: 0.7;
}

.footer-contact-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

/* Column headings */
.footer-col-heading {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 400;
  font-style: italic;
  color: var(--color-sage);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* Legal nav column */
.footer-nav {
  display: block;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: rgba(195, 219, 197, 0.9);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-white);
}

/* Social column */
.footer-social-col {
  display: flex;
  flex-direction: column;
}

.footer-social {
  display: flex;
  gap: 8px;
  margin-top: 0;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(195, 219, 197, 0.18);
  border: 1px solid rgba(195, 219, 197, 0.3);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
}

.footer-social a:hover {
  background: rgba(195, 219, 197, 0.32);
  border-color: rgba(195, 219, 197, 0.55);
  color: var(--color-white);
  transform: translateY(-2px);
}

.footer-social a svg {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Bottom bar */
.footer-bottom {
  max-width: var(--max-width);
  margin: 40px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  font-size: 12px;
  color: rgba(195, 219, 197, 0.55);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .footer { padding: 40px 20px 32px; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
