  /* ── FONTS ── */
  @font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Cormorant Garamond';
    src: url('fonts/CormorantGaramond-MediumItalic.ttf') format('truetype');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'DM Sans';
    src: url('fonts/DMSans-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }

/*
 * ═══════════════════════════════════════════════════════
 * vivienmast.com — Gemeinsames CSS (alle Klassen mit vm- Prefix)
 * In Webflow: Site Settings → Custom Code → Head einfügen
 * ═══════════════════════════════════════════════════════
 */

  :root {
    /* ═══════════════════════════════════════
       FARBPALETTE — hier austauschen für
       ein komplett neues Farbschema
       ═══════════════════════════════════════ */

    /* Akzent 1: Staubiges Rosé – warm, weich, einladend */
    --accent: #C4788A;
    --accent-light: #D4909F;
    --accent-pale: #FAF0F2;

    /* Akzent 2: Blaugrau – ruhig, modern, frisch */
    --structure: #8FA5B2;
    --structure-dark: #3E5A6A;
    --structure-pale: #EDF2F5;

    /* Neutrale Basis */
    --neutral: #F0EBE8;
    --bg: #FDFAF9;
    --fg: #1E2028;
    --fg-soft: #3D404D;
    --fg-muted: #8A8D99;
    --rule: #D8D0CE;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--fg);
    font-size: 17px;
    line-height: 1.65;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  /* ── LINKS ── */
  /* Only style links in body text, not nav/buttons */
  p a, li a { color: var(--accent); text-decoration: underline; }
  p a:hover, li a:hover { color: var(--accent-light); }

  /* ── TYPOGRAPHY ── */
  h1, h2, h3, .vm-serif {
    font-family: 'Cormorant Garamond', Georgia, serif;
  }
  h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
  h2 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 500; line-height: 1.2; }
  h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); font-weight: 500; }
  p { max-width: 62ch; }

  /* ── LAYOUT ── */
  .vm-container { max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }
  .vm-container--narrow { max-width: 780px; margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 4rem); }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 clamp(1.5rem, 5vw, 4rem);
    height: 3.8rem;
    display: flex; justify-content: space-between; align-items: center;
    background: var(--structure-dark);
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: box-shadow 0.3s;
  }
  .vm-nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem; font-weight: 500;
    color: var(--bg);
    text-decoration: none; letter-spacing: 0.02em;
  }
  .vm-nav-links { display: flex; gap: 2.2rem; list-style: none; align-items: center; }
  .vm-nav-links a {
    font-size: 0.82rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,247,243,0.7);
    text-decoration: none; transition: color 0.2s;
    padding: 0.8rem 0.3rem;
  }
  .vm-nav-links a:hover { color: var(--accent-light); }
  .vm-nav-links a.nav-active { color: var(--bg); }

  /* Dropdown */
  .vm-nav-dropdown { position: relative; }
  .vm-nav-dropdown-toggle {
    font-size: 0.82rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,247,243,0.7);
    background: none; border: none;
    cursor: pointer; padding: 0.8rem 0.3rem;
    display: flex; align-items: center; gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    transition: color 0.2s;
  }
  .vm-nav-dropdown-toggle:hover { color: var(--accent-light); }
  .vm-nav-dropdown-toggle::after {
    content: '▾'; font-size: 0.65rem; transition: transform 0.2s;
  }
  .vm-nav-dropdown-menu {
    position: absolute; top: 100%; left: 50%;
    transform: translateX(-50%);
    background: var(--structure-dark);
    border: 1px solid rgba(255,255,255,0.12);
    min-width: 180px;
    padding: 0.8rem 0 0.5rem;
    margin-top: 0;
    opacity: 0; pointer-events: none;
    transition: opacity 0.18s;
  }
  .vm-nav-dropdown-menu::before {
    content: '';
    position: absolute; top: -2.5rem; left: -1rem; right: -1rem; height: 2.5rem;
  }
  .vm-nav-dropdown:hover .vm-nav-dropdown-menu {
    opacity: 1; pointer-events: auto;
  }
  .vm-nav-dropdown-menu a {
    display: block; padding: 0.75rem 1.6rem;
    font-size: 0.82rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,247,243,0.7);
    text-decoration: none; transition: color 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .vm-nav-dropdown-menu a:hover {
    color: var(--bg); background: rgba(255,255,255,0.06);
  }
  .vm-nav-back {
    font-size: 0.82rem; letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,247,243,0.7);
    text-decoration: none; transition: color 0.2s;
  }
  .vm-nav-back:hover { color: var(--accent-light); }

  /* ── BUTTONS ── */
  .vm-btn {
    display: inline-block; padding: 0.85rem 1.8rem;
    font-size: 0.82rem; letter-spacing: 0.08em;
    text-transform: uppercase; text-decoration: none;
    border-radius: 1px; transition: all 0.22s;
    cursor: pointer; border: none;
  }
  .vm-btn-primary { background: var(--accent); color: white; }
  .vm-btn-primary:hover { background: var(--accent-light); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,120,138,0.22); }
  .vm-btn-outline {
    background: transparent; color: var(--structure-dark);
    border: 1.5px solid var(--structure-dark);
  }
  .vm-btn-outline:hover { background: var(--structure-dark); color: var(--bg); transform: translateY(-1px); }
  /* Outline button for dark backgrounds */
  .vm-btn-outline-light {
    background: transparent;
    color: var(--bg);
    border: 1.5px solid var(--bg);
  }
  .vm-btn-outline-light:hover { background: var(--bg); color: var(--structure-dark); transform: translateY(-1px); }
  .vm-btn-light { background: var(--bg); color: var(--fg); }
  .vm-btn-light:hover { background: var(--neutral); transform: translateY(-1px); }

  /* ── SECTION BASE ── */
  section { padding: clamp(4rem, 8vw, 7rem) 0; }
  .vm-section-kicker {
    font-size: 0.75rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--fg-muted);
    margin-bottom: 1rem;
  }

  /* ── HERO (Startseite) ── */
  .vm-hero {
    position: relative; min-height: 90vh;
    background: var(--structure-pale);
    display: grid; grid-template-columns: 1fr 1fr;
    align-items: center; gap: 2rem; overflow: hidden;
    padding: clamp(7rem, 12vw, 10rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 6vw, 6rem);
  }
  .vm-hero-inner { position: relative; z-index: 1; }
  .vm-hero-kicker {
    font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--structure-dark);
    margin-bottom: 1.8rem;
    display: flex; align-items: center; gap: 0.8rem;
  }
  .vm-hero-kicker::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--structure-dark); }
  .vm-hero h1 { color: var(--fg); margin-bottom: 1.8rem; }
  .vm-hero h1 .vm-line-accent { color: var(--structure-dark); display: block; }
  .vm-hero h1 em { font-style: italic; color: var(--accent); }
  .vm-hero-sub {
    font-size: 1.05rem; color: var(--fg-soft);
    max-width: 48ch; margin-bottom: 2.8rem; line-height: 1.75;
  }
  .vm-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
  .vm-hero-rocket-wrap {
    display: flex; align-items: flex-start; justify-content: flex-start;
    position: relative; z-index: 1;
  }
  .vm-hero-combined {
    width: clamp(120px, 16vw, 220px);
    animation: rocketFloat 5s ease-in-out infinite;
    pointer-events: none;
    position: relative; top: 25vh;
  }
  @keyframes rocketFloat {
    0%, 100% { transform: translateX(4vw) translateY(0px); }
    50% { transform: translateX(4vw) translateY(-10px); }
  }

  /* ── WORUM ES GEHT ── */
  .vm-worum { background: var(--bg); padding: clamp(4rem, 7vw, 6rem) 0; }
  .vm-worum-inner { max-width: 680px; }
  .vm-worum h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); margin-bottom: 1.5rem; color: var(--fg); }
  .vm-worum-text p { color: var(--fg-soft); margin-bottom: 1.1rem; max-width: none; font-size: 1.05rem; line-height: 1.8; }

  /* ── ANGEBOTE ── */
  .vm-angebote { background: var(--structure-pale); }
  .vm-angebote-grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 2px; margin-top: 2rem; background: rgba(122,158,142,0.2);
  }
  .vm-angebot-card {
    background: var(--structure-pale); padding: 2.5rem 2rem;
    transition: background 0.25s; text-decoration: none;
    color: inherit; display: block;
  }
  .vm-angebot-card:hover { background: var(--bg); }
  .vm-angebot-card--highlight { background: var(--structure-pale); }
  .vm-angebot-card--highlight:hover { background: var(--bg); }
  .vm-angebot-nr {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem; font-weight: 400;
    color: var(--accent); opacity: 0.35; line-height: 1; margin-bottom: 1.2rem;
  }
  .vm-angebot-card h3 { margin-bottom: 0.8rem; font-size: 1.3rem; }
  .vm-angebot-card p { font-size: 0.93rem; color: var(--fg-soft); max-width: none; line-height: 1.7; }
  .vm-angebot-mehr { display: inline-block; margin-top: 1.2rem; font-size: 0.82rem; color: var(--structure-dark); letter-spacing: 0.04em; }
  .vm-angebot-card:hover .vm-angebot-mehr { color: var(--accent); }

  /* ── SUPERVISIONSGRUPPE HIGHLIGHT ── */
  .vm-gruppe { background: var(--structure-dark); color: var(--bg); position: relative; overflow: hidden; }
  .vm-gruppe::before {
    content: ''; position: absolute; top: -40%; right: -20%;
    width: 60%; aspect-ratio: 1; border-radius: 50%;
    background: radial-gradient(circle, rgba(143,165,178,0.2) 0%, transparent 70%);
    pointer-events: none;
  }
  .vm-gruppe-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .vm-gruppe h2 { color: var(--bg); margin-bottom: 1.2rem; }
  .vm-gruppe h2 em { font-style: italic; color: var(--structure); }
  .vm-gruppe p { color: rgba(250,247,243,0.78); max-width: none; margin-bottom: 1.2rem; }
  .vm-gruppe-details {
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px; padding: 2rem 2.2rem;
  }
  .vm-gruppe-details h3 {
    font-family: 'Cormorant Garamond', serif; font-size: 1.3rem;
    color: var(--bg); margin-bottom: 1.5rem; font-weight: 500;
  }
  .vm-gruppe-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.2rem; }
  .vm-gruppe-list li { padding-left: 1.2rem; position: relative; font-size: 0.93rem; color: rgba(250,247,243,0.8); line-height: 1.6; }
  .vm-gruppe-list li::before { content: '→'; position: absolute; left: 0; color: var(--accent); }
  .vm-detail-row { display: flex; gap: 1rem; padding: 0.9rem 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.92rem; }
  .vm-detail-row:last-child { border-bottom: none; }
  .vm-detail-label { color: rgba(250,247,243,0.5); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; min-width: 6rem; padding-top: 0.1rem; }
  .vm-detail-value { color: var(--bg); }

  /* ── TESTIMONIALS ── */
  .vm-testimonials { background: var(--accent-pale); padding: clamp(4rem, 7vw, 6rem) 0; }
  .vm-testimonial-slider { position: relative; }
  .vm-testimonial-track { overflow: hidden; }
  .vm-testimonial-slide { display: none; animation: fadeUp 0.5s ease both; }
  .vm-testimonial-slide.active { display: block; }
  .vm-testimonial-slide blockquote {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 2rem); font-style: italic;
    line-height: 1.5; color: var(--fg); max-width: 68ch;
    position: relative; padding-left: 2rem;
  }
  .vm-testimonial-slide blockquote::before {
    content: '"'; position: absolute; left: -0.2rem; top: -0.3rem;
    font-size: 5rem; color: var(--accent); opacity: 0.2; font-style: normal; line-height: 1;
  }
  .vm-testimonial-attr { margin-top: 1.2rem; font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--fg-muted); padding-left: 2rem; }
  .vm-testimonial-nav { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; padding-left: 2rem; }
  .vm-testimonial-btn {
    background: none; border: 1.5px solid var(--fg-muted); color: var(--fg-soft);
    width: 2.2rem; height: 2.2rem; border-radius: 50%; cursor: pointer;
    font-size: 0.9rem; display: flex; align-items: center; justify-content: center; transition: all 0.2s;
  }
  .vm-testimonial-btn:hover { border-color: var(--accent); color: var(--accent); }
  .vm-testimonial-dots { display: flex; gap: 0.5rem; }
  .vm-testimonial-dot {
    width: 6px; height: 6px; border-radius: 50%; background: var(--fg-muted);
    opacity: 0.4; cursor: pointer; transition: all 0.2s; border: none;
  }
  .vm-testimonial-dot.active { opacity: 1; background: var(--accent); }

  /* ── ÜBER MICH (Startseite) ── */
  .vm-ueber { background: var(--structure-pale); }
  .vm-ueber-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 5rem; align-items: start; }
  .vm-ueber-image { aspect-ratio: 3/4; border-radius: 1px; position: relative; overflow: hidden; }
  .vm-ueber-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
  .vm-ueber-image-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--structure-pale) 0%, var(--structure) 100%); }
  .vm-ueber-text { padding-top: 0.5rem; }
  .vm-ueber-text h2 { margin-bottom: 1.5rem; }
  .vm-ueber-text p { color: var(--fg-soft); margin-bottom: 1.2rem; max-width: 55ch; }
  .vm-ueber-credentials { display: flex; flex-direction: column; gap: 0.6rem; margin-top: 2.2rem; padding-top: 2rem; border-top: 1px solid var(--rule); }
  .vm-credential { font-size: 0.82rem; color: var(--fg-muted); display: flex; align-items: baseline; gap: 0.8rem; }
  .vm-credential::before { content: '–'; color: var(--accent); flex-shrink: 0; }

  /* ── KONTAKT ── */
  .vm-kontakt { background: var(--fg); color: var(--bg); padding: clamp(5rem, 10vw, 8rem) 0; text-align: center; }
  .vm-kontakt h2 { color: var(--bg); margin-bottom: 1.2rem; }
  .vm-kontakt h2 em { font-style: italic; color: var(--structure); }
  .vm-kontakt p { color: rgba(250,247,243,0.7); margin: 0 auto 2.5rem; }
  .vm-kontakt-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
  .vm-kontakt-sub { margin-top: 3rem; font-size: 0.82rem; color: rgba(250,247,243,0.35); letter-spacing: 0.06em; }

  /* ── PAGE HERO (Unterseiten) ── */
  .vm-page-hero {
    background: var(--structure-dark);
    padding: clamp(7rem, 12vw, 9rem) clamp(1.5rem, 5vw, 4rem) clamp(4rem, 6vw, 6rem);
    position: relative; overflow: hidden;
  }
  .vm-page-hero-kicker {
    font-size: 0.78rem; letter-spacing: 0.12em;
    text-transform: uppercase; color: rgba(250,247,243,0.5);
    margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.8rem;
  }
  .vm-page-hero-kicker::before { content: ''; display: block; width: 2rem; height: 1px; background: rgba(250,247,243,0.3); }
  .vm-page-hero h1 { color: var(--bg); margin-bottom: 1.5rem; }
  .vm-page-hero h1 em { font-style: italic; color: var(--accent-light); }
  .vm-page-hero-sub { font-size: 1.1rem; color: rgba(250,247,243,0.75); max-width: 54ch; line-height: 1.75; }
  .vm-page-hero-grid { display: grid; grid-template-columns: 3fr 2fr; gap: 5rem; align-items: center; }
  .vm-page-hero-image { aspect-ratio: 3/4; overflow: hidden; border-radius: 2px; }
  .vm-page-hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }

  /* ── FOOTER ── */
  footer {
    background: var(--fg);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 2rem clamp(1.5rem, 5vw, 4rem);
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.78rem; color: rgba(250,247,243,0.3); letter-spacing: 0.04em;
  }
  footer a { color: rgba(250,247,243,0.4); text-decoration: none; }
  footer a:hover { color: rgba(250,247,243,0.7); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
  .reveal { opacity: 1; transform: none; transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: translateY(0); }


  /* ── MOBILE NAV ── */
  .vm-nav-logo-mobile { display: none; }
  .vm-nav-rakete { height: 3rem; width: auto; }
  .vm-burger { display: none; }
  .vm-mobile-menu { display: none; }

  @media (max-width: 768px) {
    /* Hide desktop elements */
    .vm-nav-logo { display: none; }
    .vm-nav-links { display: none; }

    /* Show mobile elements */
    .vm-nav-logo-mobile { display: flex; align-items: center; }
    .vm-burger {
      display: flex; flex-direction: column; justify-content: space-between;
      width: 1.5rem; height: 1.1rem;
      background: none; border: none; cursor: pointer; padding: 0;
    }
    .vm-burger span {
      display: block; width: 100%; height: 2px;
      background: var(--bg); border-radius: 2px;
      transition: transform 0.25s, opacity 0.25s;
    }
    /* Burger open state */
    .vm-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .vm-burger.open span:nth-child(2) { opacity: 0; }
    .vm-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* Mobile menu overlay */
    .vm-mobile-menu {
      display: flex; flex-direction: column;
      position: fixed; top: 3.8rem; left: 0; right: 0; bottom: 0;
      background: var(--structure-dark);
      padding: 2rem 2rem;
      transform: translateX(100%);
      transition: transform 0.3s ease;
      z-index: 99;
      overflow-y: auto;
    }
    .vm-mobile-menu.open {
      transform: translateX(0);
    }
    .vm-mobile-menu-name {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.3rem; font-weight: 500;
      color: var(--bg); opacity: 0.5;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255,255,255,0.1);
      text-decoration: none;
      display: block;
    }
    .vm-mobile-menu-name:hover { opacity: 0.8; }
    .vm-mobile-link {
      font-size: 1.1rem; letter-spacing: 0.05em;
      color: var(--bg); text-decoration: none;
      padding: 0.9rem 0;
      border-bottom: 1px solid rgba(255,255,255,0.08);
      transition: color 0.2s;
    }
    .vm-mobile-link:hover { color: var(--accent-light); }
    .vm-mobile-label {
      font-size: 0.72rem; letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(250,247,243,0.4);
      padding: 1.2rem 0 0.4rem;
    }
    .vm-mobile-link--indented {
      padding-left: 1rem;
    }
    .vm-mobile-divider {
      height: 1px; background: rgba(255,255,255,0.15);
      margin: 0.5rem 0;
    }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 400px) {
    .vm-page-hero h1, .vm-hero h1 {
      overflow-wrap: break-word;
      hyphens: auto;
    }
  }

  @media (max-width: 860px) {
    .vm-hero { grid-template-columns: 1fr; }
    .vm-hero-rocket-wrap { display: none; }
    .vm-angebote-grid { grid-template-columns: 1fr; background: none; gap: 1px; }
    .vm-gruppe-inner { grid-template-columns: 1fr; gap: 3rem; }
    .vm-ueber-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .vm-page-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    nav { padding: 0 1.5rem; }
    .vm-nav-links { gap: 1.5rem; }
  }
