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

    :root {
      --red: #b20a32;
      --red-d: #8a0826;
      --brown: #6b5f58;
      --brown-l: #9c8f88;
      --cream: #f7f3ef;
      --dark: #1a1612;
      --dark2: #251f1b;
      --white: #ffffff;
      --gold: #c9a96e;
      --gold-l: #e8d5b0;
      --text: #2e2420;
      --text-m: #5c4f48;
      --ff-serif: 'Cormorant Garamond', Georgia, serif;
      --ff-sans: 'Inter', system-ui, sans-serif;
      --ease: cubic-bezier(.4, 0, .2, 1);
      --ease-out: cubic-bezier(0, .55, .45, 1);
    }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: var(--ff-sans);
      color: var(--text);
      background: var(--white);
      overflow-x: hidden;
    }

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

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

    ul {
      list-style: none;
    }

    input,
    textarea,
    select {
      font-family: inherit;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 40px;
    }

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

    /* ─── SCROLLBAR ─── */
    ::-webkit-scrollbar {
      width: 6px;
    }

    ::-webkit-scrollbar-track {
      background: var(--dark);
    }

    ::-webkit-scrollbar-thumb {
      background: var(--red);
      border-radius: 3px;
    }

    /* ─── CURSOR DOT ─── */
    .cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      background: var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: transform .1s;
      mix-blend-mode: difference;
    }

    .cursor-ring {
      position: fixed;
      width: 36px;
      height: 36px;
      border: 1.5px solid var(--red);
      border-radius: 50%;
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: transform .12s var(--ease), width .3s, height .3s, opacity .3s;
    }

    /* ─── PRELOADER ─── */
    #preloader {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 10000;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 24px;
      transition: opacity .6s var(--ease), visibility .6s;
    }

    #preloader.hidden {
      opacity: 0;
      visibility: hidden;
    }

    .preloader-logo {
      font-family: var(--ff-serif);
      font-size: 2.4rem;
      color: var(--white);
      letter-spacing: .1em;
      font-weight: 300;
    }

    .preloader-logo span {
      color: var(--red);
    }

    .preloader-line {
      width: 180px;
      height: 1px;
      background: var(--dark2);
      position: relative;
      overflow: hidden;
    }

    .preloader-line::after {
      content: '';
      position: absolute;
      inset: 0;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      animation: preload 1.8s var(--ease) forwards;
    }

    @keyframes preload {
      to {
        transform: scaleX(1);
      }
    }

    /* ─── NOTICE ─── */
    .notice {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1001;
      background: var(--red);
      padding: 11px 40px;
      text-align: center;
    }

    .notice p {
      font-size: .73rem;
      color: var(--white);
      letter-spacing: .05em;
    }

    .notice strong {
      font-weight: 600;
    }

    .notice-close {
      position: absolute;
      right: 16px;
      top: 50%;
      transform: translateY(-50%);
      background: transparent;
      border: none;
      color: rgba(255, 255, 255, .8);
      font-size: 1.3rem;
      cursor: pointer;
      line-height: 1;
      padding: 4px 8px;
    }

    .notice-close:hover {
      color: var(--white);
    }

    /* ─── NAV ─── */
    :root {
      --notice-h: 34px;
    }

    nav {
      position: fixed;
      top: var(--notice-h);
      left: 0;
      right: 0;
      z-index: 1000;
      padding: 0 40px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background .4s var(--ease), box-shadow .4s, height .4s, top .3s var(--ease);
    }

    nav.scrolled {
      background: rgba(26, 22, 18, .97);
      backdrop-filter: blur(12px);
      box-shadow: 0 1px 0 rgba(255, 255, 255, .06);
      height: 60px;
    }

    .nav-logo {
      font-family: var(--ff-serif);
      font-size: 1.5rem;
      color: var(--white);
      font-weight: 600;
      letter-spacing: .06em;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .nav-logo .dot {
      width: 8px;
      height: 8px;
      background: var(--red);
      border-radius: 50%;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .nav-links a {
      font-size: .78rem;
      color: rgba(255, 255, 255, .72);
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      transition: color .25s;
      position: relative;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 1px;
      background: var(--red);
      transition: width .3s var(--ease);
    }

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

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      background: var(--red);
      color: var(--white);
      padding: 10px 24px;
      font-size: .78rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      transition: background .25s, transform .2s;
    }

    .nav-cta:hover {
      background: var(--red-d);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }

    .hamburger span {
      display: block;
      width: 24px;
      height: 1.5px;
      background: var(--white);
      transition: all .3s;
    }

    @media(max-width:1024px) {
      .nav-links {
        display: none;
      }

      .hamburger {
        display: flex;
      }
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: var(--dark);
      z-index: 999;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 36px;
      transform: translateX(100%);
      transition: transform .5s var(--ease);
    }

    .mobile-menu.open {
      transform: none;
    }

    .mobile-menu a {
      font-family: var(--ff-serif);
      font-size: 2.4rem;
      color: var(--white);
      font-weight: 300;
      letter-spacing: .06em;
      transition: color .25s;
    }

    .mobile-menu a:hover {
      color: var(--red);
    }

    /* ─── HERO ─── */
    #hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      justify-content: center;
      overflow: hidden;
      background: var(--dark);
      padding-top: calc(var(--notice-h) + 72px + 48px);
      padding-bottom: 0;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
    }

    .hero-bg video,
    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: .35;
    }

    .hero-bg-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(26, 22, 18, .92) 0%, rgba(178, 10, 50, .18) 60%, rgba(26, 22, 18, .75) 100%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      max-width: 820px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding-bottom: 40px;
    }

    .hero-tag {
      display: inline-flex;
      align-self: flex-start;
      align-items: center;
      gap: 10px;
      background: rgba(178, 10, 50, .15);
      border: 1px solid rgba(178, 10, 50, .3);
      border-radius: 100px;
      padding: 6px 16px;
      margin-bottom: 32px;
    }

    .hero-tag span {
      font-size: .72rem;
      color: var(--gold-l);
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 500;
    }

    .hero-tag::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      animation: pulse 2s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: .5;
        transform: scale(1.4);
      }
    }

    .hero-h1 {
      font-family: var(--ff-serif);
      font-size: clamp(2.8rem, 6vw, 5.2rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.12;
      margin-bottom: 24px;
    }

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

    .hero-h1 strong {
      font-weight: 700;
      display: block;
    }

    .hero-sub {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, .65);
      line-height: 1.8;
      max-width: 560px;
      margin-bottom: 48px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--red);
      color: var(--white);
      padding: 16px 36px;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      transition: background .25s, transform .2s, box-shadow .25s;
      cursor: pointer;
      border: none;
    }

    .btn-primary:hover {
      background: var(--red-d);
      transform: translateY(-2px);
      box-shadow: 0 12px 40px rgba(178, 10, 50, .35);
    }

    .btn-ghost {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: var(--white);
      padding: 15px 34px;
      font-size: .85rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      border: 1px solid rgba(255, 255, 255, .3);
      border-radius: 2px;
      transition: all .25s;
    }

    .btn-ghost:hover {
      border-color: var(--white);
      background: rgba(255, 255, 255, .06);
    }

    .btn-arrow {
      font-size: 1.1rem;
      transition: transform .25s;
    }

    .btn-primary:hover .btn-arrow,
    .btn-ghost:hover .btn-arrow {
      transform: translateX(4px);
    }

    /* Stats — desktop: absolute bottom strip; mobile: flow below content */
    .hero-stats {
      position: relative;
      z-index: 2;
      width: 100%;
      margin-top: auto;
    }

    .hero-stats .container {
      display: flex;
      align-items: center;
      gap: 0;
    }

    .hero-stat {
      flex: 1;
      padding: 28px 32px;
      border-left: 1px solid rgba(255, 255, 255, .1);
    }

    .hero-stat:first-child {
      border-left: none;
    }

    .hero-stat-num {
      font-family: var(--ff-serif);
      font-size: 2.8rem;
      color: var(--white);
      font-weight: 600;
      line-height: 1;
    }

    .hero-stat-num sup {
      font-size: 1.2rem;
      color: var(--red);
    }

    .hero-stat-label {
      font-size: .72rem;
      color: rgba(255, 255, 255, .5);
      letter-spacing: .1em;
      text-transform: uppercase;
      margin-top: 6px;
    }

    .hero-scroll {
      position: absolute;
      bottom: 160px;
      right: 40px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      z-index: 3;
    }

    .hero-scroll span {
      font-size: .65rem;
      color: rgba(255, 255, 255, .4);
      letter-spacing: .15em;
      text-transform: uppercase;
      writing-mode: vertical-rl;
    }

    .hero-scroll-line {
      width: 1px;
      height: 60px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, .0), rgba(178, 10, 50, .8));
      animation: scrollLine 2s ease-in-out infinite;
    }

    @keyframes scrollLine {
      0% {
        height: 0;
        opacity: 0;
      }

      50% {
        height: 60px;
        opacity: 1;
      }

      100% {
        height: 60px;
        opacity: 0;
      }
    }

    @media(max-width:768px) {
      #hero {
        padding-top: calc(var(--notice-h) + 60px + 32px);
        min-height: 100svh;
      }

      .hero-content {
        padding-bottom: 24px;
      }

      .hero-tag {
        margin-bottom: 20px;
      }

      .hero-tag span {
        font-size: .65rem;
      }

      .hero-sub {
        font-size: .9rem;
        margin-bottom: 28px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn-primary,
      .hero-actions .btn-ghost {
        justify-content: center;
        padding: 14px 24px;
        font-size: .8rem;
      }

      .hero-scroll {
        display: none;
      }

      .hero-stats {
        margin-top: 24px;
      }

      .hero-stats .container {
        flex-wrap: wrap;
        display: block;
      }

      .hero-stat {
        flex: 0 0 50%;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, .1);
        padding: 14px 16px;
      }

      .hero-stat:first-child {
        border-top: none;
      }

      .hero-stat-num {
        font-size: 2rem;
      }
    }

    /* ─── SECTION COMMON ─── */
    section {
      padding: 120px 0;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .section-label::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--red);
    }

    .section-label span {
      font-size: .72rem;
      color: var(--red);
      letter-spacing: .2em;
      text-transform: uppercase;
      font-weight: 600;
    }

    .section-h2 {
      font-family: var(--ff-serif);
      font-size: clamp(2rem, 4vw, 3.6rem);
      font-weight: 300;
      line-height: 1.2;
      margin-bottom: 20px;
    }

    .section-h2 em {
      font-style: italic;
      color: var(--red);
    }

    .section-lead {
      font-size: 1.05rem;
      color: var(--text-m);
      line-height: 1.8;
      max-width: 560px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }

    .reveal.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-left {
      opacity: 0;
      transform: translateX(-40px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }

    .reveal-left.visible {
      opacity: 1;
      transform: none;
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(40px);
      transition: opacity .8s var(--ease), transform .8s var(--ease);
    }

    .reveal-right.visible {
      opacity: 1;
      transform: none;
    }

    /* ─── ÜBER UNS ─── */
    #about {
      background: var(--cream);
    }

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

    .about-left {}

    .about-pillars {
      display: flex;
      flex-direction: column;
      gap: 20px;
      margin-top: 40px;
    }

    .about-pillar {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 24px;
      background: var(--white);
      border-radius: 4px;
      border-left: 3px solid transparent;
      transition: border-color .3s, box-shadow .3s;
    }

    .about-pillar:hover {
      border-color: var(--red);
      box-shadow: 0 8px 32px rgba(107, 95, 88, .12);
    }

    .about-pillar-icon {
      width: 44px;
      height: 44px;
      background: rgba(178, 10, 50, .08);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.2rem;
    }

    .about-pillar-text h4 {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    .about-pillar-text p {
      font-size: .88rem;
      color: var(--text-m);
      line-height: 1.7;
    }

    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 40px;
    }

    .about-stat {
      background: var(--white);
      padding: 28px 24px;
      border-radius: 4px;
      text-align: center;
      border-bottom: 3px solid var(--red);
    }

    .about-stat-num {
      font-family: var(--ff-serif);
      font-size: 2.4rem;
      font-weight: 600;
      color: var(--red);
    }

    .about-stat-label {
      font-size: .78rem;
      color: var(--text-m);
      letter-spacing: .06em;
      margin-top: 4px;
    }

    .about-right {
      position: sticky;
      top: 100px;
    }

    .video-wrap {
      position: relative;
      width: 100%;
      padding-top: 56.25%;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(26, 22, 18, .25);
    }

    .video-wrap iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .about-quote {
      margin-top: 32px;
      padding: 28px 32px;
      background: var(--dark);
      border-radius: 4px;
      position: relative;
      overflow: hidden;
    }

    .about-quote::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-family: var(--ff-serif);
      font-size: 10rem;
      color: rgba(178, 10, 50, .12);
      line-height: 1;
      pointer-events: none;
    }

    .about-quote p {
      font-family: var(--ff-serif);
      font-size: 1.15rem;
      font-style: italic;
      color: rgba(255, 255, 255, .85);
      line-height: 1.7;
      position: relative;
      z-index: 1;
    }

    .about-cta {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-top: 32px;
      flex-wrap: wrap;
    }

    .about-phone {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--text-m);
      font-size: .9rem;
      text-decoration: none;
      transition: color .2s ease;
    }

    .about-phone:hover {
      color: var(--text);
    }

    .about-phone svg {
      color: var(--red);
    }

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

      .about-right {
        position: static;
      }
    }

    /* ─── PREIS ─── */
    #preis {
      background: var(--dark);
      overflow: hidden;
      position: relative;
    }

    #preis::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(178, 10, 50, .12) 0%, transparent 70%);
      pointer-events: none;
    }

    .preis-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .preis-header .section-label {
      justify-content: center;
    }

    .preis-header .section-h2 {
      color: var(--white);
    }

    .preis-header .section-lead {
      color: rgba(255, 255, 255, .6);
      margin: 0 auto;
    }

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

    .pricing-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 8px;
      padding: 48px 36px;
      position: relative;
      transition: border-color .3s, transform .3s;
    }

    .pricing-card:hover {
      border-color: rgba(178, 10, 50, .4);
      transform: translateY(-4px);
    }

    .pricing-card.featured {
      background: var(--red);
      border-color: var(--red);
    }

    .pricing-card.featured::before {
      content: 'EMPFOHLEN';
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--gold);
      color: var(--dark);
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: .15em;
      padding: 4px 16px;
      border-radius: 100px;
      white-space: nowrap;
    }

    .pricing-jaw {
      font-size: .72rem;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 16px;
    }

    .pricing-card.featured .pricing-jaw {
      color: rgba(255, 255, 255, .75);
    }

    .pricing-price {
      font-family: var(--ff-serif);
      font-size: 3.2rem;
      color: var(--white);
      font-weight: 600;
      line-height: 1;
      margin-bottom: 8px;
    }

    .pricing-price span {
      font-size: 1.2rem;
      font-family: var(--ff-sans);
      font-weight: 300;
    }

    .pricing-save {
      font-size: .78rem;
      color: var(--gold);
      margin-bottom: 32px;
    }

    .pricing-card.featured .pricing-save {
      color: rgba(255, 255, 255, .85);
    }

    .pricing-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 36px;
    }

    .pricing-features li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: rgba(255, 255, 255, .75);
    }

    .pricing-features li::before {
      content: '✓';
      width: 18px;
      height: 18px;
      background: rgba(255, 255, 255, .1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: .65rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .pricing-card.featured .pricing-features li::before {
      background: rgba(255, 255, 255, .25);
    }

    .btn-outline-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      border: 1px solid rgba(255, 255, 255, .3);
      color: var(--white);
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 500;
      border-radius: 2px;
      transition: all .25s;
      width: 100%;
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .1);
      border-color: var(--white);
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 14px 28px;
      background: var(--white);
      color: var(--red);
      font-size: .82rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      font-weight: 600;
      border-radius: 2px;
      transition: all .25s;
      width: 100%;
      border: none;
      cursor: pointer;
    }

    .btn-white:hover {
      background: var(--cream);
    }

    .preis-note {
      text-align: center;
      margin-top: 48px;
      font-size: .82rem;
      color: rgba(255, 255, 255, .4);
    }

    @media(max-width:900px) {
      .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
      }
    }

    /* ─── FALLSTUDIEN ─── */
    #fallstudien {
      background: var(--white);
    }

    .cases-header {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      margin-bottom: 56px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .cases-intro {
      max-width: 560px;
    }

    .cases-nav {
      display: flex;
      gap: 12px;
    }

    .cases-nav button {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      border: 1px solid rgba(107, 95, 88, .2);
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: var(--brown);
      transition: all .25s;
    }

    .cases-nav button:hover {
      background: var(--red);
      border-color: var(--red);
      color: var(--white);
    }

    .cases-slider {
      overflow: hidden;
      position: relative;
    }

    .cases-track {
      display: flex;
      gap: 24px;
      transition: transform .5s var(--ease);
    }

    .case-card {
      min-width: calc(33.333% - 16px);
      border-radius: 8px;
      overflow: hidden;
      background: var(--cream);
      position: relative;
    }

    @media(max-width:900px) {
      .case-card {
        min-width: calc(50% - 12px);
      }
    }

    @media(max-width:600px) {
      .case-card {
        min-width: 85%;
      }
    }

    .case-before-after {
      display: grid;
      grid-template-columns: 1fr 1fr;
      height: 260px;
      position: relative;
    }

    .case-img-side {
      position: relative;
      overflow: hidden;
    }

    .case-img-side img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease);
    }

    .case-card:hover .case-img-side img {
      transform: scale(1.04);
    }

    .case-label {
      position: absolute;
      bottom: 10px;
      left: 10px;
      font-size: .62rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 2px;
    }

    .case-label.before {
      background: rgba(26, 22, 18, .7);
      color: rgba(255, 255, 255, .8);
    }

    .case-label.after {
      background: var(--red);
      color: var(--white);
    }

    .case-divider {
      position: absolute;
      top: 0;
      left: 50%;
      width: 2px;
      background: var(--white);
      height: 100%;
      z-index: 2;
    }

    .case-body {
      padding: 24px;
    }

    .case-body h4 {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 8px;
    }

    .case-body p {
      font-size: .84rem;
      color: var(--text-m);
      line-height: 1.7;
    }

    .case-tag {
      display: inline-block;
      margin-top: 12px;
      font-size: .65rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--red);
      font-weight: 600;
    }

    /* ─── TEAM ─── */
    #team {
      background: var(--dark2);
    }

    .team-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .team-header .section-h2 {
      color: var(--white);
    }

    .team-header .section-label {
      justify-content: center;
    }

    .team-header p {
      color: rgba(255, 255, 255, .6);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.8;
      font-size: .95rem;
    }

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

    .team-card {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .07);
      border-radius: 8px;
      overflow: hidden;
      transition: border-color .3s, transform .3s;
    }

    .team-card:hover {
      border-color: rgba(178, 10, 50, .4);
      transform: translateY(-4px);
    }

    .team-photo {
      height: 320px;
      overflow: hidden;
      background: rgba(178, 10, 50, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 5rem;
      color: rgba(178, 10, 50, .25);
    }

    .team-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s var(--ease);
    }

    .team-card:hover .team-photo img {
      transform: scale(1.04);
    }

    .team-info {
      padding: 28px;
    }

    .team-name {
      font-family: var(--ff-serif);
      font-size: 1.35rem;
      color: var(--white);
      font-weight: 600;
      margin-bottom: 4px;
    }

    .team-role {
      font-size: .75rem;
      color: var(--red);
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 500;
      margin-bottom: 16px;
    }

    .team-bio {
      font-size: .84rem;
      color: rgba(255, 255, 255, .55);
      line-height: 1.7;
    }

    .team-facts {
      display: flex;
      gap: 20px;
      margin-top: 20px;
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, .08);
    }

    .team-fact {
      text-align: center;
      flex: 1;
    }

    .team-fact-num {
      font-family: var(--ff-serif);
      font-size: 1.4rem;
      color: var(--gold);
      font-weight: 600;
    }

    .team-fact-label {
      font-size: .65rem;
      color: rgba(255, 255, 255, .4);
      letter-spacing: .08em;
      margin-top: 2px;
    }

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

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

    /* ─── DIAGNOSE ─── */
    #diagnose {
      background: var(--cream);
    }

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

    .diagnose-visual {
      position: relative;
    }

    .diagnose-main-img {
      border-radius: 8px;
      overflow: hidden;
      height: 520px;
      background: var(--dark);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 32px 80px rgba(26, 22, 18, .2);
    }

    .diagnose-main-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .diagnose-badge {
      position: absolute;
      bottom: 32px;
      left: -32px;
      background: var(--red);
      color: var(--white);
      padding: 20px 28px;
      border-radius: 4px;
      box-shadow: 0 16px 40px rgba(178, 10, 50, .35);
    }

    .diagnose-badge strong {
      display: block;
      font-family: var(--ff-serif);
      font-size: 1.8rem;
      font-weight: 700;
    }

    .diagnose-badge span {
      font-size: .72rem;
      letter-spacing: .1em;
      text-transform: uppercase;
      opacity: .85;
    }

    .diagnose-steps {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 40px;
    }

    .diagnose-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .step-num {
      width: 40px;
      height: 40px;
      background: var(--red);
      color: var(--white);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--ff-serif);
      font-weight: 600;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .step-content h4 {
      font-family: var(--ff-serif);
      font-size: 1.1rem;
      font-weight: 600;
      margin-bottom: 6px;
    }

    .step-content p {
      font-size: .88rem;
      color: var(--text-m);
      line-height: 1.7;
    }

    .diagnose-advantage {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-top: 32px;
    }

    .adv-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: .88rem;
      color: var(--text-m);
    }

    .adv-item::before {
      content: '';
      width: 6px;
      height: 6px;
      background: var(--red);
      border-radius: 50%;
      flex-shrink: 0;
    }

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

      .diagnose-badge {
        left: 20px;
      }
    }

    /* ─── ERFAHRUNGSBERICHTE ─── */
    #erfahrungen {
      background: var(--white);
      overflow: hidden;
    }

    .reviews-header {
      text-align: center;
      margin-bottom: 64px;
    }

    .reviews-header .section-label {
      justify-content: center;
    }

    .rating-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--cream);
      padding: 10px 20px;
      border-radius: 100px;
      margin-bottom: 24px;
    }

    .stars {
      color: #f59e0b;
      font-size: 1rem;
      letter-spacing: 2px;
    }

    .rating-score {
      font-family: var(--ff-serif);
      font-size: 1.2rem;
      font-weight: 700;
    }

    .reviews-track-wrap {
      position: relative;
    }

    .reviews-track-wrap::before,
    .reviews-track-wrap::after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }

    .reviews-track-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--white), transparent);
    }

    .reviews-track-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--white), transparent);
    }

    .reviews-ticker {
      display: flex;
      gap: 24px;
      animation: ticker 30s linear infinite;
      width: max-content;
    }

    .reviews-ticker:hover {
      animation-play-state: paused;
    }

    @keyframes ticker {
      from {
        transform: translateX(0)
      }

      to {
        transform: translateX(-50%)
      }
    }

    .review-card {
      width: 360px;
      background: var(--cream);
      border-radius: 8px;
      padding: 32px;
      flex-shrink: 0;
      border-left: 3px solid var(--red);
    }

    .review-stars {
      color: #f59e0b;
      margin-bottom: 16px;
      font-size: .9rem;
    }

    .review-text {
      font-family: var(--ff-serif);
      font-size: 1rem;
      font-style: italic;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 20px;
    }

    .review-author {
      font-size: .78rem;
      font-weight: 600;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--text-m);
    }

    .reviews-cta {
      text-align: center;
      margin-top: 56px;
    }

    .reviews-cta p {
      color: var(--text-m);
      font-size: .95rem;
      margin-bottom: 20px;
    }

    /* ─── KONTAKT ─── */
    #kontakt {
      background: var(--dark);
      position: relative;
      overflow: hidden;
    }

    #kontakt::before {
      content: '';
      position: absolute;
      bottom: -300px;
      left: -200px;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(178, 10, 50, .1) 0%, transparent 70%);
      pointer-events: none;
    }

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

    .kontakt-left .section-h2 {
      color: var(--white);
    }

    .kontakt-left .section-lead {
      color: rgba(255, 255, 255, .6);
    }

    .kontakt-info {
      display: flex;
      flex-direction: column;
      gap: 24px;
      margin-top: 40px;
    }

    .kontakt-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
    }

    .kontakt-icon {
      width: 44px;
      height: 44px;
      background: rgba(178, 10, 50, .15);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 1.1rem;
    }

    .kontakt-item-text h4 {
      color: var(--white);
      font-size: .9rem;
      font-weight: 500;
      margin-bottom: 4px;
    }

    .kontakt-item-text p,
    .kontakt-item-text a {
      color: rgba(255, 255, 255, .55);
      font-size: .88rem;
      line-height: 1.6;
      transition: color .25s;
    }

    .kontakt-item-text a:hover {
      color: var(--red);
    }

    .kontakt-social {
      display: flex;
      gap: 12px;
      margin-top: 36px;
    }

    .social-btn {
      width: 44px;
      height: 44px;
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .6);
      font-size: .95rem;
      transition: all .25s;
    }

    .social-btn:hover {
      border-color: var(--red);
      background: var(--red);
      color: var(--white);
    }

    .form-wrap {
      background: rgba(255, 255, 255, .04);
      border: 1px solid rgba(255, 255, 255, .08);
      border-radius: 8px;
      padding: 48px;
    }

    .form-title {
      font-family: var(--ff-serif);
      font-size: 1.8rem;
      color: var(--white);
      font-weight: 300;
      margin-bottom: 8px;
    }

    .form-sub {
      font-size: .88rem;
      color: rgba(255, 255, 255, .5);
      margin-bottom: 32px;
    }

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

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

    .form-group label {
      font-size: .75rem;
      color: rgba(255, 255, 255, .55);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 4px;
      padding: 14px 16px;
      color: var(--white);
      font-size: .9rem;
      transition: border-color .25s;
      outline: none;
    }

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

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

    .form-group select {
      appearance: none;
      cursor: pointer;
      color: rgba(255, 255, 255, .55);
    }

    .form-group select option {
      background: var(--dark2);
    }

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

    .form-check {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 24px;
    }

    .form-check input[type=checkbox] {
      width: 16px;
      height: 16px;
      accent-color: var(--red);
      margin-top: 2px;
      flex-shrink: 0;
      cursor: pointer;
    }

    .form-check label {
      font-size: .82rem;
      color: rgba(255, 255, 255, .5);
      line-height: 1.5;
      cursor: pointer;
    }

    .form-check label a {
      color: var(--gold);
      text-decoration: underline;
    }

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

    @media(max-width:600px) {
      .form-wrap {
        padding: 28px 24px;
      }

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

    /* ─── MAP STRIP ─── */
    .map-strip {
      height: 300px;
      background: var(--dark2);
      position: relative;
      overflow: hidden;
    }

    .map-strip iframe {
      width: 100%;
      height: 100%;
      border: none;
      filter: grayscale(1) invert(1) contrast(.8);
      opacity: .6;
    }

    .map-overlay {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      pointer-events: none;
    }

    .map-pin {
      background: var(--red);
      color: var(--white);
      padding: 14px 24px;
      border-radius: 4px;
      font-size: .85rem;
      font-weight: 500;
      box-shadow: 0 8px 32px rgba(178, 10, 50, .5);
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding-top: 80px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 60px;
      border-bottom: 1px solid rgba(255, 255, 255, .06);
    }

    .footer-brand .nav-logo {
      font-size: 1.6rem;
      margin-bottom: 20px;
    }

    .footer-brand p {
      font-size: .88rem;
      color: rgba(255, 255, 255, .45);
      line-height: 1.8;
      max-width: 280px;
    }

    .footer-brand .kontakt-social {
      margin-top: 24px;
    }

    .footer-col h5 {
      font-size: .72rem;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 20px;
      font-weight: 600;
    }

    .footer-col ul {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col ul a {
      font-size: .88rem;
      color: rgba(255, 255, 255, .55);
      transition: color .25s;
    }

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

    .footer-col .kontakt-item {
      gap: 10px;
    }

    .footer-col .kontakt-icon {
      width: 32px;
      height: 32px;
      font-size: .85rem;
    }

    .footer-col .kontakt-item-text p,
    .footer-col .kontakt-item-text a {
      font-size: .84rem;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 24px 0;
      flex-wrap: wrap;
      gap: 12px;
    }

    .footer-bottom p {
      font-size: .78rem;
      color: rgba(255, 255, 255, .3);
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, .5);
      transition: color .25s;
    }

    .footer-bottom a:hover {
      color: var(--gold);
    }

    .footer-credits {
      font-size: .75rem;
      color: rgba(255, 255, 255, .25);
    }

    .footer-credits a {
      color: var(--gold-l);
    }

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

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

      .footer-bottom {
        flex-direction: column;
        text-align: center;
      }
    }

    /* ─── WHATSAPP FLOAT ─── */
    .wa-float {
      position: fixed;
      bottom: 32px;
      right: 32px;
      z-index: 500;
      width: 56px;
      height: 56px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 32px rgba(37, 211, 102, .4);
      transition: transform .25s, box-shadow .25s;
      animation: waPulse 3s ease-in-out infinite;
    }

    .wa-float:hover {
      transform: scale(1.1);
      box-shadow: 0 12px 40px rgba(37, 211, 102, .5);
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .4);
      }

      50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, 0);
      }
    }

    .wa-float svg {
      width: 28px;
      height: 28px;
      fill: white;
    }

    /* notice styles are defined above near NAV */

    /* ─── MISC ANIMATIONS ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px)
      }

      to {
        opacity: 1;
        transform: none
      }
    }

    .stagger>* {
      opacity: 0;
      animation: fadeUp .7s var(--ease) forwards;
    }

    .stagger>*:nth-child(1) {
      animation-delay: .1s
    }

    .stagger>*:nth-child(2) {
      animation-delay: .2s
    }

    .stagger>*:nth-child(3) {
      animation-delay: .3s
    }

    .stagger>*:nth-child(4) {
      animation-delay: .4s
    }
    /* ═══════════════════════════════════════════════════════════════
       INNER PAGE LAYOUT
    ═══════════════════════════════════════════════════════════════ */

    /* ─── Inner Nav (links → homepage sections) ─── */
    #page-navbar {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 40px;
      height: 72px;
      transition: background .4s var(--ease), box-shadow .4s;
    }

    #page-navbar.scrolled {
      background: rgba(26,22,18,.97);
      box-shadow: 0 2px 24px rgba(0,0,0,.35);
    }

    /* ─── Page Hero ─── */
    .page-hero {
      position: relative;
      min-height: 380px;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: 64px;
      overflow: hidden;
      background: var(--dark);
    }

    .page-hero-bg {
      position: absolute;
      inset: 0;
    }

    .page-hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .page-hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(26,22,18,.55) 0%,
        rgba(26,22,18,.82) 60%,
        rgba(26,22,18,.97) 100%
      );
    }

    .page-hero-body {
      position: relative;
      z-index: 2;
    }

    nav.page-breadcrumb {
      position: static;
      top: auto;
      left: auto;
      right: auto;
      height: auto;
      padding: 0;
      z-index: auto;
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      font-family: var(--ff-sans);
      letter-spacing: .08em;
      text-transform: uppercase;
      color: rgba(255,255,255,.5);
      margin-bottom: 20px;
    }

    .page-breadcrumb a {
      color: rgba(255,255,255,.5);
      transition: color .2s;
    }

    .page-breadcrumb a:hover {
      color: var(--gold);
    }

    .page-breadcrumb span {
      color: var(--gold);
    }

    .page-breadcrumb-sep {
      color: rgba(255,255,255,.3);
    }

    .page-breadcrumb-content {
      display: inline-flex;
      width: fit-content;
      margin: 0 0 24px;
      font-size: .9rem;
      letter-spacing: 0;
      text-transform: none;
      color: var(--text-m);
    }

    .page-breadcrumb-content a {
      color: var(--text-m);
    }

    .page-breadcrumb-content a:hover {
      color: var(--red);
    }

    .page-breadcrumb-content span {
      color: var(--dark);
    }

    .page-breadcrumb-content .page-breadcrumb-sep {
      color: var(--text-m);
    }

    .page-hero h1 {
      font-family: var(--ff-serif);
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 300;
      color: var(--white);
      line-height: 1.1;
      max-width: 700px;
    }

    .page-hero h1 em {
      font-style: italic;
      color: var(--gold);
    }

    .page-hero-sub {
      margin-top: 16px;
      font-size: 1rem;
      color: rgba(255,255,255,.6);
      max-width: 560px;
      line-height: 1.65;
    }

    /* ─── Page Content ─── */
    .page-content {
      background: var(--white);
      padding: 80px 0;
    }

    .page-content-cream {
      background: var(--cream);
      padding: 80px 0;
    }

    .cms-page-content {
      max-width: 900px;
      margin: 0 auto;
      color: var(--dark);
      line-height: 1.75;
      font-size: 1.05rem;
    }

    .cms-page-content h2,
    .cms-page-content h3,
    .cms-page-content h4 {
      font-family: var(--ff-serif);
      color: var(--dark);
      line-height: 1.25;
      margin-top: 2rem;
      margin-bottom: .8rem;
    }

    .cms-page-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      margin-top: 0;
    }

    .cms-page-content h3 {
      font-size: clamp(1.35rem, 2.3vw, 1.75rem);
    }

    .cms-page-content p {
      margin: 0 0 1rem;
      color: var(--text-d);
    }

    .cms-page-content ul,
    .cms-page-content ol {
      margin: 0 0 1.2rem 1.3rem;
      color: var(--text-d);
    }

    .cms-page-content li {
      margin-bottom: .5rem;
    }

    .cms-page-content strong {
      color: var(--dark);
      font-weight: 600;
    }

    .cms-page-content a {
      color: var(--red);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .cms-page-content a:hover {
      color: #8e0a26;
    }

    .cms-page-content blockquote {
      border-left: 3px solid var(--red);
      padding-left: 1rem;
      margin: 1.2rem 0;
      color: var(--text-m);
      font-style: italic;
    }

    /* ─── Inner CTA strip ─── */
    .page-cta-strip {
      background: var(--dark);
      padding: 64px 0;
    }

    .page-cta-strip .container {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .page-cta-strip h3 {
      font-family: var(--ff-serif);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 300;
      color: var(--white);
    }

    .page-cta-strip h3 em {
      color: var(--gold);
      font-style: italic;
    }

    @media(max-width:768px) {
      #page-navbar {
        padding: 0 20px;
      }

      .page-hero {
        min-height: 300px;
        padding-bottom: 48px;
      }

      .page-cta-strip .container {
        flex-direction: column;
        text-align: center;
      }
    }
