    /* Local Fonts for GDPR Compliance */
    @font-face {
      font-family: 'DM Sans';
      font-style: normal;
      font-weight: 300 500;
      font-display: swap;
      src: url('../fonts/dm-sans.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Playfair Display';
      font-style: normal;
      font-weight: 400 900;
      font-display: swap;
      src: url('../fonts/playfair-display-normal.woff2') format('woff2');
    }
    @font-face {
      font-family: 'Playfair Display';
      font-style: italic;
      font-weight: 400;
      font-display: swap;
      src: url('../fonts/playfair-display-italic.woff2') format('woff2');
    }

    :root {
      --green-deep:   #1a3a1f;
      --green-mid:    #2d6a35;
      --green-light:  #4d9b55;
      --green-pale:   #e8f4e9;
      --earth:        #8b5e3c;
      --cream:        #f9f5ef;
      --text-dark:    #1c1c1c;
      --text-mid:     #4a4a4a;
      --accent:       #c9a84c;
      --accent-light: #f0e0a8;

      --font-display: 'Playfair Display', Georgia, serif;
      --font-body:    'DM Sans', sans-serif;
    }

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

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
    }

    /* ─── NAVBAR ─────────────────────────────── */
    .navbar {
      background: rgba(217, 235, 218, 0.98);
    
      padding: 0.3rem 0;
      transition: padding .3s, transform .4s ease-in-out;
      will-change: transform;
    }
    .navbar.scrolled { padding: .6rem 0; box-shadow: 0 2px 20px rgba(0,0,0,.3); }

    /* Smart Header: Hide state */
    .navbar.navbar-hidden {
      transform: translateY(-110%);
    }

    .navbar-brand {
      font-family: var(--font-display);
      font-size: 1.4rem;
      color: #fff !important;
      letter-spacing: .02em;
      display: flex;
      align-items: center;
      gap: .6rem;
    }
    .logo img {
      max-height: 54px;
      width: auto;
    }

    .mobile-icon {
      max-height: 40px !important;
      width: auto;
      mix-blend-mode: multiply; /* Blendet weißen Hintergrund aus */
    }

    @media (max-width: 480px) {
      .navbar {
        padding: 0.15rem 0;
      }
      .navbar.scrolled {
        padding: 0.25rem 0;
      }
      .navbar .container {
        padding-left: 1rem;
        padding-right: 1rem;
      }
    }

    .brand-sub {
      display: block;
      font-family: var(--font-body);
      font-size: .7rem;
      font-weight: 300;
      color: var(--accent-light);
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .nav-link {
      color: rgba(3, 102, 49, 0.95) !important;
      font-size: .88rem;
      letter-spacing: .04em;
      padding: .5rem 1rem !important;
      position: relative;
      transition: color .2s;
    }
    .nav-link::after {
      content: '';
      position: absolute; bottom: 0; left: 1rem; right: 1rem;
      height: 1px;
      background: var(--accent);
      transform: scaleX(0);
      transition: transform .25s;
    }
    .nav-link:hover { color: #80b94a !important; }
    .nav-link:hover::after { transform: scaleX(1); }

    .navbar-toggler {
      border-color: rgba(26, 58, 31, 0.2);
      color: rgba(3, 102, 49, 0.95);
    }
    .navbar-toggler-icon {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2826,58,31,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    /* ─── HERO ────────────────────────────────── */
    .hero {
      min-height: 100vh;
      background:
        linear-gradient(160deg, rgba(26,58,31,.82) 0%, rgba(26,58,31,.45) 60%, rgba(26,58,31,.15) 100%),
        url('https://images.unsplash.com/photo-1416879595882-3373a0480b5b?w=1600&q=80') center/cover no-repeat;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::after {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, transparent 40%, rgba(26,58,31,.4) 100%);
      pointer-events: none;
    }

    .hero-badge {
      display: inline-block;
      background: var(--accent);
      color: var(--green-deep);
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .15em;
      text-transform: uppercase;
      padding: .35rem 1rem;
      border-radius: 2rem;
      margin-bottom: 1.5rem;
    }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(1rem, 6vw, 3rem);
      font-weight: 900;
      line-height: 1.05;
      color: #fff;
      margin-bottom: 1.5rem;
    }
    .hero h1 em {
      font-style: italic;
      color: var(--accent);
    }
    .hero-sub {
      color: rgba(255,255,255,.85);
      font-size: 1.1rem;
      font-weight: 300;
      max-width: 520px;
      line-height: 1.7;
      margin-bottom: 2.5rem;
    }
    .btn-hero {
      background: var(--accent);
      color: var(--green-deep);
      font-weight: 600;
      letter-spacing: .05em;
      padding: .85rem 2.2rem;
      border-radius: 3rem;
      border: none;
      transition: transform .2s, box-shadow .2s;
      text-decoration: none;
      display: inline-block;
    }
    .btn-hero:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(201,168,76,.4);
      color: var(--green-deep);
    }
    .btn-hero-outline {
      border: 1.5px solid rgba(255,255,255,.5);
      color: #fff;
      padding: .85rem 2.2rem;
      border-radius: 3rem;
      text-decoration: none;
      font-weight: 400;
      transition: background .2s, border-color .2s;
      display: inline-block;
      &.sm{
         padding: .425rem 1.1rem;
         font-size:0.8rem;
      }
      &:hover{
        background: rgba(255,255,255,.12);
        border-color: #fff;
        color: #fff;
      }
    }


    .hero-stats {
      position: absolute;
      bottom: 2.5rem; left: 0; right: 0;
    }
    .stat-card {
      background: rgba(255,255,255,.1);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 1rem;
      padding: 1.2rem 1.5rem;
      color: #fff;
      text-align: center;
    }
    .stat-number {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 700;
      color: var(--accent);
      line-height: 1;
    }
    .stat-label { font-size: .78rem; color: rgba(255,255,255,.7); letter-spacing: .06em; }

    /* ─── SECTION TITLES ─────────────────────── */
    .section-eyebrow {
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--green-mid);
      margin-bottom: .75rem;
      display: block;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      line-height: 1.15;
      color: var(--green-deep);
    }
    .section-divider {
      width: 60px; height: 3px;
      background: var(--accent);
      border-radius: 2px;
      margin: 1.5rem 0;
    }

    /* ─── INTRO STRIP ────────────────────────── */
    .intro-strip {
      background: var(--green-deep);
      padding: 3.5rem 0;
    }
    .intro-strip p {
      color: rgba(255,255,255,.85);
      font-size: 1.15rem;
      font-weight: 300;
      line-height: 1.8;
      margin: 0;
    }
    .intro-strip strong { color: var(--accent); font-weight: 500; }

    /* ─── ABOUT ───────────────────────────────── */
    .about-section { padding: 6rem 0; }
    .about-img-wrap {
      position: relative;
    }
    .about-img-wrap img {
      width: 100%;
      border-radius: 1.5rem;
      object-fit: cover;
      aspect-ratio: 4/3;
    }
    .about-badge {
      position: absolute;
      bottom: -1.5rem; right: -1.5rem;
      background: var(--accent);
      color: var(--green-deep);
      border-radius: 1rem;
      padding: 1.5rem;
      text-align: center;
      font-family: var(--font-display);
      box-shadow: 0 8px 32px rgba(0,0,0,.15);
    }
    .about-badge span { font-size: 2.2rem; font-weight: 900; display: block; line-height: 1; }
    .about-badge small { font-size: .75rem; font-family: var(--font-body); letter-spacing: .06em; }

    /* ─── CARDS ───────────────────────────────── */
    .feature-card {
      background: #fff;
      border-radius: 1.25rem;
      padding: 2rem;
      height: 100%;
      border: 1px solid rgba(0,0,0,.06);
      transition: transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--green-mid), var(--accent));
      transform: scaleX(0);
      transition: transform .3s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,.1); }
    .feature-card:hover::before { transform: scaleX(1); }

    .feature-icon {
      width: 52px; height: 52px;
      background: var(--green-pale);
      border-radius: .9rem;
      display: grid; place-items: center;
      font-size: 1.4rem;
      color: var(--green-mid);
      margin-bottom: 1.2rem;
    }
    .feature-card h5 {
      font-family: var(--font-display);
      font-size: 1.2rem;
      color: var(--green-deep);
      margin-bottom: .75rem;
    }
    .feature-card p { font-size: .9rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

    /* ─── SERVICES ───────────────────────────── */
    .services-section {
      background: var(--green-pale);
      padding: 6rem 0;
    }
    .service-item {
      display: flex;
      gap: 1.25rem;
      align-items: flex-start;
      padding: 1.5rem;
      background: #fff;
      border-radius: 1rem;
      height: 100%;
      transition: box-shadow .2s;
    }
    .service-item:hover { box-shadow: 0 6px 24px rgba(0,0,0,.08); }
    .service-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 900;
      color: var(--accent-light);
      line-height: 1;
      min-width: 2.5rem;
    }
    .service-item h6 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      color: var(--green-deep);
      margin-bottom: .4rem;
    }
    .service-item p { font-size: .87rem; color: var(--text-mid); line-height: 1.6; margin: 0; }

    /* ─── GALLERY ────────────────────────────── */
    .gallery-section { padding: 6rem 0; }
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: 200px 200px;
      gap: 1rem;
    }
    .g-item { border-radius: 1rem; overflow: hidden; cursor: pointer; position: relative; }
    .g-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .g-item:hover img { transform: scale(1.05); }
    .g-caption {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: .5rem .75rem;
      background: linear-gradient(transparent, rgba(0,0,0,.55));
      color: #fff;
      font-size: .8rem;
      font-weight: 500;
      letter-spacing: .02em;
      pointer-events: none;
    }
    .g1 { grid-column: 1/6; grid-row: 1/3; }
    .g2 { grid-column: 6/9; grid-row: 1/2; }
    .g3 { grid-column: 9/13; grid-row: 1/2; }
    .g4 { grid-column: 6/10; grid-row: 2/3; }
    .g5 { grid-column: 10/13; grid-row: 2/3; }
    @media (max-width: 768px) {
      .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 160px 160px 160px;
      }
      .g1 { grid-column: 1/3; grid-row: 1/2; }
      .g2 { grid-column: 1/2; grid-row: 2/3; }
      .g3 { grid-column: 2/3; grid-row: 2/3; }
      .g4 { grid-column: 1/2; grid-row: 3/4; }
      .g5 { grid-column: 2/3; grid-row: 3/4; }
    }
    .api-gallery-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
    }
    .api-gallery-grid .g-item { aspect-ratio: 3/2; }
    @media (max-width: 576px) {
      .api-gallery-grid { grid-template-columns: 1fr 1fr; }
    }

    /* ─── NEWS ───────────────────────────────── */
    .news-section {
      background: var(--green-deep);
      padding: 6rem 0;
    }
    .news-section .section-title { color: #fff; }
    .news-section .section-eyebrow { color: var(--accent); }

    .news-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 1.25rem;
      padding: 1.8rem;
      height: 100%;
      transition: background .25s;
      cursor: pointer;
    }
    .news-card:hover { background: rgba(255,255,255,.1); }
    .news-cat {
      font-size: .68rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: .75rem;
    }
    .news-card h5 {
      font-family: var(--font-display);
      color: #fff;
      font-size: 1.15rem;
      line-height: 1.35;
      margin-bottom: .75rem;
    }
    .news-content {
      font-size: .87rem;
      color: rgba(255,255,255,0.7);
      line-height: 1.65;
    }
    .news-date { font-size: .78rem; color: rgba(255,255,255,.4); }
    .read-more{
       color:var(--accent); 
       font-size:1.0rem; 
       line-height:1;
       &:hover{
         color:rgba(255,255,255,0.7);
       }
     }

    /* ─── CONTACT ────────────────────────────── */
    .contact-section { padding: 6rem 0; }
    .contact-card {
      background: var(--green-deep);
      border-radius: 2rem;
      padding: 3rem;
      color: #fff;
      height: 100%;
    }
    .contact-card h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.5rem; }
    .contact-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
    .contact-item-icon {
      width: 40px; height: 40px; min-width: 40px;
      background: rgba(255,255,255,.1);
      border-radius: .6rem;
      display: grid; place-items: center;
      color: var(--accent);
    }
    .contact-item-text p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.7); }
    .contact-item-text strong { font-size: .95rem; color: #fff; }

    /* ─── Infos ────────────────────────────── */
    .info-section { padding: 6rem 0; }
    .info-card {
      background: var(--green-mid);
      border-radius: 2rem;
      padding: 3rem;
      color: #fff;
      height: 100%;
    }
    .info-card h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 1.5rem; }
    .info-item { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }
    .info-item-icon {
      width: 40px; height: 40px; min-width: 40px;
      background: rgba(255,255,255,.1);
      border-radius: .6rem;
      display: grid; place-items: center;
      color: var(--accent);
    }
    .info-item-text p { margin: 0; font-size: .9rem; color: rgba(255,255,255,.7); }
    .info-item-text strong { font-size: .95rem; color: #fff; }
    a.info-link {
      color:#ebe8e1;
      text-decoration: none; 
      font-weight: 900;
      border-bottom: 3px solid transparent;
      transition: border-color 1.2s;
      &:hover{
       /* color:#73cb94; */
       text-decoration:none;
       padding-bottom: 2px;
       border-color: rgba(255,255,255, 0.7); 
      }
    }

    ul.info-link {
      padding-left: 1.0em;
      list-style-position: outside;
      line-height: 180%;
     
    }
    .map-placeholder {
      background: var(--green-pale);
      border-radius: 1.5rem;
      height: 100%;
      min-height: 340px;
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      gap: 1rem;
      border: 2px dashed rgba(45,106,53,.3);
      color: var(--green-mid);
      font-size: .95rem;
    }
    .map-placeholder i { font-size: 2.5rem; opacity: .4; }

    /* ─── FORM ────────────────────────────────── */
    .form-wrap {
      background: #fff;
      border-radius: 1.5rem;
      padding: 2.5rem;
      box-shadow: 0 8px 40px rgba(0,0,0,.07);
    }
    .form-wrap h4 { font-family: var(--font-display); color: var(--green-deep); margin-bottom: 1.5rem; }
    .form-control, .form-select {
      border-radius: .75rem;
      border: 1.5px solid #e0e0e0;
      padding: .75rem 1rem;
      font-size: .9rem;
      transition: border-color .2s, box-shadow .2s;
    }
    .form-control:focus, .form-select:focus {
      border-color: var(--green-light);
      box-shadow: 0 0 0 3px rgba(77,155,85,.15);
    }
    .btn-submit {
      background: var(--green-mid);
      color: #fff;
      border: none;
      border-radius: 3rem;
      padding: .85rem 2.5rem;
      font-weight: 500;
      letter-spacing: .04em;
      transition: background .2s, transform .2s;
    }
    .btn-submit:hover { background: var(--green-deep); transform: translateY(-1px); color: #fff; }

    /* ─── FOOTER ──────────────────────────────── */
    footer {
      background: #111a12;
      color: rgba(255,255,255,.6);
      padding: 3rem 0 1.5rem;
    }
    footer .brand-name { font-family: var(--font-display); color: #fff; font-size: 1.2rem; }
    footer a { color: rgba(255,255,255,.55); text-decoration: none; font-size: .88rem; transition: color .2s; }
    footer a:hover { color: var(--accent); }
    footer .footer-links { display: flex; flex-wrap: wrap; gap: .5rem 1.5rem; }
    .footer-copy { font-size: .8rem; margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,.08); }

    /* ─── ANIMATIONS ──────────────────────────── */
    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    [data-reveal].visible {
      opacity: 1;
      transform: none;
    }
    [data-reveal-delay="1"] { transition-delay: .1s; }
    [data-reveal-delay="2"] { transition-delay: .2s; }
    [data-reveal-delay="3"] { transition-delay: .3s; }
    [data-reveal-delay="4"] { transition-delay: .4s; }

    /* Hero entrance */
    .hero-content > * {
      opacity: 0;
      transform: translateY(20px);
      animation: heroIn .7s ease forwards;
    }
    .hero-content > *:nth-child(1) { animation-delay: .2s; }
    .hero-content > *:nth-child(2) { animation-delay: .4s; }
    .hero-content > *:nth-child(3) { animation-delay: .55s; }
    .hero-content > *:nth-child(4) { animation-delay: .7s; }
    @keyframes heroIn {
      to { opacity: 1; transform: none; }
    }

    /* Decorative leaf bg */
    .leaf-deco {
      position: absolute;
      opacity: .06;
      pointer-events: none;
      font-size: 18rem;
      line-height: 1;
      color: var(--green-light);
      right: -2rem; top: 50%;
      transform: translateY(-50%) rotate(25deg);
    }

    /* ─── NEWS SLIDER NAV ─────────────────────── */
    .news-slider-container { min-height: 400px; }
    .nav-arrow {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 50px;
      height: 80px;
      background: rgba(156, 154, 65, 0.9);
      border: none;
      border-radius: 0.5rem;
      color: var(--green-deep);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      transition: all 0.3s ease;
      z-index: 10;
      opacity:0.55;
      cursor: pointer;
    }
    .nav-arrow:hover {
      background: var(--green-mid);
      color: #fff;
      width: 55px;
      opacity:1.0;
    }
    .nav-prev { left: 0; border-top-right-radius: 0; border-bottom-right-radius: 0; }
    .nav-next { right: 0; border-top-left-radius: 0; border-bottom-left-radius: 0; }

    @media (max-width: 768px) {
      .news-slider-container { padding-left: 0 !important; padding-right: 0 !important; }
      .nav-arrow {
        width: 50px;
        height: 50px;
        background: var(--green-mid);
        color: #fff;
        border: 2px solid var(--accent);
        border-radius: 50%;
        top: auto;
        bottom: -70px;
        transform: none;
      }
      .nav-prev { left: 25%; }
      .nav-next { right: 25%; }
      .news-section { padding-bottom: 8rem; }
    }
    .news-content p:last-child { margin-bottom: 0; }
    .news-content img {
      max-width: 100%;
      height: auto;
      margin-top: 1rem;
      border-radius: .5rem;
    }
    .page-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      cursor: pointer;
      transition: all .2s;
      color: var(--accent) !important;
      border: 2px solid var(--accent) !important;
      border-radius: 50%;
      font-weight: 600;
      text-decoration: none;
      user-select: none;
    }
    .page-number:hover {
      background: rgba(255,255,255,.1) !important;
      transform: translateY(-2px);
    }
    .page-number.active {
      background: var(--accent) !important;
      color: var(--green-deep) !important;
      box-shadow: 0 4px 12px rgba(201,168,76,.3);
    }
    @media (max-width: 576px) {
      .pager { gap: 1rem !important; }
      .page-number { width: 48px; height: 48px; font-size: 1.1rem; }
    }

    @media (max-width: 576px) {
      .about-badge { right: 0; bottom: -1rem; padding: 1rem; }
      .about-badge span { font-size: 1.6rem; }
      .contact-card { padding: 2rem 1.5rem; }
    }
