
  :root {
    --black: #1a1a1a;
    --white: #ffffff;
    --khaki: #b5b58d;
    --khaki-light: #caca9e;
    --gray-light: #f5f5f3;
    --gray-mid: #e4e4e0;
    --text-secondary: #6b6b6b;
    --nav-height: 72px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--black);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-height);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 52px;
    transition: background 0.4s, box-shadow 0.4s;
  }
  nav.scrolled {
    background: rgba(26,26,26,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(255,255,255,0.07);
  }
  nav { background: transparent; }
  nav .nav-logo { color: var(--white); }
  nav .nav-logo span { color: var(--khaki); }
  nav .nav-links a { color: rgba(255,255,255,0.85); font-weight: 600; }
  nav .nav-links a:hover { color: var(--white); }
  nav .hamburger span { background: var(--white); }
  .nav-logo {
    font-size: clamp(17px, 1.4vw, 22px); font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; text-decoration: none; color: var(--white);
  }
  .nav-logo span { color: var(--khaki); }
  .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
  .nav-links a {
    font-size: clamp(12px, 1vw, 15px); font-weight: 600; letter-spacing: 0.1em;
    text-transform: uppercase; text-decoration: none;
    color: rgba(255,255,255,0.85); transition: color 0.2s;
  }
  .nav-links a:hover { color: var(--white); }
  .nav-cta {
    color: var(--black) !important;
    background: var(--khaki); padding: 10px 22px;
    transition: background 0.2s !important;
  }
  .nav-cta:hover { background: var(--khaki-light) !important; }
  .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; transition: transform 0.35s ease; }
  .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--white); transition: all 0.3s; }
  .hamburger.active { transform: rotate(90deg); }
  .mobile-menu {
    display: flex; flex-direction: column; gap: 24px;
    position: fixed; top: var(--nav-height); left: 0; right: 0;
    background: #111; z-index: 99;
    max-height: 0; overflow: hidden; opacity: 0;
    padding: 0 52px;
    transition: max-height 0.4s ease, opacity 0.3s ease, padding 0.35s ease;
  }
  .mobile-menu.open { max-height: 400px; opacity: 1; padding: 32px 52px; }
  .mobile-menu a {
    font-size: 14px; letter-spacing: 0.1em; text-transform: uppercase;
    text-decoration: none; color: rgba(255,255,255,0.65); transition: color 0.2s;
  }
  .mobile-menu a:hover { color: var(--white); }

  /* ─── HERO ─── */
  #hero {
    position: relative;
    height: 100vh; min-height: 640px;
    overflow: hidden;
    display: flex; align-items: flex-end;
    background: #0a0a0a;
  }

  .hero-slides { position: absolute; inset: 0; }
  .hero-slide {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    opacity: 0;
    filter: grayscale(1) contrast(1.1) brightness(0.95);
    animation: imgFade 30s ease-in-out infinite, imgZoom 30s linear infinite;
  }
  .hero-slide:nth-child(1) { opacity: 1; }
  .hero-slide:nth-child(2) { animation-delay: 6s; }
  .hero-slide:nth-child(3) { animation-delay: 12s; }
  .hero-slide:nth-child(4) { animation-delay: 18s; }
  .hero-slide:nth-child(5) { animation-delay: 24s; }

  @keyframes imgFade {
    0%   { opacity: 0; }
    3%   { opacity: 1; }
    17%  { opacity: 1; }
    20%  { opacity: 0; }
    100% { opacity: 0; }
  }
  @keyframes imgZoom {
    0%   { transform: scale(1.0); }
    20%  { transform: scale(1.1); }
    21%  { transform: scale(1.0); }
    100% { transform: scale(1.0); }
  }

  .hero-overlay-dark {
    position: absolute; inset: 0;
    background: linear-gradient(
      105deg,
      rgba(10,10,10,0.75) 0%,
      rgba(10,10,10,0.45) 55%,
      rgba(10,10,10,0.1) 100%
    );
    z-index: 1;
  }

  /* Content */
  .hero-content {
    position: relative; z-index: 2;
    padding: 0 52px 100px;
    max-width: 820px;
  }
  .hero-eyebrow {
    font-size: clamp(11px, 0.9vw, 14px); font-weight: 500; letter-spacing: 0.22em;
    text-transform: uppercase; color: var(--khaki); margin-bottom: 22px;
    opacity: 0; animation: fadeUp 0.7s ease forwards 0.3s;
  }
  h1.hero-title {
    font-size: clamp(42px, 5.5vw, 82px); font-weight: 300;
    line-height: 1.04; color: var(--white); letter-spacing: -0.015em; margin-bottom: 28px;
  }
  .word-vestra { color: var(--khaki); font-weight: 600; letter-spacing: 0.06em; }
  .char {
    display: inline-block; opacity: 0; transform: translateY(22px);
    animation: charIn 0.04s ease forwards;
  }
  .hero-subtitle {
    font-size: clamp(15px, 1.6vw, 22px); font-weight: 300; line-height: 1.65;
    color: rgba(255,255,255,0.85);
    opacity: 0; animation: fadeUp 0.8s ease forwards 1.9s;
  }
  .hero-subtitle strong { color: var(--white); font-weight: 500; }
  @media (max-width: 920px) { .hero-subtitle { white-space: normal; } }
  .hero-subtitle-mobile {
    display: none; font-size: 16px; font-weight: 300; line-height: 1.65;
    color: rgba(255,255,255,0.85);
    opacity: 0; animation: fadeUp 0.8s ease forwards 1.9s;
  }
  .hero-cta-row {
    display: flex; align-items: center; gap: 28px; margin-top: 44px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 2.3s;
  }
  .btn-primary {
    display: inline-block; font-size: clamp(12px, 1vw, 15px); font-weight: 500; letter-spacing: 0.12em;
    text-transform: uppercase; text-decoration: none; color: var(--black);
    background: var(--khaki); padding: clamp(15px, 1.2vw, 20px) clamp(28px, 2.5vw, 42px); transition: background 0.2s, transform 0.2s;
  }
  .btn-primary:hover { background: var(--khaki-light); transform: translateY(-2px); }
  .btn-ghost {
    font-size: clamp(12px, 1vw, 15px); font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
    text-decoration: none; color: rgba(255,255,255,0.75);
    border-bottom: 1px solid rgba(255,255,255,0.35); padding-bottom: 3px;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--white); border-color: rgba(255,255,255,0.7); }
  .hero-scroll {
    position: absolute; bottom: 40px; right: 52px; z-index: 3;
    display: flex; align-items: center; gap: 12px;
    opacity: 0; animation: fadeUp 0.8s ease forwards 2.7s;
  }
  .hero-scroll span { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
  .scroll-line { width: 44px; height: 1px; background: rgba(255,255,255,0.2); position: relative; overflow: hidden; }
  .scroll-line::after {
    content: ''; position: absolute; left: -100%; top: 0; width: 100%; height: 100%;
    background: var(--khaki); animation: scrollLine 2.2s ease infinite 3.2s;
  }



  /* ─── HOW ─── */
  #how { background: var(--white); padding: 112px 52px; }
  .section-label { font-size: clamp(12px, 1vw, 16px); font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--khaki); margin-bottom: 14px; }
  .section-title { font-size: clamp(38px, 5vw, 68px); font-weight: 300; line-height: 1.1; color: var(--black); margin-bottom: 64px; }
  .section-title strong { font-weight: 600; }

  /* Pillars */
  .pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; border: 1px solid var(--gray-mid); margin-bottom: 96px; }
  .pillar { padding: 52px 48px; border-right: 1px solid var(--gray-mid); position: relative; overflow: hidden; }
  .pillar:last-child { border-right: none; }
  .pillar::after { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: var(--gray-mid); transition: background 0.35s; }
  .pillar:hover::after { background: var(--khaki); }
  .pillar-icon { width: 56px; height: 56px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; margin-bottom: 32px; transition: background 0.3s; }
  .pillar:hover .pillar-icon { background: var(--khaki); }
  .pillar-icon svg { width: 26px; height: 26px; stroke: var(--khaki); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
  .pillar:hover .pillar-icon svg { stroke: var(--white); }
  .pillar h3 { font-size: clamp(20px, 2vw, 32px); font-weight: 500; color: var(--black); margin-bottom: 16px; line-height: 1.3; }
  .pillar p { font-size: clamp(15px, 1.3vw, 21px); line-height: 1.8; color: var(--text-secondary); }

  /* Process heading */
  .process-heading { margin-bottom: 56px; }
  .process-heading .section-label { color: var(--text-secondary); margin-bottom: 10px; }
  .process-title { font-size: clamp(28px, 3.5vw, 52px); font-weight: 300; line-height: 1.2; color: var(--black); }
  .process-title strong { font-weight: 600; }

  /* Process steps – desktop horizontal */
  .process-steps { display: grid; grid-template-columns: repeat(5,1fr); position: relative; }
  .process-connector { position: absolute; top: 32px; left: calc(10% + 16px); right: calc(10% + 16px); height: 1px; background: var(--gray-mid); z-index: 0; }
  .process-step { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 20px; position: relative; z-index: 1; }
  .step-icon {
    width: 64px; height: 64px;
    background: var(--white); border: 1px solid var(--gray-mid);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; transition: border-color 0.3s, background 0.3s;
    position: relative; flex-shrink: 0;
  }
  .step-icon svg { width: 26px; height: 26px; stroke: var(--black); fill: none; stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
  .process-step:hover .step-icon { border-color: var(--khaki); background: var(--black); }
  .process-step:hover .step-icon svg { stroke: var(--khaki); }
  .step-num { font-size: clamp(30px, 3vw, 48px); font-weight: 300; color: var(--khaki); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
  .step-title { font-size: clamp(14px, 1.2vw, 20px); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin-bottom: 6px; }
  .step-sub { font-size: clamp(14px, 1.1vw, 18px); font-weight: 400; color: var(--text-secondary); margin-bottom: 14px; }
  .step-bullets { list-style: none; font-size: clamp(13px, 1.05vw, 17px); color: var(--text-secondary); line-height: 1.7; margin-bottom: 14px; display: inline-block; text-align: left; }
  .step-bullets li { display: flex; align-items: baseline; gap: 6px; }
  .step-bullets li::before { content: '–'; color: var(--khaki); flex-shrink: 0; }
  .step-claim { font-size: clamp(13px, 1.1vw, 18px); font-style: normal; font-weight: 700; color: var(--khaki); letter-spacing: 0.02em; margin-top: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Process steps – mobile vertical */
  @media (max-width: 920px) {
    .process-steps { grid-template-columns: 1fr; gap: 0; }
    .process-connector { display: none; }
    .process-step {
      flex-direction: row; align-items: flex-start; text-align: left;
      padding: 28px 0; border-bottom: 1px solid var(--gray-mid); gap: 24px;
    }
    .process-step:last-child { border-bottom: none; }
    .step-icon { width: 56px; height: 56px; flex-shrink: 0; margin-bottom: 0; }
    .step-icon svg { width: 22px; height: 22px; }
    .step-content { display: flex; flex-direction: column; }
    .step-num { font-size: 22px; margin-bottom: 4px; }
  }

  /* ─── LEISTUNGEN ─── */
  #leistungen { background: var(--black); padding: 112px 52px 96px; }
  #leistungen .section-title { color: var(--white); }
  .leistungen-intro { font-size: clamp(16px, 1.4vw, 22px); line-height: 1.75; color: rgba(255,255,255,0.75); max-width: 520px; margin-bottom: 60px; }
  .leistungen-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
  .leistung-card { position: relative; overflow: hidden; aspect-ratio: 4/3; background: #111; cursor: pointer; }
  .leistung-img {
    width: 100%; height: 100%; object-fit: cover; object-position: center center;
    transform: scale(1.0);
    transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
    filter: brightness(0.65);
  }
  .leistung-card:hover .leistung-img { transform: scale(1.07); filter: brightness(0.28); }
  .leistung-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(10,10,10,0.90) 0%, rgba(10,10,10,0.25) 38%, transparent 62%);
    display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  }
  .leistung-title { font-size: clamp(13px, 1.3vw, 19px); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
  .leistung-desc {
    font-size: clamp(14px, 1.15vw, 17px); line-height: 1.65; color: rgba(255,255,255,0.75);
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.35s ease; opacity: 0;
  }
  .leistung-card:hover .leistung-desc { max-height: 120px; opacity: 1; }

  /* Per-card image positioning */
  .leistung-card:nth-child(1) .leistung-img { object-position: center 45%; }
  .leistung-card:nth-child(2) .leistung-img { object-position: center 55%; }
  .leistung-card:nth-child(3) .leistung-img { object-position: center 70%; filter: brightness(0.78); }
  .leistung-card:nth-child(3):hover .leistung-img { filter: brightness(0.28); }
  .leistung-card:nth-child(4) .leistung-img { object-position: center 28%; }
  .leistung-card:nth-child(5) .leistung-img { object-position: center 38%; }
  .leistung-card:nth-child(6) .leistung-img { object-position: center 38%; filter: brightness(0.95); }
  .leistung-card:nth-child(6) .leistung-overlay { background: linear-gradient(to top, rgba(10,10,10,0.80) 0%, rgba(10,10,10,0.10) 30%, transparent 50%); }
  .leistung-card:nth-child(6):hover .leistung-img { filter: brightness(0.28); }

  /* Leistungen: staggered slide+fade on scroll reveal */
  .leistung-card {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .leistung-card.visible {
    opacity: 1;
    transform: translateY(0);
  }
  .leistung-card:nth-child(1) { transition-delay: 0ms; }
  .leistung-card:nth-child(2) { transition-delay: 80ms; }
  .leistung-card:nth-child(3) { transition-delay: 160ms; }
  .leistung-card:nth-child(4) { transition-delay: 240ms; }
  .leistung-card:nth-child(5) { transition-delay: 320ms; }
  .leistung-card:nth-child(6) { transition-delay: 400ms; }
  @media (max-width: 920px) {
    .leistung-card { transition-duration: 0.75s; transition-delay: 0ms !important; }
  }

  /* ─── ÜBER old removed ─── */
  .ueber-text p { font-size: 17px; line-height: 1.8; color: var(--text-secondary); margin-bottom: 18px; }
  blockquote {
    border-left: 3px solid var(--khaki); padding: 22px 28px;
    margin: 36px 0; background: var(--gray-light);
  }
  blockquote p { font-size: clamp(15px, 1.4vw, 22px); font-style: italic; line-height: 1.8; color: var(--black) !important; margin-bottom: 14px !important; }
  blockquote cite { font-size: clamp(12px, 0.9vw, 15px); font-style: normal; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--khaki); }
  .facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
  .fact { padding: 22px 26px; border: 1px solid var(--gray-mid); }
  .fact-val { font-size: clamp(36px, 3.5vw, 56px); font-weight: 300; color: var(--black); letter-spacing: -0.02em; line-height: 1; margin-bottom: 6px; }
  .fact-val span { color: var(--khaki); }
  .fact-lbl { font-size: clamp(11px, 0.9vw, 14px); letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary); }

  /* ─── KONTAKT ─── */
  #kontakt { background: var(--black); padding: 112px 52px; }
  .kontakt-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; max-width: 1400px; }
  .kontakt-left .section-title { color: var(--white); }
  .kontakt-left > p { font-size: clamp(16px, 1.4vw, 22px); line-height: 1.75; color: rgba(255,255,255,0.65); margin-bottom: 52px; max-width: 420px; }
  .kontakt-info { display: flex; flex-direction: column; gap: 22px; }
  .k-item { display: flex; align-items: flex-start; gap: 16px; }
  .k-icon {
    width: 52px; height: 52px; border: 1px solid rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .k-icon svg { width: 22px; height: 22px; fill: var(--khaki); }
  .k-text { font-size: clamp(15px, 1.3vw, 20px); line-height: 1.65; color: rgba(255,255,255,0.9); padding-top: 10px; }
  .k-text a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
  .k-text a:hover { color: var(--white); }
  .kontakt-form { display: flex; flex-direction: column; gap: 18px; }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .fgrp { display: flex; flex-direction: column; gap: 8px; }
  .fgrp label { font-size: clamp(11px, 0.9vw, 14px); font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
  .fgrp input, .fgrp textarea {
    font-family: 'DM Sans', sans-serif; font-size: clamp(14px, 1.2vw, 18px);
    color: var(--white); background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1); padding: clamp(14px, 1.2vw, 18px) clamp(16px, 1.4vw, 22px);
    outline: none; transition: border-color 0.2s, background 0.2s; resize: none;
    -webkit-appearance: none;
  }
  .fgrp input::placeholder, .fgrp textarea::placeholder { color: rgba(255,255,255,0.2); }
  .fgrp input:focus, .fgrp textarea:focus { border-color: var(--khaki); background: rgba(255,255,255,0.07); }
  .fgrp textarea { height: clamp(120px, 10vw, 160px); }
  .form-btn {
    font-family: 'DM Sans', sans-serif; font-size: clamp(13px, 1.1vw, 17px); font-weight: 600; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--black); background: var(--khaki);
    border: none; padding: clamp(18px, 1.5vw, 24px) 32px; cursor: pointer; transition: background 0.2s, transform 0.2s; width: 100%; margin-top: 4px;
  }
  .form-btn:hover { background: var(--khaki-light); transform: translateY(-1px); }
  .form-note { font-size: clamp(12px, 0.9vw, 14px); color: rgba(255,255,255,0.25); text-align: center; }
  .form-success { display: none; text-align: center; padding: 48px; border: 1px solid rgba(181,181,141,0.25); }
  .form-success p { font-size: 16px; color: var(--khaki); margin-bottom: 8px; }
  .form-success span { font-size: 13px; color: rgba(255,255,255,0.35); }

  /* ─── FOOTER ─── */
  footer {
    background: #111; padding: 40px 52px;
    display: flex; align-items: center; justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
  }
  .footer-logo { font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.35); }
  .footer-logo span { color: var(--khaki); }
  .footer-links { display: flex; gap: 28px; list-style: none; }
  .footer-links a { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: rgba(255,255,255,0.25); transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.5); }
  .footer-copy { font-size: 11px; color: rgba(255,255,255,0.2); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes charIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes scrollLine { 0% { left: -100%; } 100% { left: 100%; } }

  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
  .reveal.visible { opacity: 1; transform: none; }
  .d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; }
  .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 920px) {
    nav { padding: 0 24px; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .mobile-menu { padding-left: 24px; padding-right: 24px; }
    .mobile-menu.open { padding: 32px 24px; }

    /* Hero mobile */
    #hero { align-items: flex-end; min-height: 100svh; }
    .hero-content { padding: 0 24px 80px; max-width: 100%; }
    .hero-subtitle { display: none; }
    .hero-subtitle-mobile { display: block; }
    .hero-cta-row { flex-direction: column; align-items: flex-start; gap: 16px; }
    .hero-scroll { display: none; }

    /* How */
    #how { padding: 80px 24px; }
    .pillars { grid-template-columns: 1fr; }
    .pillar { border-right: none; border-bottom: 1px solid var(--gray-mid); }
    .pillar:last-child { border-bottom: none; }

    /* Prozess – vertikal statt 2-spaltig */
    .process-steps { grid-template-columns: 1fr; gap: 0; }
    .process-connector { display: none; }
    .process-step {
      flex-direction: row; align-items: flex-start; text-align: left;
      padding: 28px 0; border-bottom: 1px solid var(--gray-mid); gap: 24px;
    }
    .process-step:last-child { border-bottom: none; }
    .step-icon { width: 52px; height: 52px; flex-shrink: 0; margin-bottom: 0; }
    .step-icon svg { width: 22px; height: 22px; }
    .step-content { display: flex; flex-direction: column; }
    .step-num { font-size: 22px; margin-bottom: 4px; }
    .step-claim { white-space: normal; }

    /* Leistungen */
    #leistungen { padding: 80px 24px; }
    .leistungen-grid { grid-template-columns: 1fr 1fr; }
    .leistung-card:nth-child(3) .leistung-img { object-position: center 68%; }
    .leistungen-grid { gap: 6px; }


    /* Über – mobile via eigenen @media-Block unten geregelt */

    /* Kontakt */
    #kontakt { padding: 80px 24px; }
    .kontakt-inner { grid-template-columns: 1fr; gap: 56px; }
    .form-row { grid-template-columns: 1fr; }

    footer { flex-direction: column; gap: 20px; text-align: center; padding: 32px 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
  }
  @media (max-width: 540px) {
    .leistungen-grid { grid-template-columns: 1fr; }
    .facts-grid { grid-template-columns: 1fr; }
    .hero-content { padding: 0 20px 72px; }
  }

  /* ─── ÜBER VESTRA – REDESIGN ─── */
  #ueber { background: var(--white); padding: 0; overflow: hidden; }
  .ueber-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    grid-template-rows: auto 1fr;
    min-height: 680px;
    max-width: 1400px;
    margin: 0 auto;
  }
  /* Desktop: Portrait spans both rows on left */
  .ueber-portrait-col {
    grid-column: 1;
    grid-row: 1 / 3;
    position: relative;
    background: var(--gray-light);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  /* Desktop: Text-top (Label + Titel + Fließtext) top right */
  .ueber-text-top {
    grid-column: 2;
    grid-row: 1;
    padding: 80px 72px 40px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }
  /* Desktop: Content-col (Zitat + Fakten) bottom right */
  .ueber-content-col {
    grid-column: 2;
    grid-row: 2;
    padding: 0 72px 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .ueber-portrait-wrap { width: 100%; height: 100%; display: flex; align-items: flex-end; }
  .ueber-portrait-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: top center;
    display: block; max-height: 750px;
  }
  .ueber-p {
    font-size: clamp(16px, 1.4vw, 22px);
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 0;
    max-width: 520px;
  }
  @media (max-width: 920px) {
    .ueber-layout {
      display: flex; flex-direction: column;
      padding: 64px 24px; min-height: unset;
    }
    .ueber-text-top { padding: 0 0 32px; order: 1; }
    .ueber-portrait-col { order: 2; height: 420px; margin: 0 -24px; }
    .ueber-portrait-img { object-position: center 15%; max-height: 420px; }
    .ueber-content-col { order: 3; padding: 32px 0 0; }
    .ueber-p { max-width: 100%; }
    .facts-grid { grid-template-columns: 1fr 1fr; }
  }

