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

html {
     scroll-behavior: smooth; 
    }

body { 
    font-family: 'Century Gothic', sans-serif; 
    /*background: var(--white); */
    background:
    linear-gradient(
            rgba(245,241,234,0.92),
            rgba(245,241,234,0.92)
        ),
        url('../pics/table_mono.PNG');
    background-size: cover;
    background-position: center top;
    background-attachment: fixed;

}

:root {
      --navy: #2A5A28; --gold: #b8975a; --gold-light: #d4b47e;
      --cream: #f5f1ea; --white: #ffffff; --gray: #6b7280; --light: #eae5db;
    }






.step-icon {
  width: 128px;
  height: 128px;
  margin: 12px auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-icon svg {
  width: 100%;
  height: 100%;
  stroke: #c8a96a; /* dein Gold */
}


    /* ── Honeypot: für Menschen unsichtbar ── */
    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      overflow: hidden;
      pointer-events: none;
    }

    /* ── Timer-Fortschrittsbalken ── */
    .submit-wrap { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
    #timer-track {
      width: 100%;
      max-width: 240px;
      height: 3px;
      background: #d4cfc6;
      border-radius: 2px;
      overflow: hidden;
      display: none;
    }
    #timer-bar {
      height: 100%;
      width: 0%;
      background: #b8975a;
      border-radius: 2px;
      transition: width 0.1s linear, background 0.3s;
    }

    /* ── Formular-Statusmeldungen ── */
    .form-notice {
      padding: 14px 18px;
      font-size: .92rem;
      border-radius: 2px;
      margin-bottom: 20px;
      display: none;
    }
    .form-notice--success {
      background: #edf7ee;
      border-left: 3px solid #4caf50;
      color: #2e6b30;
    }
    .form-notice--error {
      background: #fdf0f0;
      border-left: 3px solid #e53935;
      color: #8b1a1a;
    }
    .form-notice--warning {
      background: #fff8e1;
      border-left: 3px solid #f9a825;
      color: #6d4c00;
    }

    /* ── Disabled-Zustand Submit-Button ── */
    .btn-submit:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }

