:root{
    --ink:#1B2420;
    --paper:#FFFFFF;
    --mist:#F5F6F3;
    --navy:#1D5B86;
    --navy-deep:#164A6D;
    --green:#4E9E1E;
    --orange:#D98419;
    --slate:#33517E;
    --gold:#B8842A;
    --grey:#63666A;
    --grey-light:#9A9C97;
    --line:#E6E7E2;
    --radius:14px;
    --maxw:1200px;
  }
  *{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    font-family:'Inter',sans-serif;
    color:var(--ink);
    background:var(--paper);
    -webkit-font-smoothing:antialiased;
  }
  img{max-width:100%;display:block;}
  a{color:inherit;}
  .wrap{max-width:var(--maxw);margin:0 auto;padding:0 32px;}
  h1,h2,h3{font-family:'Space Grotesk',sans-serif;margin:0;letter-spacing:-0.01em;}
  .eyebrow{
    font-family:'IBM Plex Mono',monospace;
    font-size:11px;
    letter-spacing:0.14em;
    text-transform:uppercase;
    color:var(--grey);
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:14px;
  }
  .eyebrow::before{content:"";width:22px;height:1px;background:var(--orange);display:inline-block;}
  @media (prefers-reduced-motion: reduce){
    html{scroll-behavior:auto;}
    *{animation-duration:0.01ms !important; transition-duration:0.01ms !important;}
  }

  /* ---------- buttons ---------- */
  .btn{
    display:inline-flex;align-items:center;gap:10px;
    font-family:'Inter',sans-serif;font-weight:600;font-size:15px;
    padding:14px 24px;border-radius:999px;
    text-decoration:none;border:1.5px solid transparent;
    cursor:pointer;
    transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
  }
  .btn:focus-visible{outline:3px solid var(--orange);outline-offset:2px;}
  .btn-primary{background:var(--navy);color:#fff;}
  .btn-primary:hover{background:var(--navy-deep);transform:translateY(-1px);}
  .btn-ghost{background:transparent;color:var(--ink);border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--ink);transform:translateY(-1px);}
  .btn-onlight{background:rgba(255,255,255,0.12);color:#fff;border-color:rgba(255,255,255,0.5);backdrop-filter:blur(6px);}
  .btn-onlight:hover{background:rgba(255,255,255,0.22);transform:translateY(-1px);}
  .btn-white{background:#fff;color:var(--navy-deep);}
  .btn-white:hover{background:#EFF3F6;transform:translateY(-1px);}
  .btn svg{width:18px;height:18px;flex:none;}

  /* ---------- header ---------- */
  header{
    position:sticky;top:0;z-index:50;
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(10px);
    border-bottom:1px solid var(--line);
  }
  .nav{display:flex;align-items:center;justify-content:space-between;padding:10px 32px;max-width:var(--maxw);margin:0 auto;}
  .brand{display:flex;align-items:center;gap:10px;text-decoration:none;}
  .brand-logo{height:64px;width:auto;display:block;}
  .nav-links{display:flex;gap:30px;list-style:none;margin:0;padding:0;}
  .nav-links a{text-decoration:none;font-size:14.5px;font-weight:500;color:var(--ink);position:relative;}
  .nav-links a::after{content:"";position:absolute;left:0;right:0;bottom:-4px;height:2px;background:var(--orange);transform:scaleX(0);transition:transform .2s ease;}
  .nav-links a:hover::after{transform:scaleX(1);}
  .nav-cta{display:flex;align-items:center;gap:14px;}
  .phone-pill{
    display:flex;align-items:center;gap:8px;
    font-family:'IBM Plex Mono',monospace;font-size:13.5px;font-weight:500;
    padding:9px 16px;border-radius:999px;background:var(--mist);
    text-decoration:none;color:var(--ink);border:1px solid var(--line);
    transition:background .15s ease;
  }
  .phone-pill:hover{background:#ECEEE9;}
  .phone-pill svg{width:15px;height:15px;color:var(--green);}
  @media (max-width:880px){
    .nav{flex-wrap:wrap;gap:12px;padding:14px 20px;}
    .nav-links{
      order:3;width:100%;
      gap:22px;overflow-x:auto;
      -webkit-overflow-scrolling:touch;
      padding-bottom:2px;
    }
    .nav-links::-webkit-scrollbar{display:none;}
    .nav-links a{white-space:nowrap;font-size:14px;}
    .brand-logo{height:40px;}
  }

  /* ---------- hero ---------- */
  .hero{
    position:relative;
    min-height:88vh;
    display:flex;
    align-items:flex-end;
    overflow:hidden;
    background:#0d1512;
  }
  .hero img{
    position:absolute;inset:0;width:100%;height:100%;object-fit:cover;
    opacity:0.55;
  }
  .hero::before{
    content:"";position:absolute;inset:0;
    background:linear-gradient(180deg, rgba(9,15,12,0.55) 0%, rgba(9,15,12,0.35) 35%, rgba(9,15,12,0.92) 100%);
  }
  .hero-inner{position:relative;z-index:2;color:#fff;padding:100px 32px 64px;max-width:var(--maxw);margin:0 auto;width:100%;}
  .hero-eyebrow{
    font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.16em;text-transform:uppercase;
    color:#D9DED8;margin-bottom:22px;display:flex;align-items:center;gap:10px;
  }
  .hero-eyebrow::before{content:"";width:22px;height:1px;background:var(--orange);}
  .hero h1{
    font-size:clamp(40px,6vw,72px);
    font-weight:600;
    line-height:1.03;
    max-width:820px;
    margin-bottom:22px;
  }
  .hero h1 em{font-style:normal;color:#8FD35A;}
  .hero p.lead{
    font-size:18px;line-height:1.6;color:#E7EAE4;max-width:560px;margin-bottom:36px;font-weight:400;
  }
  .hero-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:40px;}
  .hero-badges{display:flex;flex-wrap:wrap;gap:10px;}
  .hero-badge{
    display:flex;align-items:center;gap:7px;
    font-family:'IBM Plex Mono',monospace;font-size:12px;color:#EDEFEA;
    padding:7px 13px;border-radius:999px;background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.18);
  }
  .dot{width:7px;height:7px;border-radius:50%;flex:none;}
  .dot-green{background:#7BC950;}
  .dot-orange{background:#F0A93E;}
  .dot-slate{background:#6E8AB8;}

  /* ---------- sections generic ---------- */
  section{padding:96px 0;}
  .section-head{max-width:640px;margin-bottom:56px;}
  .section-head h2{font-size:clamp(28px,4vw,42px);font-weight:600;line-height:1.15;}
  .alt{background:var(--mist);}

  /* ---------- services ---------- */
  .services-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:28px;}
  @media (max-width:900px){.services-grid{grid-template-columns:1fr;}}
  .services-note{
    text-align:center;margin:40px 0 0;font-size:14.5px;color:var(--grey);
  }
  .services-note a{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px;}
  .service-card{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    overflow:hidden;display:flex;flex-direction:column;
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .service-card:hover{transform:translateY(-4px);box-shadow:0 18px 40px rgba(20,30,25,0.09);}
  .service-photo{height:200px;overflow:hidden;position:relative;}
  .service-photo img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .service-card:hover .service-photo img{transform:scale(1.06);}
  .service-tag{
    position:absolute;top:14px;left:14px;
    font-family:'IBM Plex Mono',monospace;font-size:10.5px;letter-spacing:0.08em;text-transform:uppercase;
    color:#fff;padding:5px 10px;border-radius:999px;
  }
  .service-body{padding:26px 24px 28px;flex:1;display:flex;flex-direction:column;}
  .service-body h3{font-size:21px;margin-bottom:10px;font-weight:600;}
  .service-body p{font-size:14.5px;line-height:1.6;color:var(--grey);margin:0 0 20px;}
  .checklist{list-style:none;margin:0;padding:0;display:grid;gap:9px;margin-top:auto;}
  .checklist li{
    display:flex;align-items:center;gap:9px;
    font-family:'IBM Plex Mono',monospace;font-size:12px;color:var(--ink);
  }
  .check-badge{
    width:17px;height:17px;border-radius:5px;flex:none;
    display:flex;align-items:center;justify-content:center;
    border:1.4px solid var(--line);
  }
  .check-badge svg{width:11px;height:11px;}
  .check-badge path{
    stroke-dasharray:20;stroke-dashoffset:20;
    transition:stroke-dashoffset .5s ease;
  }
  .checklist.in-view .check-badge path{stroke-dashoffset:0;}
  .checklist.in-view .check-badge{border-color:transparent;}

  .accent-green .service-tag{background:var(--green);}
  .accent-green .check-badge{color:var(--green);}
  .accent-green.in-view-marker .check-badge{background:var(--green);}
  .accent-orange .service-tag{background:var(--orange);}
  .accent-orange .check-badge{color:var(--orange);}
  .accent-slate .service-tag{background:var(--slate);}
  .accent-slate .check-badge{color:var(--slate);}
  .accent-gold .service-tag{background:var(--gold);}
  .accent-gold .check-badge{color:var(--gold);}

  .checklist.accent-green.in-view .check-badge{background:var(--green);}
  .checklist.accent-orange.in-view .check-badge{background:var(--orange);}
  .checklist.accent-slate.in-view .check-badge{background:var(--slate);}
  .checklist.accent-gold.in-view .check-badge{background:var(--gold);}
  .checklist .check-badge svg path{stroke:currentColor;}
  .checklist.in-view .check-badge svg path{stroke:#fff;}

  /* ---------- gallery ---------- */
  .gallery{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    grid-auto-rows:220px;
    gap:14px;
  }
  .gallery a{border-radius:10px;overflow:hidden;position:relative;display:block;}
  .gallery img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease;}
  .gallery a:hover img{transform:scale(1.07);}
  /* explicit placement: left 2x2, middle column full-height (merged), right column stacked */
  .gallery a:nth-child(1){grid-column:1;grid-row:1;}
  .gallery a:nth-child(2){grid-column:1;grid-row:2;}
  .gallery a:nth-child(3){grid-column:2;grid-row:1;}
  .gallery a:nth-child(4){grid-column:2;grid-row:2;}
  .gallery a:nth-child(5){grid-column:3;grid-row:1 / span 2;}
  .gallery a:nth-child(6){grid-column:4;grid-row:1;}
  .gallery a:nth-child(7){grid-column:4;grid-row:2;}
  @media (max-width:900px){
    .gallery{grid-template-columns:repeat(2,1fr);grid-auto-rows:180px;}
    .gallery a:nth-child(1){grid-column:1;grid-row:1;}
    .gallery a:nth-child(2){grid-column:1;grid-row:2;}
    .gallery a:nth-child(3){grid-column:2;grid-row:1;}
    .gallery a:nth-child(4){grid-column:2;grid-row:2;}
    .gallery a:nth-child(5){grid-column:1;grid-row:3 / span 2;}
    .gallery a:nth-child(6){grid-column:2;grid-row:3;}
    .gallery a:nth-child(7){grid-column:2;grid-row:4;}
  }
  @media (max-width:560px){
    .gallery{grid-template-columns:1fr;grid-auto-rows:220px;}
    .gallery a{grid-column:1 !important;grid-row:auto !important;}
  }

  /* ---------- process ---------- */
  .process{display:grid;grid-template-columns:repeat(5,1fr);gap:20px;}
  @media (max-width:980px){.process{grid-template-columns:repeat(2,1fr);}}
  @media (max-width:560px){.process{grid-template-columns:1fr;}}
  .step{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    padding:22px 20px 24px;position:relative;
  }
  .step-num{
    font-family:'IBM Plex Mono',monospace;font-size:12px;color:var(--grey-light);
    margin-bottom:14px;display:flex;align-items:center;justify-content:space-between;
  }
  .step-check{width:20px;height:20px;border-radius:6px;border:1.4px solid var(--line);display:flex;align-items:center;justify-content:center;flex:none;}
  .step-check svg{width:12px;height:12px;}
  .step-check path{stroke:currentColor;stroke-dasharray:20;stroke-dashoffset:20;transition:stroke-dashoffset .5s ease .1s;}
  .step.in-view .step-check{background:var(--green);border-color:var(--green);color:#fff;}
  .step.in-view .step-check path{stroke-dashoffset:0;}
  .step h3{font-size:16px;font-weight:600;margin-bottom:8px;}
  .step p{font-size:13.5px;line-height:1.55;color:var(--grey);margin:0;}

  /* ---------- why us ---------- */
  .why-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border:1px solid var(--line);border-radius:var(--radius);overflow:hidden;}
  @media (max-width:900px){.why-grid{grid-template-columns:repeat(2,1fr);}}
  .why-item{background:#fff;padding:32px 26px;}
  .why-item svg{width:26px;height:26px;color:var(--navy);margin-bottom:18px;}
  .why-item h3{font-size:16.5px;font-weight:600;margin-bottom:8px;}
  .why-item p{font-size:13.5px;line-height:1.55;color:var(--grey);margin:0;}

  /* ---------- owner / Inhaberin ---------- */
  .owner-card{
    display:grid;grid-template-columns:0.8fr 1.2fr;gap:48px;align-items:center;
    background:var(--mist);border:1px solid var(--line);border-radius:24px;
    padding:40px;
  }
  @media (max-width:820px){.owner-card{grid-template-columns:1fr;padding:28px;gap:28px;}}
  .owner-photo-wrap{
    aspect-ratio:4/5;border-radius:16px;overflow:hidden;
    background:#fff;border:1px solid var(--line);
  }
  .owner-photo-wrap img{width:100%;height:100%;object-fit:cover;}
  .owner-photo-placeholder{
    width:100%;height:100%;display:flex;flex-direction:column;align-items:center;justify-content:center;gap:14px;
    background:linear-gradient(150deg, rgba(78,158,30,0.14), rgba(217,132,25,0.12) 50%, rgba(51,81,126,0.14));
    color:var(--grey);
  }
  .owner-photo-placeholder svg{width:56px;height:56px;opacity:0.55;}
  .owner-photo-placeholder span{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:0.1em;text-transform:uppercase;}
  .owner-text h3{font-size:28px;font-weight:600;margin-bottom:4px;}
  .owner-role{
    font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.06em;text-transform:uppercase;
    color:var(--navy);margin:0 0 18px;font-weight:500;
  }
  .owner-text p{font-size:15px;line-height:1.65;color:var(--grey);margin:0 0 16px;}
  .owner-text p:last-of-type{margin-bottom:22px;}
  .owner-traits{display:flex;flex-wrap:wrap;gap:10px;}

  /* ---------- testimonials ---------- */
  .testi-grid{display:grid;grid-template-columns:1fr 1fr;gap:28px;}
  @media (max-width:820px){.testi-grid{grid-template-columns:1fr;}}
  .testi-card{
    background:#fff;border:1px solid var(--line);border-radius:var(--radius);
    padding:34px 32px 28px;position:relative;display:flex;flex-direction:column;
  }
  .testi-quote{width:30px;height:24px;color:var(--orange);margin-bottom:18px;}
  .testi-card p{
    font-family:'Space Grotesk',sans-serif;font-size:18px;line-height:1.5;
    color:var(--ink);font-weight:500;margin:0 0 24px;flex:1;
  }
  .testi-attrib{display:flex;align-items:center;gap:10px;}
  .testi-attrib .dot{width:8px;height:8px;}
  .testi-attrib span{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.04em;color:var(--grey);text-transform:uppercase;}

  /* ---------- cta banner ---------- */
  .cta-banner{
    background:linear-gradient(135deg,var(--navy-deep) 0%, var(--navy) 60%, #2c6e46 130%);
    color:#fff;border-radius:24px;padding:64px 48px;
    max-width:var(--maxw);margin:0 auto;
    display:flex;align-items:center;justify-content:space-between;gap:40px;flex-wrap:wrap;
  }
  .cta-banner h2{font-size:clamp(26px,3.6vw,38px);margin-bottom:12px;font-weight:600;}
  .cta-banner p{font-size:15.5px;color:#DCE7EE;max-width:440px;margin:0;line-height:1.6;}
  .cta-actions{display:flex;gap:14px;flex-wrap:wrap;}

  /* ---------- footer ---------- */
  footer{padding:64px 0 32px;border-top:1px solid var(--line);}
  .footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:40px;margin-bottom:48px;}
  @media (max-width:800px){.footer-grid{grid-template-columns:1fr 1fr;}}
  .footer-brand{display:flex;align-items:center;gap:10px;margin-bottom:14px;text-decoration:none;}
  .footer-logo{height:56px;width:auto;display:block;}
  .footer-col h4{font-family:'IBM Plex Mono',monospace;font-size:11px;letter-spacing:0.1em;text-transform:uppercase;color:var(--grey);margin:0 0 16px;font-weight:500;}
  .footer-col a, .footer-col p{display:block;font-size:14px;color:var(--ink);text-decoration:none;margin-bottom:10px;line-height:1.5;}
  .footer-col a:hover{color:var(--navy);}
  .footer-p{color:var(--grey);font-size:13.5px;max-width:280px;line-height:1.6;}
  .footer-bottom{display:flex;justify-content:space-between;flex-wrap:wrap;gap:10px;font-size:12.5px;color:var(--grey-light);border-top:1px solid var(--line);padding-top:24px;}
  .footer-bottom a{color:var(--grey-light);text-decoration:underline;text-underline-offset:2px;}
  .footer-bottom a:hover{color:var(--navy);}

  /* ---------- floating call button (mobile) ---------- */
  .float-call{
    position:fixed;right:20px;bottom:20px;z-index:60;
    width:56px;height:56px;border-radius:50%;
    background:var(--green);color:#fff;
    display:none;align-items:center;justify-content:center;
    box-shadow:0 10px 26px rgba(78,158,30,0.45);
    text-decoration:none;
  }
  .float-call svg{width:24px;height:24px;}
  @media (max-width:640px){.float-call{display:flex;}}

  .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease, transform .6s ease;}
  .reveal.in-view{opacity:1;transform:translateY(0);}

  /* ---------- termin / form page ---------- */
  .wrap-narrow{max-width:640px;}
  .form-page-header{padding:64px 0 40px;background:var(--mist);border-bottom:1px solid var(--line);}
  .form-page-header h1{font-size:clamp(30px,4.4vw,44px);font-weight:600;line-height:1.15;margin:0 0 16px;max-width:680px;}
  .lead-p{font-size:15.5px;line-height:1.65;color:var(--grey);max-width:600px;margin:0;}
  .inline-link{color:var(--navy);font-weight:600;text-decoration:underline;text-underline-offset:2px;}

  .form-section{padding:56px 0 96px;}
  .termin-form{display:flex;flex-direction:column;gap:22px;}
  .termin-form[hidden]{display:none;}
  .form-row{display:grid;grid-template-columns:1fr;gap:22px;}
  .form-row.two{grid-template-columns:1fr 1fr;}
  @media (max-width:560px){.form-row.two{grid-template-columns:1fr;}}

  .field{display:flex;flex-direction:column;gap:8px;}
  .field label{font-family:'IBM Plex Mono',monospace;font-size:12px;letter-spacing:0.04em;color:var(--ink);font-weight:500;}
  .field input, .field select, .field textarea{
    font-family:'Inter',sans-serif;font-size:15px;color:var(--ink);
    padding:13px 15px;border-radius:10px;border:1.5px solid var(--line);
    background:#fff;outline:none;transition:border-color .15s ease, box-shadow .15s ease;
    appearance:none;
  }
  .field textarea{resize:vertical;min-height:100px;font-family:'Inter',sans-serif;line-height:1.5;}
  .field select{
    background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2363666A' stroke-width='2'><path d='m6 9 6 6 6-6'/></svg>");
    background-repeat:no-repeat;background-position:right 14px center;background-size:16px;
    padding-right:40px;
  }
  .field input:focus, .field select:focus, .field textarea:focus{border-color:var(--navy);box-shadow:0 0 0 3px rgba(29,91,134,0.12);}
  .field input:invalid.touched, .field select:invalid.touched{border-color:#C0473F;}
  .field .field-error{font-size:12px;color:#C0473F;font-family:'IBM Plex Mono',monospace;display:none;}
  .field.has-error .field-error{display:block;}
  .field.has-error input, .field.has-error select, .field.has-error textarea{border-color:#C0473F;}

  .form-note{font-size:13px;color:var(--grey-light);line-height:1.5;margin:0;}

  .btn-submit{align-self:flex-start;border:none;cursor:pointer;font-family:'Inter',sans-serif;}

  .termin-success{
    text-align:center;padding:56px 20px;background:var(--mist);border-radius:20px;border:1px solid var(--line);
  }
  .success-icon{
    width:56px;height:56px;border-radius:50%;background:var(--green);color:#fff;
    display:flex;align-items:center;justify-content:center;margin:0 auto 22px;
  }
  .success-icon svg{width:26px;height:26px;}
  .termin-success h2{font-family:'Space Grotesk',sans-serif;font-size:24px;font-weight:600;margin:0 0 12px;}
  .termin-success p{font-size:15px;line-height:1.6;color:var(--grey);max-width:440px;margin:0 auto 26px;}

  /* Honeypot-Feld: für Menschen unsichtbar, für Bots vorhanden */
  .hp-field{position:absolute;left:-9999px;top:-9999px;width:1px;height:1px;overflow:hidden;}

  .form-error{
    font-size:14px;color:#C0473F;background:#FBEAE8;border:1px solid #F0C6C1;
    border-radius:10px;padding:12px 16px;margin:0;
  }

  .btn-submit:disabled{opacity:0.65;cursor:not-allowed;}
