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

    :root {
      --white: #FDFCFB;
      --beige: #E1D2C9;
      --gold: #C09068;
      --red: #EB2E49;
      --dark: #2A2220;
      --mid: #6B5E59;
      --light-bg: #F7F3F0;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--white);
      color: var(--dark);
      overflow-x: hidden;
    }

    /* ── TYPOGRAPHY ── */
    h1, h2, h3, .serif { font-family: 'Cormorant Garamond', serif; }

    /* ── UTILITY ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 40px; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: #fff;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 14px 32px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .btn-primary:hover { background: #C4243D; transform: translateY(-1px); }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--dark);
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 13px 30px;
      border: 1.5px solid var(--dark);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.25s;
    }
    .btn-outline:hover { background: var(--dark); color: #fff; }
    .hero-buttons .btn-outline:hover { background: rgba(255,255,255,0.15); color: #fff; border-color: rgba(255,255,255,0.8); }

    .section-label {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 16px;
      display: block;
    }

    /* ── FADE IN ANIMATION ── */
    .fade-in {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.75s ease, transform 0.75s ease;
    }
    .fade-in.visible {
      opacity: 1;
      transform: translateY(0);
    }
    .fade-in.delay-1 { transition-delay: 0.1s; }
    .fade-in.delay-2 { transition-delay: 0.2s; }
    .fade-in.delay-3 { transition-delay: 0.35s; }
    .fade-in.delay-4 { transition-delay: 0.5s; }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(253, 252, 251, 0.96);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, box-shadow 0.3s;
    }
    nav.scrolled {
      border-bottom-color: var(--beige);
      box-shadow: 0 2px 20px rgba(42,34,32,0.06);
    }

    .nav-logo-img {
      height: 24px;
      width: auto;
      display: block;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 36px;
      list-style: none;
    }
    .nav-links a {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--dark);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--red); }

    .nav-cta {
      background: var(--red);
      color: #fff !important;
      padding: 9px 22px;
      font-size: 12px !important;
      letter-spacing: 0.12em;
      transition: background 0.2s !important;
    }
    .nav-cta:hover { background: #C4243D; color: #fff !important; }

    /* ── HAMBURGER ── */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      width: 44px;
      height: 44px;
      margin-right: -10px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 110;
    }
    .nav-toggle span {
      display: block;
      width: 24px;
      height: 2px;
      border-radius: 2px;
      background: var(--dark);
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
    }
    #main-nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #main-nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
    #main-nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .nav-backdrop {
      position: fixed;
      inset: 0;
      z-index: 95;
      background: rgba(42, 34, 32, 0.45);
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.4s ease, visibility 0.4s ease;
    }
    #main-nav.nav-open + .nav-backdrop {
      opacity: 1;
      visibility: visible;
    }
    body.nav-locked { overflow: hidden; }

    /* ── HERO ── */
    #hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      display: grid;
      grid-template-columns: 36% 64%;
      padding-top: 72px;
    }
    /* Single full-bleed photo behind the whole hero */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: url('../img/hero.jpg') 68% 20% / cover no-repeat, linear-gradient(135deg, #2A2220 0%, #6B5E59 100%);
      z-index: 0;
    }

    /* Left half: frosted glass ("milk glass") over the single photo */
    .hero-left-panel {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 80px 60px 80px 80px;
      z-index: 2;
      background: rgba(253, 252, 251, 0.45);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      /* Extend past the column and slant the right edge — wider at the bottom */
      width: calc(100% + 110px);
      -webkit-clip-path: polygon(0 0, calc(100% - 110px) 0, 100% 100%, 0 100%);
      clip-path: polygon(0 0, calc(100% - 110px) 0, 100% 100%, 0 100%);
    }

    /* Right half: kept transparent so the photo shows through crisply */
    .hero-right-panel {
      position: relative;
      overflow: hidden;
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 3;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 32px;
    }



    .hero-tagline-wrapper {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 24px;
    }
    .hero-tagline-line {
      width: 40px;
      height: 1.5px;
      background: var(--beige);
    }

    .hero-h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(48px, 5vw, 86px);
      font-weight: 300;
      line-height: 1.05;
      letter-spacing: -0.01em;
      color: var(--dark);
      margin-bottom: 0;
    }
    .hero-h1 em {
      font-style: italic;
      color: var(--red);
    }

    .hero-buttons {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      max-width: 400px;
    }

    .hero-scroll-hint {
      position: absolute;
      bottom: 40px;
      right: 40px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 11px;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
    }
    .hero-scroll-line {
      width: 40px;
      height: 1px;
      background: rgba(255,255,255,0.5);
      transform-origin: left;
      animation: scrollLineGrow 2s ease-in-out infinite;
    }
    @keyframes scrollLineGrow {
      0%, 100% { transform: scaleX(1); opacity: 0.5; }
      50% { transform: scaleX(1.4); opacity: 1; }
    }

    /* ── WILLKOMMEN ── */
    #willkommen {
      padding: 100px 0;
      background: var(--dark);
    }

    .willkommen-inner {
      max-width: 860px;
      margin: 0 auto;
      padding: 0 40px;
      text-align: center;
    }

    .willkommen-intro {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(16px, 1.8vw, 20px);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.75);
      margin-bottom: 56px;
    }

    .willkommen-story {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(15px, 1.4vw, 17px);
      font-weight: 300;
      line-height: 1.9;
      color: rgba(255,255,255,0.65);
      text-align: left;
    }
    .willkommen-story strong {
      font-weight: 700;
      color: rgba(255,255,255,0.95);
      font-size: 1.15em;
    }

    .willkommen-divider {
      width: 200px;
      height: 2px;
      background: #EB2E49;
      margin: 24px auto 40px;
    }

    .willkommen-claim {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(18px, 2vw, 24px);
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.92);
      text-align: center;
      margin: 48px 0 32px;
      line-height: 1.3;
    }

    /* ── ÜBER UNS ── */
    #ueber-uns {
      padding: 120px 0;
      background: var(--white);
    }

    .ueber-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .ueber-image-wrap {
      position: relative;
    }

    .ueber-image-placeholder {
      width: 100%;
      aspect-ratio: 4/5;
      background: linear-gradient(160deg, var(--beige) 0%, #C9B8AE 100%);
      border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 10px;
      overflow: hidden;
    }

    .ueber-badge {
      position: absolute;
      bottom: -20px;
      right: -20px;
      width: 120px;
      height: 120px;
      background: var(--red);
      border-radius: 50%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      color: #fff;
      box-shadow: 0 8px 30px rgba(235, 46, 73, 0.3);
    }
    .ueber-badge-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 34px;
      font-weight: 500;
      line-height: 1;
    }
    .ueber-badge-text {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.3;
    }

    .ueber-text h2 {
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 28px;
    }
    .ueber-text h2 em { font-style: italic; color: var(--gold); }

    .ueber-text p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 20px;
    }

    .werte-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin: 32px 0;
    }
    .werte-chip {
      padding: 6px 16px;
      border: 1px solid var(--beige);
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.06em;
      color: var(--mid);
      background: var(--light-bg);
    }

    /* ── TRAININGS ── */
    #trainings {
      padding: 120px 0;
      background: var(--light-bg);
    }

    .trainings-header {
      text-align: center;
      margin-bottom: 72px;
    }
    .trainings-header h2 {
      font-size: clamp(38px, 4vw, 58px);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 20px;
    }
    .trainings-header p {
      font-size: 15px;
      color: var(--mid);
      max-width: 520px;
      margin: 0 auto;
      line-height: 1.7;
    }

    .trainings-tabs {
      display: flex;
      justify-content: center;
      gap: 0;
      margin-bottom: 56px;
      border-bottom: 2px solid var(--beige);
    }
    .tab-btn {
      padding: 14px 40px;
      background: none;
      border: none;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--mid);
      cursor: pointer;
      position: relative;
      transition: color 0.2s;
    }
    .tab-btn::after {
      content: '';
      position: absolute;
      bottom: -2px;
      left: 0; right: 0;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transition: transform 0.25s;
    }
    .tab-btn.active { color: var(--dark); }
    .tab-btn.active::after { transform: scaleX(1); }

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

    .training-card {
      background: var(--white);
      padding: 40px 32px;
      position: relative;
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .training-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 20px 50px rgba(42,34,32,0.1);
    }

    .training-card-accent {
      position: absolute;
      top: 0; left: 0;
      width: 3px;
      height: 0;
      background: var(--red);
      transition: height 0.4s ease;
    }
    .training-card:hover .training-card-accent { height: 100%; }

    .training-number {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      color: var(--beige);
      line-height: 1;
      margin-bottom: 16px;
    }

    .training-title {
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 12px;
    }

    .training-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 28px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 16px;
      color: var(--dark);
    }

    .training-card p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--mid);
      margin-bottom: 28px;
    }

    .training-card-wide {
      width: 100%;
    }
    .training-wide-inner {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 40px;
    }
    .training-wide-inner h3 {
      font-size: 32px;
    }
    .training-wide-inner p {
      max-width: 680px;
    }

    .training-link {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: gap 0.2s;
    }
    .training-link:hover { gap: 14px; }

    /* ── STATS ── */
    #stats {
      padding: 80px 0;
      background: var(--dark);
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      text-align: center;
    }
    .stat-item {
      padding: 40px 20px;
      border-right: 1px solid rgba(255,255,255,0.1);
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 64px;
      font-weight: 300;
      color: var(--white);
      line-height: 1;
      margin-bottom: 8px;
    }
    .stat-num span { color: var(--red); }
    .stat-label {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
    }

    /* ── EVENTS ── */
    #events {
      padding: 120px 0;
      background: var(--white);
    }

    .events-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }
    .events-header h2 {
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.1;
    }

    .events-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 1px solid var(--beige);
    }

    .event-item {
      display: grid;
      grid-template-columns: 100px 1fr auto;
      gap: 40px;
      align-items: center;
      padding: 32px 0;
      border-bottom: 1px solid var(--beige);
      cursor: pointer;
      transition: background 0.2s;
      padding-left: 8px;
      padding-right: 8px;
    }
    .event-item:hover { background: var(--light-bg); margin: 0 -8px; padding-left: 16px; padding-right: 16px; }

    .event-date {
      text-align: center;
    }
    .event-date-day {
      font-family: 'Cormorant Garamond', serif;
      font-size: 42px;
      font-weight: 300;
      line-height: 1;
      color: var(--dark);
    }
    .event-date-month {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .event-info h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      margin-bottom: 6px;
    }
    .event-info p {
      font-size: 13px;
      color: var(--mid);
    }

    .events-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 22px;
      text-align: center;
      padding: 72px 24px;
      border-bottom: 1px solid var(--beige);
    }
    .events-empty-icon {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      border: 1.5px solid var(--beige);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--gold);
    }
    .events-empty p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 24px;
      font-weight: 400;
      line-height: 1.4;
      color: var(--mid);
    }
    .events-empty p em {
      font-style: italic;
      color: rgb(192, 144, 104);
    }

    .event-tag {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 6px 14px;
      background: var(--light-bg);
      color: var(--mid);
    }
    .event-tag.firmen { background: #FFF0F2; color: var(--red); }
    .event-tag.privat { background: #FBF7F3; color: var(--gold); }

    .event-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      flex-shrink: 0;
      white-space: nowrap;
      font-family: 'Montserrat', sans-serif;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 12px 24px;
      background: var(--red);
      color: #fff;
      text-decoration: none;
      transition: background 0.25s, transform 0.2s;
    }
    .event-cta svg { transition: transform 0.2s; }
    .event-cta:hover { background: #C4243D; transform: translateY(-1px); }
    .event-cta:hover svg { transform: translateX(2px); }

    /* ── KUNDENSTIMMEN ── */
    #kundenstimmen {
      padding: 120px 0;
      background: var(--light-bg);
    }

    .kundenstimmen-header {
      text-align: center;
      margin-bottom: 64px;
    }
    .kundenstimmen-header h2 {
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.1;
    }

    .swiper-wrapper-outer {
      display: flex;
      align-items: center;
      gap: 24px;
    }
    .swiper-track {
      flex: 1;
      overflow: hidden;
    }
    .swiper-slides {
      display: flex;
      transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .swiper-slides .review-card {
      min-width: 100%;
      flex-shrink: 0;
    }
    .swiper-arrow {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1.5px solid var(--beige);
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--dark);
      flex-shrink: 0;
      transition: all 0.2s;
    }
    .swiper-arrow:hover {
      border-color: var(--red);
      color: var(--red);
    }
    .swiper-dots {
      display: flex;
      justify-content: center;
      gap: 8px;
      margin-top: 32px;
    }
    .swiper-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      border: none;
      background: var(--beige);
      cursor: pointer;
      transition: all 0.25s;
      padding: 0;
    }
    .swiper-dot.active {
      background: var(--red);
      width: 24px;
      border-radius: 4px;
    }

    .review-card {
      background: var(--white);
      padding: 40px 36px 36px;
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .review-quote {
      display: none;
    }

    .review-text {
      font-size: 14px;
      line-height: 1.8;
      color: var(--mid);
    }

    .review-body {
      display: flex;
      flex-direction: column;
      gap: 14px;
      position: relative;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .review-body::after {
      content: '';
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 5em;
      background: linear-gradient(to bottom, rgba(253, 252, 251, 0), var(--white));
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
    }
    .review-body.collapsed::after {
      opacity: 1;
    }

    .review-more {
      display: none;
      align-self: flex-start;
      margin-top: 2px;
      padding: 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Montserrat', sans-serif;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--red);
    }
    .review-more:hover { color: #C4243D; }

    .review-author {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 16px;
      padding-top: 20px;
      border-top: 1px solid var(--beige);
    }

    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--beige);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-size: 20px;
      font-weight: 500;
      color: var(--gold);
      flex-shrink: 0;
      overflow: hidden;
    }
    .review-avatar img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .review-name {
      font-size: 14px;
      font-weight: 600;
      color: var(--dark);
    }

    .review-role {
      font-size: 12px;
      color: var(--mid);
      margin-top: 2px;
    }

    /* ── FIRMEN-LOGO WALL ── */
    .logo-wall {
      margin-top: 80px;
      padding-top: 56px;
      border-top: 1px solid var(--beige);
      text-align: center;
    }
    .logo-wall-label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 40px;
    }
    .logo-wall-grid {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 48px 64px;
    }
    .logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 54px;
    }
    .logo-item img {
      max-height: 100%;
      max-width: 200px;
      width: auto;
      object-fit: contain;
      filter: grayscale(1);
      opacity: 0.65;
      transition: filter 0.3s ease, opacity 0.3s ease;
    }
    .logo-item img:hover {
      filter: grayscale(0);
      opacity: 1;
    }
    /* square logos carry more internal padding – let them render larger */
    .logo-item img.logo-square {
      max-height: 120px;
      max-width: 120px;
    }

    /* ── BLOG ── */
    #blog {
      padding: 120px 0;
      background: var(--white);
    }

    .blog-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 56px;
    }
    .blog-header h2 {
      font-size: clamp(36px, 3.5vw, 52px);
      font-weight: 300;
      line-height: 1.1;
    }

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

    .blog-card {
      background: var(--white);
      border: 1px solid var(--beige);
      overflow: hidden;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(42,34,32,0.09);
    }

    .blog-card-img {
      width: 100%;
      aspect-ratio: 16/9;
      background: var(--light-bg);
      overflow: hidden;
    }
    .blog-card-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .blog-card-img .img-placeholder {
      height: 100%;
    }

    .blog-card-body {
      padding: 28px 28px 32px;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .blog-tag {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .blog-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 400;
      line-height: 1.25;
      color: var(--dark);
    }

    .blog-card p {
      font-size: 13px;
      line-height: 1.75;
      color: var(--mid);
      flex: 1;
    }

    @media (max-width: 900px) {
      .blog-header { flex-direction: column; align-items: flex-start; gap: 20px; }

      /* Statt untereinander: horizontal wischbarer Slider */
      .blog-grid {
        display: flex;
        grid-template-columns: none;
        gap: 16px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        /* volle Breite bis zum Bildschirmrand, damit der Peek sichtbar ist */
        margin: 0 -24px;
        padding: 4px 24px 12px;
      }
      .blog-grid::-webkit-scrollbar { display: none; }

      .blog-card {
        flex: 0 0 60%;
        scroll-snap-align: center;
      }
      /* Hover-Lift auf Touch deaktivieren, damit nichts hängen bleibt */
      .blog-card:hover { transform: none; box-shadow: none; }
    }

    @media (max-width: 640px) {
      /* schmale Screens: Karten breiter, nur ein Peek der nächsten */
      .blog-card { flex: 0 0 82%; }
    }

    /* Dot-Indikator nur im Slider-Modus (wie bei Kundenstimmen) */
    .blog-dots { display: none; }
    @media (max-width: 900px) {
      .blog-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
      }
    }

    /* ── TEAM BANNER ── */
    #team-banner {
      width: 100%;
      height: 380px;
      position: relative;
      overflow: hidden;
    }

    .team-banner-link {
      display: block;
      width: 100%;
      height: 100%;
      position: relative;
      text-decoration: none;
    }

    .team-banner-img {
      position: absolute;
      inset: 0;
      background: url('../img/team.jpg') center top / cover no-repeat, linear-gradient(120deg, #6B5E59 0%, #2A2220 100%);
      transition: transform 0.6s ease;
    }
    .team-banner-link:hover .team-banner-img {
      transform: scale(1.03);
    }

    .team-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to right, rgba(42,34,32,0.55) 0%, rgba(42,34,32,0.2) 50%, rgba(42,34,32,0.35) 100%);
      display: flex;
      align-items: flex-start;
      justify-content: flex-start;
      padding: 32px calc((100% - 1200px) / 2 + 40px);
      transition: background 0.3s;
    }
    .team-banner-link:hover .team-banner-overlay {
      background: linear-gradient(to right, rgba(42,34,32,0.65) 0%, rgba(42,34,32,0.3) 50%, rgba(42,34,32,0.45) 100%);
    }
    .team-banner-link:hover .team-banner-overlay {
      background: linear-gradient(to right, rgba(42,34,32,0.65) 0%, rgba(42,34,32,0.3) 50%, rgba(42,34,32,0.45) 100%);
    }

    .team-banner-content {
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .team-banner-caption {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
    }

    .team-banner-text {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(32px, 4vw, 56px);
      font-weight: 300;
      font-style: italic;
      color: #fff;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 16px;
      text-shadow: 0 2px 20px rgba(0,0,0,0.2);
      transition: gap 0.3s;
    }
    .team-banner-link:hover .team-banner-text {
      gap: 24px;
    }

    /* ── PHILOSOPHIE ── */
    #philosophie {
      padding: 120px 0;
      background: var(--white);
    }

    .phil-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }

    .phil-left h2 {
      font-size: clamp(32px, 3.2vw, 48px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 8px;
    }
    .phil-left h2 em { font-style: italic; color: var(--gold); }

    .phil-intro {
      font-size: 16px;
      color: var(--mid);
      margin-bottom: 40px;
      font-weight: 300;
    }

    .phil-desc-wrap {
      min-height: 120px;
    }

    .phil-desc {
      font-size: 15px;
      line-height: 1.85;
      color: var(--mid);
      transition: opacity 0.35s ease, transform 0.35s ease;
    }
    .phil-desc.fade-out {
      opacity: 0;
      transform: translateY(8px);
    }

    /* Honeycomb */
    .phil-right {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .honeycomb-wrap {
      width: 100%;
      max-width: 460px;
      padding: 20px 0;
    }

    .hc-svg .hc-use {
      transition: fill 0.35s ease;
    }
    .hc-svg .hc-use.active {
      fill: var(--red);
    }

    @media (max-width: 900px) {
      #philosophie { padding: 72px 0; }
      /* Grid gap 0 so the heading stays tight under the label; the honeycomb
         and description get their own spacing below */
      .phil-grid { grid-template-columns: 1fr; gap: 0; }
      .phil-intro { margin-bottom: 0; }
      .honeycomb-wrap { padding: 0; }
      /* Let the left column's children flow directly in the grid so the
         changing description can sit below the honeycomb on mobile */
      .phil-left { display: contents; }
      .phil-right { order: 1; margin-top: 32px; }
      .phil-desc-wrap { order: 2; min-height: 0; margin-top: 32px; }
    }

    /* ── CTA BANNER ── */
    #cta {
      padding: 120px 0;
      background: var(--light-bg);
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    #cta::before {
      content: '';
      display: none;
    }

    #cta h2 {
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 300;
      line-height: 1.1;
      margin-bottom: 24px;
      position: relative;
    }
    #cta h2 em { font-style: italic; color: var(--red); }

    #cta p {
      font-size: 16px;
      color: var(--mid);
      max-width: 500px;
      margin: 0 auto 48px;
      line-height: 1.7;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ── KONTAKT ── */
    #kontakt {
      padding: 120px 0;
      background: var(--white);
    }

    .kontakt-grid {
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 80px;
      align-items: start;
    }

    .kontakt-left h2 {
      font-size: clamp(32px, 3vw, 48px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 20px;
    }
    .kontakt-left h2 em { font-style: italic; color: var(--red); }

    .kontakt-left p {
      font-size: 15px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 32px;
    }

    .kontakt-info { display: flex; flex-direction: column; gap: 12px; }
    .kontakt-info-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--mid);
      text-decoration: none;
      transition: color 0.2s;
    }
    .kontakt-info-item:hover { color: var(--red); }

    .kontakt-form { display: flex; flex-direction: column; gap: 20px; }

    .form-group { display: flex; flex-direction: column; gap: 8px; }

    .form-label {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      color: var(--dark);
    }

    .form-input {
      width: 100%;
      padding: 16px 18px;
      background: var(--light-bg);
      border: 1px solid transparent;
      font-family: 'Montserrat', sans-serif;
      font-size: 14px;
      color: var(--dark);
      outline: none;
      transition: border-color 0.2s, background 0.2s;
      resize: none;
    }
    .form-input::placeholder { color: rgba(107,94,89,0.55); }
    .form-input:focus {
      border-color: var(--gold);
      background: #fff;
    }

    .form-textarea { min-height: 140px; }

    .form-checkbox {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      font-size: 13px;
      color: var(--mid);
      line-height: 1.5;
    }
    .form-checkbox input[type="checkbox"] {
      margin-top: 2px;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      accent-color: var(--red);
      cursor: pointer;
    }

    .form-success {
      display: none;
      font-size: 14px;
      color: #2e7d32;
      font-weight: 500;
      padding: 12px 0;
    }

    @media (max-width: 900px) {
      .kontakt-grid { grid-template-columns: 1fr; gap: 48px; }
    }

    /* ── FOOTER ── */
    footer {
      background: #505050;
      padding: 72px 0 40px;
      color: rgba(255,255,255,0.6);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px;
      margin-bottom: 60px;
    }

    .footer-brand .nav-logo { color: #fff; font-size: 24px; }
    .footer-logo { display: inline-block; line-height: 0; }
    .footer-logo img {
      height: 30px;
      width: auto;
      display: block;
    }
    .footer-brand p {
      margin-top: 16px;
      font-size: 13px;
      line-height: 1.7;
      color: rgba(255,255,255,0.45);
      max-width: 260px;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 24px;
    }
    .social-link {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.2);
      display: flex; align-items: center; justify-content: center;
      text-decoration: none;
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      transition: all 0.2s;
    }
    .social-link:hover { border-color: var(--red); color: #fff; background: var(--red); }

    .footer-col h4 {
      font-family: 'Montserrat', sans-serif;
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.35);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a {
      font-size: 14px;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-col ul li a:hover { color: #fff; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 32px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }

    /* ── PLACEHOLDER IMAGES ── */
    .img-placeholder {
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: 'DM Sans', monospace;
      font-size: 11px;
      letter-spacing: 0.05em;
      color: rgba(42,34,32,0.35);
    }
    .img-placeholder svg { opacity: 0.3; }

    /* Striped placeholder */
    .striped {
      background-image: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 8px,
        rgba(42,34,32,0.04) 8px,
        rgba(42,34,32,0.04) 16px
      );
    }

    /* ── HERO: stack earlier so both people stay visible ── */
    @media (max-width: 1024px) {
      #hero { grid-template-columns: 1fr; grid-template-rows: 45vh 1fr; }
      /* Keep both people in frame on narrow screens */
      #hero::before { background-size: cover; background-position: 78% center; }
      /* Top: crisp photo shows through */
      .hero-right-panel { display: block; grid-row: 1; }
      /* Bottom: frosted glass with the text (straight edges when stacked) */
      .hero-left-panel {
        grid-row: 2; padding: 48px 32px; min-height: auto;
        width: auto;
        -webkit-clip-path: none;
        clip-path: none;
      }
      /* Center the text and buttons when stacked */
      .hero-content { align-items: center; text-align: center; }
      .hero-buttons { justify-content: center; }
    }

    /* ── MOBILE ── */
    @media (max-width: 900px) {
      .hero-scroll-hint { right: 24px; }
      .reviews-grid { grid-template-columns: 1fr; }
      .ueber-grid, .footer-grid { grid-template-columns: 1fr; gap: 40px; }
      .trainings-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .container { padding: 0 24px; }
      nav { padding: 0 24px; }
      .willkommen-inner { padding: 0 24px; }

      /* Hamburger menu */
      .nav-toggle { display: flex; }
      .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        height: 100dvh;
        width: min(82vw, 320px);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 30px;
        padding: 96px 40px 40px;
        background: var(--white);
        box-shadow: -10px 0 44px rgba(42, 34, 32, 0.14);
        transform: translateX(100%);
        transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 100;
      }
      #main-nav.nav-open .nav-links { transform: translateX(0); }
      .nav-links li {
        opacity: 0;
        transform: translateX(16px);
        transition: opacity 0.4s ease, transform 0.4s ease;
      }
      #main-nav.nav-open .nav-links li {
        opacity: 1;
        transform: translateX(0);
      }
      #main-nav.nav-open .nav-links li:nth-child(1) { transition-delay: 0.10s; }
      #main-nav.nav-open .nav-links li:nth-child(2) { transition-delay: 0.16s; }
      #main-nav.nav-open .nav-links li:nth-child(3) { transition-delay: 0.22s; }
      #main-nav.nav-open .nav-links li:nth-child(4) { transition-delay: 0.28s; }
      #main-nav.nav-open .nav-links li:nth-child(5) { transition-delay: 0.34s; }
      .nav-links a { font-size: 15px; }
      .nav-cta { display: inline-block; }

      /* Events: date left, info + button stacked right */
      .event-item {
        grid-template-columns: 64px 1fr;
        column-gap: 20px;
        row-gap: 16px;
        align-items: start;
        padding: 28px 8px;
      }
      .event-date {
        grid-row: span 2;
        text-align: left;
      }
      .event-date-day { font-size: 38px; }
      .event-info { align-self: center; }
      .event-info h3 { font-size: 22px; }
      .event-cta {
        grid-column: 2;
        justify-self: start;
        padding: 11px 22px;
      }
      .event-item:hover { margin: 0; padding-left: 8px; padding-right: 8px; }

      /* Impulsvortrag wide card: stack text + button */
      .training-wide-inner {
        flex-direction: column;
        gap: 28px;
      }
      .training-wide-inner .btn-primary {
        align-self: flex-start !important;
        width: auto;
      }

      /* Reviews: wider cards, smaller arrows on mobile */
      .swiper-wrapper-outer { gap: 8px; }
      .swiper-arrow { width: 34px; height: 34px; }
      .swiper-arrow svg { width: 16px; height: 16px; }
      .review-card { padding: 32px 22px 28px; }

      /* Team banner: text at bottom + left padding on mobile */
      .team-banner-overlay {
        align-items: flex-end;
        padding: 28px 24px;
      }

      /* Logo wall: tighter on mobile */
      .logo-wall { margin-top: 56px; padding-top: 40px; }
      .logo-wall-grid { gap: 32px 40px; }
      .logo-item { height: 38px; }
    }

    /* ============================================================
       SUB-PAGE STYLES  (Über uns, Trainings, Blog stubs)
       ============================================================ */
    .page-hero {
      position: relative;
      padding: 160px 0 80px;
      background: var(--dark);
      overflow: hidden;
    }
    .page-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 20%, rgba(192,144,104,0.18), transparent 60%);
      pointer-events: none;
    }
    .page-hero .container { position: relative; z-index: 2; }
    .page-hero .section-label { color: var(--gold); }
    .page-hero h1 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(40px, 5vw, 72px);
      font-weight: 300;
      line-height: 1.08;
      color: #fff;
      margin-bottom: 20px;
    }
    .page-hero h1 em { font-style: italic; color: var(--red); }
    .page-hero p {
      font-size: clamp(15px, 1.6vw, 18px);
      font-weight: 300;
      line-height: 1.75;
      color: rgba(255,255,255,0.72);
      max-width: 620px;
    }

    .page-section { padding: 100px 0; background: var(--white); }
    .page-section:nth-of-type(even) { background: var(--light-bg); }

    .prose { max-width: 760px; }
    .prose h2 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(30px, 3vw, 44px);
      font-weight: 300;
      line-height: 1.15;
      margin-bottom: 24px;
      color: var(--dark);
    }
    .prose h2 em { font-style: italic; color: var(--gold); }
    .prose p {
      font-size: 15px;
      line-height: 1.85;
      color: var(--mid);
      margin-bottom: 20px;
    }
    .prose ul { margin: 0 0 24px 20px; }
    .prose ul li {
      font-size: 15px;
      line-height: 1.8;
      color: var(--mid);
      margin-bottom: 8px;
    }

    .stub-note {
      margin-top: 40px;
      padding: 20px 24px;
      border-left: 3px solid var(--gold);
      background: var(--light-bg);
      font-size: 13px;
      line-height: 1.7;
      color: var(--mid);
    }

    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 48px;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      transition: gap 0.2s;
    }
    .back-link:hover { gap: 14px; }

    /* Blog listing grid reused on blog.html */
    .page-section .blog-grid { margin-top: 8px; }

/* ── NAV LOGO (icon + wordmark) ── */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  height: 34px;
  width: auto;
  display: block;
}

/* ── NAV LOGO: mobile stacked & smaller ── */
@media (max-width: 900px) {
  .nav-logo {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .nav-logo-icon { height: 26px; }
  .nav-logo-img { height: 17px; }
}