/* NAV */
  nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: var(--navy);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 60px; height: 72px;
      border-bottom: 1px solid rgba(184,151,90,.3);
    }

    .nav-logo { font-family: 'Century Gothic', serif; font-size: 1.4rem; font-weight: 700; color: var(--white); letter-spacing: .04em; }
    .nav-logo span { color: var(--gold); }
    .nav-right { display: flex; align-items: center; gap: 36px; }
    .nav-links { display: flex; gap: 36px; list-style: none; }
    .nav-links a { font-size: .85rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.75); text-decoration: none; transition: color .25s; }
    .nav-links a:hover { color: var(--gold); }





     /* Language switcher */
    .lang-switch { display: flex; align-items: center; background: rgba(255,255,255,.07); border: 1px solid rgba(184,151,90,.25); border-radius: 2px; overflow: hidden; }
    .lang-btn { padding: 6px 14px; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; border: none; background: transparent; color: rgba(255,255,255,.5); transition: all .2s; font-family: 'Century Gothic', sans-serif; }
    .lang-btn.active { background: var(--gold); color: var(--navy); }
    .lang-btn:not(.active):hover { color: var(--gold-light); }
    .lang-divider { width: 1px; height: 20px; background: rgba(184,151,90,.25); }

    /* MAIN */
    .mszBrand-logo { font-family: 'Century Gothic', serif; font-size: 1.8rem; font-weight: 700; color: var(--white); letter-spacing: .04em; text-align: center;}
    .mszBrand-logo span { color: var(--gold); }
    /*.hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 60px 80px; background-image: linear-gradient(to right, rgba(0, 0, 0, 0) 0 100%), url("../pics/table_mono.PNG"); background-size: cover;-webkit-filter: grayscale(0%);  }     */
    .hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; padding: 120px 60px 80px;  }

    .hero::before { content: ''; position: absolute; top: 0; right: 0; bottom: 0; width: 42%; background: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(184,151,90,.045) 18px, rgba(184,151,90,.045) 19px); }
    .hero-inner { max-width: 1100px; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
    .hero-eyebrow { font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
    .hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }
    h1 { font-family: 'Century Gothic', serif; font-size: clamp(2.4rem, 4vw, 3.6rem); font-weight: 700; line-height: 1.18; color: var(--white); margin-bottom: 24px; }
    h1 em { color: var(--gold); font-style: italic; }
    .hero-sub { font-family: 'Century Gothic', serif; font-size: 1.18rem; line-height: 1.8; color: rgba(255,255,255,.68); margin-bottom: 44px; }
    .btn-primary { display: inline-block; background: var(--gold); color: var(--navy); font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 16px 38px; text-decoration: none; transition: background .25s, transform .2s; }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
    .btn-primary1 { display: inline-block; background: var(--gold); color: var(--navy);}
    .btn-outline { display: inline-block; margin-left: 16px; border: 1px solid rgba(184,151,90,.55); color: var(--gold); font-size: .8rem; font-weight: 400; letter-spacing: .14em; text-transform: uppercase; padding: 15px 32px; text-decoration: none; transition: border-color .25s, color .25s; }
    .btn-outline:hover { border-color: var(--gold); color: var(--gold-light); }
    .hero-card { background: rgba(255,255,255,.05); border: 1px solid rgba(184,151,90,.2); padding: 44px; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); box-shadow: 0 10px 35px rgba(0,0,0,0.06), 0 2px 8px rgba(0,0,0,0.04); }
    .hero-stat { margin-bottom: 32px; }
    .hero-stat:last-child { margin-bottom: 0; }
    .stat-num { font-family: 'Century Gothic', serif; font-size: 2.8rem; font-weight: 700; color: var(--gold); line-height: 1; }
    .stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-top: 6px; }
    .stat-divider { width: 40px; height: 1px; background: rgba(184,151,90,.3); margin: 28px 0; }

    /* SECTIONS */
    section { padding: 100px 60px; }
    .section-inner { max-width: 1100px; margin: 0 auto; }
    .section-label { font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 12px; }
    .section-label::before { content: ''; display: block; width: 28px; height: 1px; background: var(--gold); }
    h2 { font-family: 'Century Gothic', serif; font-size: clamp(1.9rem, 3vw, 2.8rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 18px; }
    .lead { font-family: 'Century Gothic', serif; font-size: 1.15rem; line-height: 1.85; color: var(--gray); max-width: 640px; }

    /* SERVICES */
    #leistungen { background: var(--cream); }
    .services-header { margin-bottom: 60px; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
    .service-card { background: var(--white); padding: 48px 36px; position: relative; transition: box-shadow .3s; }
    .service-card:hover { box-shadow: 0 12px 40px rgba(13,31,60,.1); }
    .service-icon { width: 48px; height: 48px; background: var(--navy); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; }
    .service-icon svg { width: 36px; height: 36px; fill: var(--gold); }
    .service-card h3 { font-family: 'Century Gothic', serif; font-size: 1.25rem; font-weight: 600; color: var(--navy); margin-bottom: 14px; }
    .service-card p { font-size: .92rem; line-height: 1.75; color: var(--gray); }
    .service-card li { font-size: .92rem; line-height: 1.75; color: var(--gray); }
    .service-card li1 { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }

    .service-card-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
    .service-card::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--gold); transition: width .35s ease; }
    .service-card:hover::after { width: 100%; }

    /* ABOUT */
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }  
    .about-visual { position: relative; height: 420px; }
    .about-bg-rect { position: absolute; top: 24px; left: 24px; right: -24px; bottom: -24px; background: var(--cream); border: 1px solid var(--light); }
    .about-main-rect { position: absolute; top: 0; left: 0; right: 48px; bottom: 48px; background:var(--navy) ; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
    .about-initials { font-family: 'Century Gothic', serif; font-size: 5rem; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: .06em; }
    .about-since { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(255,255,255,.5); }
    .values { margin-top: 40px; display: flex; flex-direction: column; gap: 20px; }
    .value-item { display: flex; gap: 16px; align-items: flex-start; }
    .value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); margin-top: 7px; flex-shrink: 0; }
    .value-item strong { display: block; font-size: .9rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
    .value-item p { font-size: .88rem; color: var(--gray); line-height: 1.65; }

    /* PROCESS */
    #vorgehen { background: var(--navy); }
    #vorgehen h2 { color: var(--white); }
    #vorgehen .lead { color: rgba(255,255,255,.6); margin-bottom: 60px; }
    #vorgehen .section-label { color: var(--gold); }
    .process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
    .process-steps::before { content: ''; position: absolute; top: 30px; left: 60px; right: 60px; height: 1px; background: rgba(184,151,90,.25); }
    .step { padding: 0 28px 0 0; position: relative; }
    .step-num { width: 90px; height: 90px; border: 1px solid rgba(184,151,90,.4); display: flex; align-items: center; justify-content: center; font-family: 'Century Gothic', serif; font-size: 1.4rem; font-weight: 700; color: var(--gold); margin-bottom: 28px; background: var(--navy); position: relative; z-index: 1; }
    .step h4 { font-family: 'Century Gothic', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
    .step p { font-size: .88rem; color: rgba(255,255,255,.5); line-height: 1.7; }
   /* .process-icon { width: 128px; height: 128px; background: var(--navy); margin-bottom: 28px; display: flex; align-items: center; justify-content: center; }
    .process-icon svg { width: 128px; height: 128px; fill: var(--gold); }*/
    .process-icon {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon svg {
  
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 1;
  
}

    .process-icon1 {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-icon1 svg {
  
  fill: var(--gold);
  stroke: var(--gold);
  stroke-width: 0;
  
}

    /* CONTACT */
    #kontakt { background: var(--cream); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .contact-item { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
    .contact-item-icon { width: 44px; height: 44px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-item-icon svg { width: 30px; height: 30px; fill: var(--gold); }
    .contact-item strong { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); margin-bottom: 4px; }
    .contact-item span { font-size: .95rem; color: var(--gray); }

    .contact-item a {color: inherit; text-decoration: underline; }
    .contact-item a:hover {opacity: 0.7; }


    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label { font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; color: var(--navy); font-weight: 700; }
    .form-group input, .form-group textarea, .form-group select { border: 1px solid #d4cfc6; background: var(--white); padding: 14px 16px; font-size: .95rem; font-family: 'Century Gothic', sans-serif; color: var(--navy); outline: none; transition: border-color .25s; appearance: none; }
    .form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); }
    .form-group textarea { resize: both; min-height: 120px; }
    .btn-submit { align-self: flex-start; background: var(--navy); color: var(--white); border: none; cursor: pointer; font-family: 'Century Gothic', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 16px 40px; transition: background .25s; }
    .btn-submit:hover { background: #1a3461; }
    .btn-showDetails { align-self: flex-start; backgborder: none; cursor: pointer; font-family: 'Century Gothic', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; padding: 16px 40px; transition: background .25s; round: var(--navy); color: var(--red); }

    .privacy-check label {display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; line-height: 1.5; text-transform: none; letter-spacing: normal; font-weight: 400;}
    .privacy-check input[type="checkbox"] {width: 150px; margin-top: 3px; flex-shrink: 0;}

    .phone-reveal-btn,
    /*.phone-link {background: none; border: none; padding: 0; margin: 0; font: inherit; color: var(--gray); cursor: pointer; text-decoration: underline;}*/
    .phone-link {background: none; color: #2A5A28; padding: 3px; margin: 3px; font: inherit;letter-spacing: normal; display: flex; gap: 36px; list-style: none; cursor: pointer; text-decoration: solid;}
    .phone-reveal-btn:hover,
    .phone-link:hover {color: var(--navy);}

/*display: flex; gap: 36px; list-style: none; */

    .button {
    border: none;
    color: white;
    padding: 10px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
    margin: 4px 2px;
    cursor: pointer;
}

.button1 {background-color: #2A5A28;} /* Green */
.button2 {background-color: #008CBA;} /* Blue */

    /* FOOTER */
    footer { background: var(--navy); padding: 48px 60px; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(184,151,90,.2); }
    .footer-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--white); }
    .footer-logo span { color: var(--gold); }
    .footer-copy { font-size: .8rem; color: rgba(255,255,255,.4); }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.45); text-decoration: none; transition: color .25s; }
    .footer-links a:hover { color: var(--gold); }

    /* ANIMATION */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
    .hero-content > * { animation: fadeUp .7s ease both; }
    .hero-eyebrow { animation-delay: .1s; } h1 { animation-delay: .22s; } .hero-sub { animation-delay: .36s; } .hero-cta { animation-delay: .5s; }

    /* LANGUAGE SYSTEM */
    .t { display: none; }
    .lang-de .t-de { display: block; }
    .lang-hu .t-hu { display: block; }
    .t.inline { display: none !important; }
    .lang-de .t-de.inline { display: inline !important; }
    .lang-hu .t-hu.inline { display: inline !important; }
    .t.flex { display: none !important; }
    .lang-de .t-de.flex { display: flex !important; }
    .lang-hu .t-hu.flex { display: flex !important; }
    .t.iblock { display: none !important; }
    .lang-de .t-de.iblock { display: inline-block !important; }
    .lang-hu .t-hu.iblock { display: inline-block !important; }

    @media (max-width: 900px) {
      nav { padding: 0 20px; }
      .nav-links { display: none; }
      .hero-inner, .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
      .hero { padding: 120px 24px 60px; }
      section { padding: 72px 24px; }
      .services-grid { grid-template-columns: 1fr; }
      .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
      .process-steps::before { display: none; }
      footer { flex-direction: column; gap: 20px; text-align: center; }
      .hero-card { display: none; 
       }
    }

        /* ── Honeypot: für Menschen unsichtbar ── */
    .hp-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      overflow: hidden;
      pointer-events: none;
    }

    /* ── Timer-Fortschrittsbalken ── */
    .submit-wrap { display: flex; flex-direction: column; gap: 10px; align-items: flex-start; }
    #timer-track {
      width: 100%;
      max-width: 240px;
      height: 3px;
      background: #d4cfc6;
      border-radius: 2px;
      overflow: hidden;
      display: none;
    }
    #timer-bar {
      height: 100%;
      width: 0%;
      background: #b8975a;
      border-radius: 2px;
      transition: width 0.1s linear, background 0.3s;
    }

    /* ── Formular-Statusmeldungen ── */
    .form-notice {
      padding: 14px 18px;
      font-size: .92rem;
      border-radius: 2px;
      margin-bottom: 20px;
      display: none;
    }
    .form-notice--success {
      background: #edf7ee;
      border-left: 3px solid #4caf50;
      color: #2e6b30;
    }
    .form-notice--error {
      background: #fdf0f0;
      border-left: 3px solid #e53935;
      color: #8b1a1a;
    }
    .form-notice--warning {
      background: #fff8e1;
      border-left: 3px solid #f9a825;
      color: #6d4c00;
    }

    /* ── Disabled-Zustand Submit-Button ── */
    .btn-submit:disabled {
      opacity: 0.55;
      cursor: not-allowed;
    }


    /* Impressum */

    .legal-page {
      padding: 140px 24px 80px;
      background: var(--cream);
      min-height: 100vh;
    }

    .legal-wrap {
      max-width: 920px;
      margin: 0 auto;
      background: var(--white);
      border: 1px solid var(--light);
      padding: 40px 32px;
    }

    .legal-wrap h1 {
      margin-top: 10px;
      color: #2A5A28;
      overflow-wrap:break-word;
      hyphens: auto;
    }

    .legal-wrap h2 {
      margin-top: 30px;
    }

    .legal-wrap p {
      color: var(--gray);
      line-height: 1.8;
      font-size: 0.95rem;
      margin-bottom: 10px;
    }

    .legal-back {
      display: inline-block;
      margin-top: 30px;
    }