:root {
    --gruen:        #2D5A27;
  --gruen-panel:  #3d7a35;
  --gruen-btn:    #4a8a3e;
    --gruen-mid:    #3d7a35;
    --gruen-hell:   #4e9446;
    --gruen-pale:   #e8f2e6;
    --bach:         #1A7A8A;
    --bach-light:   #d0eef2;
    --creme:        #F7F4EE;
    --sand:         #E8E2D8;
    --text:         #1a2a18;
    --text-mid:     #4a5a48;
    --text-light:   #7a8a78;
    --white:        #ffffff;
    --radius:       20px;
    --radius-sm:    10px;
    --shadow:       0 8px 40px rgba(45,90,39,0.12);
    --shadow-sm:    0 4px 20px rgba(45,90,39,0.08);
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }

  body {
    font-family: 'Source Sans 3', sans-serif;
    background: var(--creme);
    color: var(--text);
  }

  /* ── HERO ── */
  .kgv-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 92vh;
    overflow: hidden;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  /* Left — green panel */
  .kgv-hero__left {
    background: var(--gruen);
    padding: 4rem 3.5rem 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  /* Organic blob shapes */
  .kgv-hero__left::before {
    content: '';
    position: absolute;
    bottom: -80px; right: -80px;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
  }
  .kgv-hero__left::after {
    content: '';
    position: absolute;
    top: -60px; left: -60px;
    width: 220px; height: 220px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
  }

  .kgv-hero__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
  }
  .kgv-hero__logo img {
    width: 56px; height: 56px;
    border-radius: 12px;
    background: white;
    padding: 4px;
    object-fit: contain;
  }
  .kgv-hero__logo-text {
    line-height: 1.2;
  }
  .kgv-hero__logo-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.80);
  }
  .kgv-hero__logo-name {
    font-size: 1rem;
    font-weight: 700;
    color: white;
  }

  .kgv-hero__tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    width: fit-content;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.1s ease forwards;
  }

  .kgv-hero__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.25s ease forwards;
  }
  .kgv-hero__headline em {
    font-style: italic;
    color: rgba(255,255,255,0.75);
  }

  .kgv-hero__sub {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    max-width: 400px;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.4s ease forwards;
  }
  .kgv-hero__sub strong { color: white; font-weight: 600; }

  .kgv-hero__pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.55s ease forwards;
  }
  .kgv-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    text-decoration: none;
    transition: background 0.2s, border-color 0.2s;
    cursor: pointer;
  }
  .kgv-pill:hover {
    background: rgba(255,255,255,0.18);
    border-color: rgba(255,255,255,0.35);
  }

  .kgv-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: var(--gruen);
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    width: fit-content;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.7s ease forwards;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .kgv-hero__cta:hover {
    background: var(--creme);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
  }

  .kgv-hero__stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
    position: relative;
    z-index: 1;
    opacity: 0;
    animation: kgv-fade-up 0.6s 0.85s ease forwards;
  }
  .kgv-stat { display: flex; flex-direction: column; }
  .kgv-stat__num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    line-height: 1;
  }
  .kgv-stat__label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.80);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
  }

  /* Right — image + cards */
  .kgv-hero__right {
    position: relative;
    overflow: hidden;
    background: var(--gruen-pale);
  }

  .kgv-hero__photo {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    animation: kgv-fade-in 1s 0.3s ease forwards;
  }

  /* overlay gradient */
  .kgv-hero__right::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(to left, transparent 30%, var(--gruen) 100%),
      linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 40%);
    pointer-events: none;
  }

  /* floating badge */
  .kgv-hero__badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    background: white;
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    border-left: 4px solid var(--bach);
    box-shadow: var(--shadow);
    opacity: 0;
    animation: kgv-fade-up 0.6s 1s ease forwards;
  }
  .kgv-hero__badge-label {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bach);
    margin-bottom: 0.2rem;
  }
  .kgv-hero__badge-text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
  }

  /* ── WAVE ── */
  .kgv-wave { display: block; overflow: hidden; line-height: 0; }
  .kgv-wave svg { display: block; width: 100%; }

  /* ── ÜBER UNS ── */
  .kgv-about {
    background: var(--gruen);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
  }
  .kgv-about::before {
    content: '';
    position: absolute;
    top: -80px; right: -60px;
    width: 400px; height: 400px;
    border-radius: 50%;
    background: rgba(26,122,138,0.08);
    pointer-events: none;
  }

  .kgv-container {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2.5rem;
  }

  .kgv-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }

  .kgv-section-tag {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
  }
  .kgv-section-tag .line { width: 28px; height: 2px; background: var(--bach); }
  .kgv-section-tag span {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--bach);
  }

  .kgv-about__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.5vw, 2.8rem);
    font-weight: 700;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.25rem;
  }
  .kgv-about__headline em { font-style: italic; color: rgba(255,255,255,0.7); }

  .kgv-about__text {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.78);
    line-height: 1.8;
    margin-bottom: 1.25rem;
  }

  .kgv-about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
    margin-top: 2rem;
  }
  .kgv-highlight {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 1.1rem;
    transition: background 0.2s;
  }
  .kgv-highlight:hover { background: rgba(255,255,255,0.11); }
  .kgv-highlight__icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .kgv-highlight__title { font-size: 0.88rem; font-weight: 700; color: white; margin-bottom: 0.3rem; }
  .kgv-highlight__text { font-size: 0.8rem; color: rgba(255,255,255,0.80); line-height: 1.5; }

  /* right image stack */
  .kgv-about__photos {
    position: relative;
    height: 460px;
    border-radius: var(--radius);
    overflow: visible;
  }
  .kgv-about__photo-main {
    position: absolute;
    top: 0; left: 0;
    width: 80%; height: 85%;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .kgv-about__photo-sub {
    position: absolute;
    bottom: 0; right: 0;
    width: 55%; height: 50%;
    object-fit: cover;
    border-radius: var(--radius);
    border: 4px solid var(--gruen);
    box-shadow: var(--shadow);
  }

  /* ── VALUES ── */
  .kgv-values {
    background: var(--creme);
    padding: 5rem 0;
  }

  .kgv-values__header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .kgv-values__eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .kgv-values__eyebrow .line { width: 28px; height: 2px; background: var(--gruen); }
  .kgv-values__eyebrow span {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase; color: var(--gruen);
  }
  .kgv-values__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 2.2vw, 2.4rem);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
  }
  .kgv-values__sub {
    font-size: 1rem;
    color: var(--text-mid);
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.65;
  }

  .kgv-values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .kgv-value-card {
    background: white;
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border-top: 3px solid transparent;
    box-shadow: var(--shadow-sm);
    transition: transform 0.2s, box-shadow 0.2s, border-top-color 0.2s;
  }
  .kgv-value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    border-top-color: var(--gruen);
  }
  .kgv-value-card.blue:hover { border-top-color: var(--bach); }
  .kgv-value-card.sand:hover { border-top-color: #C8B89A; }

  .kgv-value-card__icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.1rem;
  }
  .kgv-value-card__icon.green { background: var(--gruen-pale); }
  .kgv-value-card__icon.blue  { background: var(--bach-light); }
  .kgv-value-card__icon.sand  { background: rgba(200,184,154,0.2); }

  .kgv-value-card__title { font-size: 1.05rem; font-weight: 700; color: var(--text); margin-bottom: 0.55rem; }
  .kgv-value-card__text  { font-size: 0.9rem; color: var(--text-mid); line-height: 1.65; }

  /* ── CTA ── */
  .kgv-cta {
    background: var(--gruen);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .kgv-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 700px; height: 700px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12);
    pointer-events: none;
  }
  .kgv-cta__inner { position: relative; z-index: 1; }
  .kgv-cta__eyebrow {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.75); margin-bottom: 0.75rem;
  }
  .kgv-cta__headline {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900; color: white;
    margin-bottom: 1rem; line-height: 1.1;
  }
  .kgv-cta__text {
    font-size: 1.05rem; color: rgba(255,255,255,0.75);
    max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.65;
  }
  .kgv-cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

  .kgv-btn-white {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: white; color: var(--gruen);
    font-size: 0.95rem; font-weight: 700;
    padding: 0.9rem 2.25rem; border-radius: var(--radius-sm);
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .kgv-btn-white:hover { background: var(--creme); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.2); }

  .kgv-btn-outline {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: transparent; color: white;
    font-size: 0.95rem; font-weight: 700;
    padding: 0.9rem 2.25rem; border-radius: var(--radius-sm);
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    transition: border-color 0.2s, background 0.2s, transform 0.15s;
  }
  .kgv-btn-outline:hover { border-color: white; background: rgba(255,255,255,0.08); transform: translateY(-2px); }

  /* ── CONTACT ── */
  .kgv-contact {
    background: white;
    padding: 3.5rem 0;
  }
  .kgv-contact__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 3rem;
    align-items: center;
  }
  .kgv-contact__headline {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem; font-weight: 700;
    color: var(--text); margin-bottom: 0.35rem;
  }
  .kgv-contact__sub { font-size: 0.9rem; color: var(--text-mid); }
  .kgv-contact__items { display: flex; flex-direction: column; gap: 0.6rem; align-items: flex-end; }
  .kgv-contact__item {
    display: flex; align-items: center; gap: 0.55rem;
    font-size: 0.88rem; color: var(--text-mid);
  }
  .kgv-contact__item strong { color: var(--gruen); }
  .kgv-contact__item a { color: var(--bach); text-decoration: none; font-weight: 600; }
  .kgv-contact__item a:hover { text-decoration: underline; }

  /* ── ANIMATIONS ── */
  @keyframes kgv-fade-up {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  @keyframes kgv-fade-in {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .kgv-hero { grid-template-columns: 1fr; min-height: auto; }
    .kgv-hero__left { padding: 3.5rem 2rem 2rem; }
    .kgv-hero__right { min-height: 300px; }
    .kgv-about__grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .kgv-about__photos { height: 280px; }
    .kgv-values__grid { grid-template-columns: 1fr; }
    .kgv-contact__inner { grid-template-columns: 1fr; }
    .kgv-contact__items { align-items: flex-start; }
  }
