    :root {
      --sand:     #F2EDE4;
      --sage:     #A8BAA2;
      --blush:    #D9A8A0;
      --sky:      #A4BDD1;
      --terracotta: #C47A5A;
      --moss:     #6E8A72;
      --cream:    #FAF7F2;
      --charcoal: #2D2D2A;
      --warm-gray:#8A8478;
      --warm-gray-text:#6B6459;
      --moss-text:#5C7560;
      --sage-text:#7E9678;
      --terracotta-dark:#B8693F;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: 'DM Sans', sans-serif;
      background: var(--cream);
      color: var(--charcoal);
      font-size: 16px;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      padding: 1rem 3rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(250,247,242,0.88);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid rgba(168,186,162,0.3);
    }

    .logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }
    .logo-img {
      height: 54px;
      width: auto;
      display: block;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 2.2rem;
    }
    nav ul a {
      text-decoration: none;
      color: var(--warm-gray-text);
      font-size: 0.85rem;
      font-weight: 400;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    nav ul a:hover { color: var(--terracotta); }

    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 30px; height: 30px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 0;
      z-index: 110;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--charcoal);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: center;
      padding: 7rem 3rem 4rem;
      gap: 4rem;
      position: relative;
      overflow: hidden;
      --mx: 0px;
      --my: 0px;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -10%;
      right: -5%;
      width: 55%;
      height: 80%;
      background: radial-gradient(ellipse at 60% 30%, var(--sage) 0%, transparent 65%),
                  radial-gradient(ellipse at 30% 70%, var(--blush) 0%, transparent 55%);
      opacity: 0.35;
      border-radius: 50% 40% 60% 30%;
      animation: blob 12s ease-in-out infinite;
    }

    @keyframes blob {
      0%,100% { transform: translate(var(--mx, 0px), var(--my, 0px)) scale(1); }
      33%      { transform: translate(calc(-3% + var(--mx, 0px)), calc(4% + var(--my, 0px))) scale(1.04); }
      66%      { transform: translate(calc(3% + var(--mx, 0px)), calc(-3% + var(--my, 0px))) scale(0.97); }
    }

    .hero-visual { transition: transform 0.25s ease-out; }

    .hero-text { position: relative; }

    .hero-eyebrow {
      font-size: 0.78rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--moss-text);
      font-weight: 500;
      margin-bottom: 1.6rem;
    }

    h1 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(3rem, 5.5vw, 5.2rem);
      line-height: 1.1;
      color: var(--charcoal);
      margin-bottom: 1.8rem;
    }
    h1 em {
      font-style: italic;
      color: var(--terracotta);
    }
    #heroWord {
      display: inline-block;
      transition: opacity 0.5s ease, transform 0.5s ease;
    }
    #heroWord.swap {
      opacity: 0;
      transform: translateY(8px);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--warm-gray-text);
      max-width: 420px;
      line-height: 1.75;
      margin-bottom: 2.8rem;
    }

    .btn-primary {
      display: inline-block;
      background: var(--terracotta);
      color: #fff;
      padding: 0.9rem 2.2rem;
      border-radius: 3px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 500;
      letter-spacing: 0.04em;
      transition: background 0.3s, transform 0.2s;
    }
    .btn-primary:hover { background: var(--charcoal); transform: translateY(-2px); }

    .btn-ghost {
      display: inline-block;
      border: 1.5px solid var(--charcoal);
      color: var(--charcoal);
      padding: 0.85rem 2rem;
      border-radius: 3px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 400;
      letter-spacing: 0.04em;
      margin-left: 1rem;
      transition: background 0.3s, color 0.3s;
    }
    .btn-ghost:hover { background: var(--charcoal); color: #fff; }

    /* Hero Visual */
    .hero-visual {
      position: relative;
      height: 520px;
    }

    .circle-main {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 320px; height: 320px;
      border-radius: 50%;
      border: 1.5px solid var(--sage);
      display: flex;
      align-items: center;
      justify-content: center;
      animation: rotate-slow 30s linear infinite;
    }

    @keyframes rotate-slow {
      to { transform: translate(-50%,-50%) rotate(360deg); }
    }

    .circle-inner {
      width: 220px; height: 220px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--sage) 0%, var(--sky) 50%, var(--blush) 100%);
      opacity: 0.55;
      animation: breathe 8s ease-in-out infinite;
    }

    @keyframes breathe {
      0%,100% { transform: scale(1); }
      50%      { transform: scale(1.07); }
    }

    .orbit-dot {
      position: absolute;
      top: 50%; left: 50%;
      width: 10px; height: 10px;
      border-radius: 50%;
      background: var(--terracotta);
      margin: -5px;
    }

    .orbit-1 { transform: rotate(0deg) translateX(160px) rotate(0deg); }
    .orbit-2 { transform: rotate(120deg) translateX(160px) rotate(-120deg); background: var(--moss); }
    .orbit-3 { transform: rotate(240deg) translateX(160px) rotate(-240deg); background: var(--sky); }

    .float-tag {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0.55rem;
      background: white;
      padding: 0.7rem 1.1rem;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--charcoal);
      border-left: 3px solid var(--sage);
      animation: float 6s ease-in-out infinite;
    }
    .float-tag-icon {
      width: 16px; height: 16px;
      flex-shrink: 0;
      stroke-width: 1.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .float-tag:nth-child(1) { top: 10%; left: 0; animation-delay: 0s; border-color: var(--sage); }
    .float-tag:nth-child(1) .float-tag-icon { stroke: var(--moss); }
    .float-tag:nth-child(2) { bottom: 12%; right: 0; animation-delay: 2s; border-color: var(--blush); }
    .float-tag:nth-child(2) .float-tag-icon { stroke: var(--terracotta); }
    .float-tag:nth-child(3) { top: 55%; left: -5%; animation-delay: 4s; border-color: var(--sky); }
    .float-tag:nth-child(3) .float-tag-icon { stroke: #5B85A0; }

    @keyframes float {
      0%,100% { transform: translateY(0); }
      50%      { transform: translateY(-10px); }
    }

    /* ── SECTIONS ── */
    section { padding: 7rem 3rem; }
    .section-label {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--moss-text);
      font-weight: 500;
      margin-bottom: 1rem;
    }
    h2 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 300;
      font-size: clamp(2rem, 3.5vw, 3rem);
      line-height: 1.25;
      color: var(--charcoal);
      margin-bottom: 1.5rem;
    }
    h2 em { font-style: italic; color: var(--terracotta); }
    .about h2 em, .blog-teaser h2 em { color: var(--terracotta-dark); }

    /* ── ABOUT ── */
    .about {
      background: var(--sand);
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: center;
    }

    .about-image-wrap {
      position: relative;
    }
    .about-image-wrap::before {
      content: '';
      position: absolute;
      top: -9%; left: -11%;
      width: 85%;
      height: 68%;
      background: radial-gradient(ellipse at 40% 30%, var(--blush) 0%, transparent 60%),
                  radial-gradient(ellipse at 70% 75%, var(--sage) 0%, transparent 55%);
      opacity: 0.55;
      border-radius: 58% 42% 38% 62% / 50% 60% 40% 50%;
      animation: blob 14s ease-in-out infinite reverse;
      z-index: 0;
    }
    .portrait-bg {
      width: 100%;
      aspect-ratio: 3/4;
      position: relative;
      z-index: 1;
      overflow: hidden;
      box-shadow: 0 30px 60px -20px rgba(45,45,42,0.28);
      animation: portraitMorph 16s ease-in-out infinite;
    }

    @keyframes portraitMorph {
      0%, 100% { border-radius: 42% 58% 64% 36% / 48% 42% 58% 52%; transform: scale(1) rotate(0deg); }
      25%       { border-radius: 56% 44% 42% 58% / 40% 56% 44% 60%; transform: scale(1.015) rotate(0.4deg); }
      50%       { border-radius: 64% 36% 50% 50% / 56% 48% 52% 44%; transform: scale(0.99) rotate(-0.3deg); }
      75%       { border-radius: 38% 62% 58% 42% / 52% 38% 62% 48%; transform: scale(1.01) rotate(0.2deg); }
    }
    .portrait-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(196,122,90,0.2) 0%, transparent 50%, rgba(110,138,114,0.24) 100%);
      mix-blend-mode: soft-light;
      pointer-events: none;
    }

    .portrait-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      filter: saturate(1.12) contrast(1.08) sepia(0.1) hue-rotate(-8deg) brightness(1.02);
    }
    .about-text p {
      color: var(--warm-gray-text);
      margin-bottom: 1.2rem;
      font-size: 1rem;
    }

    .values-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0.8rem;
      margin-top: 2rem;
    }
    .value-item {
      display: flex;
      align-items: center;
      gap: 0.8rem;
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--charcoal);
      background: white;
      padding: 0.9rem 1.1rem;
      border-radius: 8px;
      border-left: 3px solid var(--sage);
      box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    }
    .value-icon {
      width: 30px; height: 30px;
      border-radius: 50%;
      background: rgba(168,186,162,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .value-icon svg {
      width: 15px; height: 15px;
      stroke-width: 2;
      fill: none;
      stroke: var(--moss);
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .value-item:nth-child(2) { border-left-color: var(--blush); }
    .value-item:nth-child(2) .value-icon { background: rgba(217,168,160,0.2); }
    .value-item:nth-child(2) .value-icon svg { stroke: var(--terracotta); }
    .value-item:nth-child(3) { border-left-color: var(--sky); }
    .value-item:nth-child(3) .value-icon { background: rgba(164,189,209,0.2); }
    .value-item:nth-child(3) .value-icon svg { stroke: #5B85A0; }
    .value-item:nth-child(4) { border-left-color: var(--terracotta); }
    .value-item:nth-child(4) .value-icon { background: rgba(196,122,90,0.15); }
    .value-item:nth-child(4) .value-icon svg { stroke: var(--terracotta-dark); }

    /* ── ACHIEVEMENTS MARQUEE (horizontal, spans both About columns) ── */
    .achievements-strip {
      grid-column: 1 / -1;
      position: relative;
      margin-top: 1rem;
      background: white;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.05);
      overflow: hidden;
    }
    .achievements-strip::before,
    .achievements-strip::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 70px;
      z-index: 2;
      pointer-events: none;
    }
    .achievements-strip::before { left: 0; background: linear-gradient(to right, white, transparent); }
    .achievements-strip::after { right: 0; background: linear-gradient(to left, white, transparent); }

    .achv-track-h {
      display: flex;
      width: max-content;
      animation: achvScrollH 18s linear infinite;
    }
    .achv-chip {
      display: flex;
      align-items: baseline;
      gap: 0.5rem;
      padding: 1.3rem 2.4rem;
      border-right: 1px dashed rgba(138,132,120,0.2);
      white-space: nowrap;
    }
    .achv-chip .num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem;
      font-weight: 400;
      color: var(--terracotta);
    }
    .achv-chip .label {
      font-size: 0.82rem;
      color: var(--warm-gray-text);
    }
    @keyframes achvScrollH {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    @media (prefers-reduced-motion: reduce) {
      .achv-track-h { animation: none; }
    }

    /* ── ANGEBOTE ── */
    .angebote { background: var(--cream); }

    .angebote-intro {
      max-width: 560px;
      margin-bottom: 4rem;
    }
    .angebote-intro p { color: var(--warm-gray-text); font-size: 1.05rem; }

    .angebot-tag {
      display: inline-block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--moss-text);
      background: rgba(168,186,162,0.15);
      padding: 0.35rem 0.9rem;
      border-radius: 20px;
      margin-bottom: 1.2rem;
    }

    .angebot-hinweis {
      font-size: 0.8rem;
      font-style: italic;
      color: rgba(255,255,255,0.45);
      line-height: 1.6;
      max-width: 480px;
      margin: 1.5rem auto 0;
    }

    /* ── METHODEN ── */
    .methoden {
      background: var(--charcoal);
      color: white;
    }
    .methoden .section-label { color: var(--sage); }
    .methoden h2 { color: white; }
    .methoden h2 em { color: var(--blush); }

    .methoden-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 3.5rem;
    }
    .methode-item {
      padding: 2rem;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 6px;
      transition: border-color 0.3s, background 0.3s;
    }
    .methode-item:hover {
      border-color: var(--sage);
      background: rgba(168,186,162,0.08);
    }
    .methode-num {
      font-family: 'Cormorant Garamond', serif;
      font-size: 2.5rem;
      font-weight: 300;
      color: var(--blush);
      opacity: 0.5;
      line-height: 1;
      margin-bottom: 0.5rem;
    }
    .methode-item h4 {
      font-size: 1rem;
      font-weight: 500;
      color: white;
      margin-bottom: 0.6rem;
    }
    .methode-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.7; }

    /* ── BLOG TEASER ── */
    .blog-teaser { background: var(--sand); }
    .blog-teaser-intro {
      max-width: 560px;
      color: var(--warm-gray-text);
      font-size: 1.05rem;
      margin-bottom: 3rem;
    }

    .blog-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }
    .blog-card {
      display: block;
      background: white;
      padding: 2.2rem 2rem;
      border-radius: 6px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
    .blog-card-tag {
      display: inline-block;
      font-size: 0.68rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--terracotta-dark);
      background: rgba(196,122,90,0.12);
      padding: 0.3rem 0.8rem;
      border-radius: 20px;
      margin-bottom: 1.1rem;
    }
    .blog-card h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.3rem;
      color: var(--charcoal);
      margin-bottom: 0.7rem;
      line-height: 1.3;
    }
    .blog-card p { font-size: 0.9rem; color: var(--warm-gray-text); line-height: 1.65; margin-bottom: 1.2rem; }
    .blog-card-link {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--moss-text);
    }

    /* ── KONTAKT ── */
    .kontakt { background: var(--cream); }

    .kontakt-inner {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 5rem;
      align-items: start;
    }
    .kontakt-info p { color: var(--warm-gray-text); font-size: 1rem; margin-bottom: 2rem; }
    .info-row {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
      color: var(--charcoal);
    }
    .info-icon {
      width: 38px; height: 38px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .info-icon svg {
      width: 18px; height: 18px;
      stroke-width: 1.6;
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .info-row:nth-of-type(1) .info-icon { background: rgba(168,186,162,0.2); color: var(--moss); }
    .info-row:nth-of-type(2) .info-icon { background: rgba(217,168,160,0.2); color: var(--terracotta); }
    .info-row:nth-of-type(3) .info-icon { background: rgba(164,189,209,0.2); color: #5B85A0; }

    form { display: flex; flex-direction: column; gap: 1rem; }
    label { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em; color: var(--warm-gray-text); display: block; margin-bottom: 0.35rem; }
    input, textarea, select {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1.5px solid rgba(138,132,120,0.25);
      border-radius: 4px;
      background: white;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.95rem;
      color: var(--charcoal);
      transition: border-color 0.3s;
      outline: none;
    }
    input:focus, textarea:focus, select:focus { border-color: var(--sage); }
    textarea { min-height: 130px; resize: vertical; }

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

    /* ── FOOTER ── */
    footer {
      background: var(--charcoal);
      color: rgba(255,255,255,0.5);
      padding: 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 0.83rem;
    }
    footer .foot-logo {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.2rem;
      color: white;
      font-weight: 300;
    }
    footer a { color: rgba(255,255,255,0.62); text-decoration: none; }
    footer a:hover { color: var(--blush); }

    /* ── ANIMATIONS on scroll ── */
    .fade-up {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ── Responsive: Tablet (1025px and below) ── */
    @media (max-width: 1024px) {
      nav { padding: 1.2rem 2rem; }
      .hero { padding: 6.5rem 2rem 3.5rem; gap: 2.5rem; }
      .hero-visual { height: 380px; }
      .circle-main { width: 240px; height: 240px; }
      .circle-inner { width: 165px; height: 165px; }
      .orbit-1 { transform: rotate(0deg) translateX(120px) rotate(0deg); }
      .orbit-2 { transform: rotate(120deg) translateX(120px) rotate(-120deg); }
      .orbit-3 { transform: rotate(240deg) translateX(120px) rotate(-240deg); }
      .about { gap: 3rem; }
      .detail-hero { grid-template-columns: 1fr; text-align: center; }
      .detail-hero-visual { height: 260px; order: -1; margin: 0 auto 1rem; }
      .benefit-grid { grid-template-columns: 1fr; }
      .methoden-grid { grid-template-columns: repeat(2, 1fr); }
      section { padding: 5rem 2rem; }
    }

    /* ── Responsive: Mobile (768px and below) ── */
    @media (max-width: 768px) {
      nav { padding: 0.9rem 1.5rem; }
      .logo-img { height: 42px; }
      nav ul {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: var(--cream);
        padding: 1.5rem;
        gap: 1.2rem;
        border-bottom: 1px solid rgba(168,186,162,0.3);
        box-shadow: 0 12px 30px rgba(0,0,0,0.06);
        max-height: 0;
        overflow: hidden;
        padding-top: 0;
        padding-bottom: 0;
        transition: max-height 0.35s ease, padding 0.35s ease;
      }
      nav ul.open { max-height: 320px; padding: 1.5rem; }
      nav ul a { font-size: 0.95rem; }
      .nav-toggle { display: flex; }

      .hero { grid-template-columns: 1fr; padding: 6rem 1.5rem 3rem; text-align: left; }
      .hero-visual { height: 260px; margin-top: 1rem; }
      .circle-main { width: 180px; height: 180px; }
      .circle-inner { width: 125px; height: 125px; }
      .orbit-1 { transform: rotate(0deg) translateX(90px) rotate(0deg); }
      .orbit-2 { transform: rotate(120deg) translateX(90px) rotate(-120deg); }
      .orbit-3 { transform: rotate(240deg) translateX(90px) rotate(-240deg); }
      .float-tag { font-size: 0.72rem; padding: 0.55rem 0.85rem; }
      .float-tag:nth-child(1) { top: 2%; left: 2%; }
      .float-tag:nth-child(2) { bottom: 4%; right: 2%; }
      .float-tag:nth-child(3) { display: none; }
      .detail-float-tag--bottom { display: none; }
      .detail-float-tag--top { top: -4%; right: 6%; font-size: 0.72rem; }
      .btn-ghost { margin-left: 0; margin-top: 0.8rem; display: inline-block; }

      .about { grid-template-columns: 1fr; padding: 4rem 1.5rem; gap: 2.5rem; }
      .values-list { grid-template-columns: 1fr; }
      .achv-chip { padding: 1.1rem 1.6rem; }

      .pullquote-section { padding: 3.5rem 1.5rem; }
      .benefits-section { padding: 3.5rem 1.5rem 0.5rem; }
      .cta-banner { padding: 4rem 1.5rem; }
      .methoden-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .kontakt-inner { grid-template-columns: 1fr; gap: 2.5rem; }
      .form-row { grid-template-columns: 1fr; }
      section { padding: 4rem 1.5rem; }
      footer { flex-direction: column; gap: 1rem; text-align: center; padding: 2.5rem 1.5rem; }
    }

    @media (max-width: 420px) {
      .achv-chip { padding: 1rem 1.2rem; }
      .achv-chip .num { font-size: 1.1rem; }
      .achv-chip .label { font-size: 0.72rem; }
    }

    /* ── ANGEBOTE TEASER GRID (homepage overview) ── */
    .angebot-teaser-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.8rem;
    }

    .angebot-teaser {
      display: block;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      text-decoration: none;
      border: 1px solid rgba(168,186,162,0.25);
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .angebot-teaser:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.1); }

    .angebot-teaser-visual {
      position: relative;
      aspect-ratio: 4/3;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--sand);
    }
    .angebot-teaser-visual::before {
      content: '';
      position: absolute;
      inset: -15%;
      opacity: 0.6;
      animation: blob 12s ease-in-out infinite;
    }
    .angebot-teaser-visual--sage::before { background: radial-gradient(ellipse at 30% 30%, var(--sage) 0%, transparent 65%), radial-gradient(ellipse at 75% 75%, var(--sky) 0%, transparent 60%); }
    .angebot-teaser-visual--blush::before { background: radial-gradient(ellipse at 70% 25%, var(--blush) 0%, transparent 65%), radial-gradient(ellipse at 25% 75%, var(--terracotta) 0%, transparent 55%); }
    .angebot-teaser-visual--sky::before { background: radial-gradient(ellipse at 30% 70%, var(--sky) 0%, transparent 65%), radial-gradient(ellipse at 75% 25%, var(--moss) 0%, transparent 55%); }
    .angebot-teaser-icon { position: relative; z-index: 1; }

    .angebot-teaser-icon {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,0.75);
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 8px 24px rgba(45,45,42,0.1);
    }
    .angebot-teaser-icon svg {
      width: 32px; height: 32px;
      stroke-width: 1.6;
      fill: none;
      stroke: var(--charcoal);
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .angebot-teaser-body { padding: 1.8rem 1.7rem 2rem; }
    .angebot-teaser-body h3 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.4rem;
      color: var(--charcoal);
      margin: 0.7rem 0 0.6rem;
    }
    .angebot-teaser-body p { font-size: 0.9rem; color: var(--warm-gray-text); line-height: 1.6; margin-bottom: 1.1rem; }

    .angebot-teaser-link {
      font-size: 0.85rem;
      font-weight: 500;
      color: var(--terracotta-dark);
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      transition: gap 0.25s;
    }
    .angebot-teaser:hover .angebot-teaser-link { gap: 0.55rem; }

    /* ── DETAIL PAGE HERO ── */
    .detail-hero {
      position: relative;
      overflow: hidden;
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      align-items: center;
      gap: 3rem;
      padding: 9rem 3rem 4rem;
      max-width: 1120px;
      margin: 0 auto;
    }
    .detail-hero::before {
      content: '';
      position: absolute;
      top: -15%;
      right: -10%;
      width: 55%;
      height: 90%;
      opacity: 0.3;
      border-radius: 50% 40% 60% 30%;
      animation: blob 12s ease-in-out infinite;
      pointer-events: none;
      z-index: 0;
    }
    .detail-hero--sage::before { background: radial-gradient(ellipse at 60% 30%, var(--sage) 0%, transparent 65%), radial-gradient(ellipse at 30% 70%, var(--sky) 0%, transparent 55%); }
    .detail-hero--blush::before { background: radial-gradient(ellipse at 60% 30%, var(--blush) 0%, transparent 65%), radial-gradient(ellipse at 30% 70%, var(--terracotta) 0%, transparent 55%); }
    .detail-hero--sky::before { background: radial-gradient(ellipse at 60% 30%, var(--sky) 0%, transparent 65%), radial-gradient(ellipse at 30% 70%, var(--moss) 0%, transparent 55%); }
    .detail-hero-text, .detail-hero-visual { position: relative; z-index: 1; }

    .detail-float-tag {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      background: white;
      padding: 0.6rem 1rem;
      border-radius: 8px;
      box-shadow: 0 8px 30px rgba(0,0,0,0.08);
      font-size: 0.78rem;
      font-weight: 500;
      color: var(--charcoal);
      border-left: 3px solid var(--sage);
      animation: float 6s ease-in-out infinite;
      z-index: 2;
      white-space: nowrap;
    }
    .detail-float-tag svg {
      width: 14px; height: 14px;
      flex-shrink: 0;
      stroke-width: 1.6;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .detail-float-tag--top { top: 6%; right: 2%; animation-delay: 0s; }
    .detail-float-tag--bottom { bottom: 10%; left: 0; animation-delay: 2.5s; }
    .detail-float-tag--sage { border-left-color: var(--sage); }
    .detail-float-tag--sage svg { stroke: var(--moss); }
    .detail-float-tag--blush { border-left-color: var(--blush); }
    .detail-float-tag--blush svg { stroke: var(--terracotta); }
    .detail-float-tag--sky { border-left-color: var(--sky); }
    .detail-float-tag--sky svg { stroke: #5B85A0; }
    .back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.85rem;
      color: var(--warm-gray-text);
      text-decoration: none;
      margin-bottom: 1.6rem;
      transition: color 0.3s;
    }
    .back-link:hover { color: var(--terracotta); }
    .detail-hero h1 {
      font-size: clamp(2rem, 3.6vw, 2.9rem);
      margin-bottom: 0;
    }

    .detail-hero-visual { height: 340px; }
    .detail-hero-icon {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 84px; height: 84px;
      border-radius: 50%;
      background: rgba(255,255,255,0.85);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 28px rgba(45,45,42,0.14);
      z-index: 2;
    }
    .detail-hero-icon svg {
      width: 36px; height: 36px;
      stroke-width: 1.6;
      fill: none;
      stroke: var(--charcoal);
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .detail-body {
      max-width: 700px;
      margin: 0 auto;
      padding: 2.5rem 3rem 4rem;
    }
    .detail-body p {
      color: var(--warm-gray-text);
      font-size: 1.05rem;
      line-height: 1.85;
    }

    /* ── PULL QUOTE ── */
    .pullquote-section { background: var(--sand); padding: 4.5rem 3rem; }
    .pullquote-inner { max-width: 700px; margin: 0 auto; text-align: center; }
    .pullquote-mark {
      font-family: 'Cormorant Garamond', serif;
      font-size: 3.4rem;
      color: var(--terracotta);
      opacity: 0.55;
      line-height: 1;
      margin-bottom: 0.3rem;
    }
    .pullquote-text {
      font-family: 'Cormorant Garamond', serif;
      font-style: italic;
      font-weight: 300;
      font-size: clamp(1.3rem, 2.4vw, 1.75rem);
      color: var(--charcoal);
      line-height: 1.5;
    }

    /* ── BENEFITS ── */
    .benefits-section { max-width: 860px; margin: 0 auto; padding: 5rem 3rem 1rem; }
    .benefits-section .section-label { text-align: center; }
    .benefits-section > p.benefits-intro {
      max-width: 560px;
      margin: 0 auto 2.5rem;
      text-align: center;
      color: var(--warm-gray-text);
      font-size: 1rem;
      line-height: 1.75;
    }

    .benefit-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 1.8rem 2.2rem;
    }
    .benefit-item { display: flex; gap: 1rem; align-items: flex-start; }
    .benefit-icon {
      width: 46px; height: 46px;
      border-radius: 50%;
      background: rgba(168,186,162,0.18);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .benefit-icon svg {
      width: 21px; height: 21px;
      stroke-width: 1.6;
      fill: none;
      stroke: var(--moss);
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .benefit-item h4 { font-size: 0.98rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.3rem; }
    .benefit-item p { font-size: 0.88rem; color: var(--warm-gray-text); line-height: 1.65; margin: 0; }

    .info-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      justify-content: center;
      margin-top: 3rem;
    }
    .info-chip {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--sand);
      padding: 0.7rem 1.2rem;
      border-radius: 30px;
      font-size: 0.84rem;
      color: var(--charcoal);
    }
    .info-chip svg {
      width: 16px; height: 16px;
      stroke-width: 1.6;
      fill: none;
      stroke: var(--terracotta-dark);
      flex-shrink: 0;
    }

    /* ── CTA BANNER ── */
    .cta-banner { background: var(--charcoal); color: white; padding: 5.5rem 3rem; text-align: center; }
    .cta-banner-inner { max-width: 600px; margin: 0 auto; }
    .cta-banner h2 { color: white; margin-bottom: 1rem; }
    .cta-banner h2 em { color: var(--blush); font-style: italic; }
    .cta-banner p { color: rgba(255,255,255,0.68); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }

    /* ── NEXT SERVICE ── */
    .next-service-section {
      background: var(--sand);
      padding: 5rem 3rem;
    }
    .next-service-inner { max-width: 780px; margin: 0 auto; }
    .next-service-label {
      font-size: 0.75rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--moss-text);
      font-weight: 500;
      margin-bottom: 1.4rem;
    }
    .next-service-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
      background: white;
      padding: 1.8rem 2rem;
      border-radius: 8px;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(0,0,0,0.04);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .next-service-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); }
    .next-service-card h4 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      font-size: 1.3rem;
      color: var(--charcoal);
      margin-bottom: 0.3rem;
    }
    .next-service-card p { font-size: 0.88rem; color: var(--warm-gray-text); margin: 0; }
    .next-service-arrow { font-size: 1.4rem; color: var(--terracotta); flex-shrink: 0; }

    /* ── BLOG POST BODY ── */
    .blog-post-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 3.5rem 3rem 1rem;
    }
    .blog-post-body p {
      color: var(--warm-gray-text);
      font-size: 1.05rem;
      line-height: 1.85;
      margin-bottom: 1.4rem;
    }
    .blog-post-body h2 {
      font-size: clamp(1.6rem, 2.6vw, 2.1rem);
      margin-top: 1rem;
      margin-bottom: 1rem;
    }
    .blog-post-body a {
      color: var(--terracotta-dark);
      text-decoration: underline;
      text-decoration-color: rgba(196,122,90,0.35);
      text-underline-offset: 3px;
    }
    .blog-post-body a:hover { text-decoration-color: var(--terracotta-dark); }

    .blog-post-meta {
      font-size: 0.85rem;
      color: var(--warm-gray-text);
      margin-top: 1rem;
    }

    .blog-post-image {
      max-width: 780px;
      margin: 1rem auto 3rem;
      padding: 0 3rem;
    }
    .blog-post-image img {
      width: 100%;
      border-radius: 10px;
      display: block;
      box-shadow: 0 20px 50px -20px rgba(45,45,42,0.3);
    }
    .blog-post-image figcaption {
      font-size: 0.78rem;
      color: var(--warm-gray-text);
      opacity: 0.75;
      margin-top: 0.6rem;
      text-align: right;
      font-style: italic;
    }

    /* ── Responsive additions ── */
    @media (max-width: 1024px) {
      .angebot-teaser-grid { grid-template-columns: repeat(2, 1fr); }
      .blog-grid { grid-template-columns: repeat(2, 1fr); }
      .detail-hero { grid-template-columns: 1fr; text-align: center; }
      .detail-hero-visual { height: 260px; order: -1; margin: 0 auto 1rem; }
      .benefit-grid { grid-template-columns: 1fr; }
    }
    @media (max-width: 768px) {
      .angebot-teaser-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .benefit-grid { grid-template-columns: 1fr; }
      .detail-hero { padding: 7rem 1.5rem 2.5rem; }
      .detail-body { padding: 0 1.5rem 3.5rem; }
      .blog-post-body { padding: 2.5rem 1.5rem 0.5rem; }
      .blog-post-image { padding: 0 1.5rem; }
      .benefits-section { padding: 3.5rem 1.5rem 0.5rem; }
      .next-service-section { padding: 3.5rem 1.5rem; }
      .next-service-card { flex-direction: column; align-items: flex-start; }
      .detail-float-tag--bottom { display: none; }
      .detail-float-tag--top { top: -4%; right: 6%; font-size: 0.72rem; }
      .pullquote-section { padding: 3.5rem 1.5rem; }
      .cta-banner { padding: 4rem 1.5rem; }
    }
