@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
    --green-dark: #1a3a1a;
    --green-main: #2d5a27;
    --green-mid: #3a7233;
    --green-light: #4a8c3f;
    --green-accent: #5ea650;
    --gold: #c8a94e;
    --gold-light: #dcc06a;
    --gold-dark: #a8893e;
    --white: #ffffff;
    --off-white: #f7f7f2;
    --cream: #f0efe8;
    --grey-light: #e4e3dc;
    --grey: #888;
    --text-dark: #1a1a1a;
    --text-body: #444;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow: 0 4px 25px rgba(0,0,0,0.1);
    --shadow-lg: 0 12px 50px rgba(0,0,0,0.15);
    --shadow-xl: 0 25px 80px rgba(0,0,0,0.18);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { font-family: 'DM Sans', sans-serif; color: var(--text-body); background: var(--off-white); line-height: 1.75; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4, h5, h6 { font-family: 'Montserrat', sans-serif; font-weight: 800; line-height: 1.2; color: var(--text-dark); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ══════════ NAVBAR ══════════ */
.navbar { position: fixed; top: 0; left: 0; width: 100%; z-index: 1000; background: transparent; transition: background 0.5s ease, box-shadow 0.5s ease; }
.navbar.scrolled { background: rgba(26,58,26,0.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.nav-container { max-width: 1340px; margin: 0 auto; padding: 0 40px; display: flex; align-items: center; justify-content: space-between; height: 90px; }
.nav-logo { display: flex; align-items: center; flex-shrink: 0; }
.nav-logo img { height: 52px; width: auto; max-width: 210px; }
.nav-links { display: flex; list-style: none; gap: 4px; align-items: center; }
.nav-links a { color: rgba(255,255,255,0.92); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 10px 20px; border-radius: var(--radius); transition: var(--transition); white-space: nowrap; text-shadow: 0 1px 8px rgba(0,0,0,0.15); }
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(200,169,78,0.1); }

.lang-selector { position: relative; }
.lang-btn { background: rgba(200,169,78,0.12); border: 1px solid rgba(200,169,78,0.25); color: var(--gold); padding: 8px 15px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.78rem; cursor: pointer; letter-spacing: 1px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.lang-btn:hover { background: rgba(200,169,78,0.22); }
.lang-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: var(--green-dark); border: 1px solid rgba(200,169,78,0.15); border-radius: var(--radius); overflow: hidden; opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); min-width: 160px; box-shadow: var(--shadow-xl); }
.lang-dropdown.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown a { display: block; padding: 11px 20px; color: rgba(255,255,255,0.75); font-size: 0.85rem; font-weight: 500; transition: var(--transition); }
.lang-dropdown a:hover { background: rgba(200,169,78,0.12); color: var(--gold); }
.lang-dropdown a.active-lang { color: var(--gold); background: rgba(200,169,78,0.08); }

.burger { display: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 5px; z-index: 1001; }
.burger span { width: 26px; height: 2.5px; background: var(--white); border-radius: 3px; transition: var(--transition); }
.burger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ══════════ HERO ══════════ */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; background-color: #1f4420; background-image: linear-gradient(135deg, #16301a 0%, #1f4420 38%, #2d5a27 72%, #356b2e 100%); }
.hero-pattern { position: absolute; inset: 0; z-index: 0; background-image: radial-gradient(circle at 18% 28%, rgba(94,166,80,0.25) 0%, transparent 42%), radial-gradient(circle at 82% 72%, rgba(200,169,78,0.14) 0%, transparent 45%), radial-gradient(circle at 60% 12%, rgba(74,140,63,0.20) 0%, transparent 38%); }
.hero-watermark { position: absolute; bottom: 8%; right: 6%; width: 260px; height: auto; opacity: 0.07; pointer-events: none; z-index: 1; }
.hero-content { position: relative; z-index: 2; max-width: 1340px; margin: 0 auto; padding: 0 40px; width: 100%; }
.hero-inner { max-width: 700px; }
.hero-badge { display: inline-block; background: rgba(200,169,78,0.18); border: 1px solid rgba(200,169,78,0.4); color: var(--gold-light); padding: 8px 22px; border-radius: 50px; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; animation: fadeInDown 0.8s ease-out; }
.hero h1 { color: var(--white); font-size: clamp(2.6rem, 5vw, 4rem); letter-spacing: -1px; margin-bottom: 18px; animation: fadeInUp 0.8s ease-out 0.2s both; }
.hero h1 .gold { color: var(--gold-light); }
.hero-tagline { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: clamp(0.85rem, 1.5vw, 1.15rem); letter-spacing: 4px; margin-bottom: 20px; animation: fadeInUp 0.8s ease-out 0.4s both; }
.hero-subtitle { color: rgba(255,255,255,0.82); font-size: clamp(1.05rem, 1.5vw, 1.25rem); font-weight: 400; max-width: 540px; margin-bottom: 40px; animation: fadeInUp 0.8s ease-out 0.6s both; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; animation: fadeInUp 0.8s ease-out 0.8s both; }
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 34px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.85rem; letter-spacing: 1px; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); }
.btn-primary { background: var(--gold); color: var(--green-dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(200,169,78,0.35); }
.btn-outline { background: rgba(255,255,255,0.05); color: var(--white); border: 2px solid rgba(255,255,255,0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold-light); background: rgba(200,169,78,0.08); transform: translateY(-3px); }
.hero-scroll { position: absolute; bottom: 35px; left: 50%; transform: translateX(-50%); z-index: 2; animation: bounce 2s infinite; }
.hero-scroll svg { width: 28px; height: 28px; stroke: rgba(255,255,255,0.5); }

/* ══════════ SECTIONS ══════════ */
.section { padding: 110px 40px; position: relative; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-label { display: inline-block; color: var(--green-accent); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 10px; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); color: var(--text-dark); margin-bottom: 16px; }
.section-divider { width: 50px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin: 0 auto; }

/* ══════════ ABOUT ══════════ */
.about { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 70px; align-items: center; }
.about-slogan { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: clamp(1.4rem, 2.5vw, 2rem); color: var(--green-main); margin-bottom: 22px; line-height: 1.3; padding-left: 22px; border-left: 4px solid var(--gold); }
.about-text { font-size: 1.02rem; margin-bottom: 16px; color: var(--text-body); }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 30px; }
.stat-item { text-align: center; padding: 22px 10px; background: var(--off-white); border-radius: var(--radius); border: 1px solid var(--grey-light); }
.stat-number { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.8rem; color: var(--green-main); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--grey); font-weight: 600; margin-top: 6px; letter-spacing: 0.5px; }

.about-logo-showcase { display: flex; align-items: center; justify-content: center; background: linear-gradient(145deg, var(--green-dark) 0%, var(--green-main) 50%, var(--green-mid) 100%); border-radius: var(--radius-lg); padding: 70px 50px; box-shadow: var(--shadow-xl); position: relative; overflow: hidden; aspect-ratio: 1 / 0.85; }
.about-logo-showcase::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 70%, rgba(94,166,80,0.15) 0%, transparent 60%), radial-gradient(ellipse at 80% 20%, rgba(200,169,78,0.1) 0%, transparent 50%); }
.about-logo-showcase img { position: relative; z-index: 1; width: 100%; max-width: 320px; filter: drop-shadow(0 8px 30px rgba(0,0,0,0.3)); }

/* ══════════ SERVICES ══════════ */
.services { background: var(--off-white); overflow: hidden; }
.services-intro { max-width: 680px; margin: -20px auto 55px; text-align: center; font-size: 1.05rem; color: var(--text-body); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); border: 1px solid rgba(0,0,0,0.04); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-image { height: 240px; overflow: hidden; position: relative; }
.service-card-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.service-card:hover .service-card-image img { transform: scale(1.06); }
.service-card-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 50%, rgba(26,58,26,0.3) 100%); }
.service-number { position: absolute; top: 18px; left: 18px; background: var(--gold); color: var(--green-dark); width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1rem; z-index: 2; box-shadow: 0 4px 12px rgba(200,169,78,0.4); }
.service-card-body { padding: 28px 30px 32px; }
.service-card-body h3 { font-size: 1.2rem; color: var(--green-dark); margin-bottom: 8px; }
.service-card-body p { color: var(--text-body); font-size: 0.95rem; line-height: 1.6; }

/* ══════════ PRODUKTE ══════════ */
.products { background: var(--white); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--grey-light); transition: var(--transition); display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-image { aspect-ratio: 1 / 1; overflow: hidden; background: var(--off-white); }
.product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-card:hover .product-image img { transform: scale(1.05); }
.product-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.product-cat { display: inline-block; align-self: flex-start; background: rgba(94,166,80,0.12); color: var(--green-main); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.65rem; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border-radius: 50px; margin-bottom: 10px; }
.product-body h3 { font-size: 1.05rem; color: var(--green-dark); margin-bottom: 8px; line-height: 1.3; }
.product-body p { font-size: 0.88rem; color: var(--text-body); line-height: 1.55; }
.products-cta { text-align: center; margin-top: 50px; }

/* ── Produkte-Seite: Hero ── */
.products-hero { background-color: #1f4420; background-image: linear-gradient(135deg, #16301a 0%, #1f4420 40%, #2d5a27 100%); padding: 150px 40px 70px; text-align: center; }
.products-hero-inner { max-width: 760px; margin: 0 auto; }
.products-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin: 10px 0 16px; }
.products-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; line-height: 1.7; }

/* ── Karussell ── */
.product-carousel-section { background: var(--off-white); padding: 55px 40px; }
.carousel-heading { text-align: center; color: var(--green-dark); font-size: 1.3rem; margin-bottom: 30px; }
.carousel { display: flex; align-items: center; gap: 12px; max-width: 1200px; margin: 0 auto; }
.carousel-track { display: flex; gap: 18px; overflow-x: auto; scroll-behavior: smooth; scrollbar-width: none; padding: 8px 4px; flex: 1; }
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 auto; width: 175px; text-align: center; }
.carousel-item img { width: 175px; height: 175px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); transition: var(--transition); }
.carousel-item:hover img { transform: scale(1.04); box-shadow: var(--shadow); }
.carousel-item span { display: block; margin-top: 10px; font-size: 0.82rem; font-weight: 600; color: var(--text-dark); font-family: 'Montserrat', sans-serif; line-height: 1.3; }
.carousel-btn { flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%; border: none; background: var(--green-main); color: #fff; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.carousel-btn:hover { background: var(--green-light); transform: scale(1.08); }
.carousel-btn svg { width: 22px; height: 22px; }

/* ── Kategorie-Filter ── */
.category-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 45px; }
.cat-btn { padding: 11px 26px; border-radius: 50px; border: 2px solid var(--grey-light); background: var(--white); color: var(--text-body); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); }
.cat-btn:hover { border-color: var(--green-light); color: var(--green-main); }
.cat-btn.active { background: var(--green-main); border-color: var(--green-main); color: #fff; }
.products-empty { text-align: center; color: var(--grey); font-size: 1rem; padding: 40px 0; }

/* ── Bestell-CTA ── */
.order-cta { background-color: #1f4420; background-image: linear-gradient(135deg, #2d5a27 0%, #1f4420 100%); padding: 70px 40px; text-align: center; }
.order-cta-inner { max-width: 640px; margin: 0 auto; }
.order-cta h2 { color: #fff; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 14px; }
.order-cta p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.7; margin-bottom: 30px; }
.order-form { max-width: 560px; margin: 0 auto; text-align: left; }
.order-form-row { display: flex; gap: 14px; margin-bottom: 14px; }
.order-form-row input { flex: 1; }
.order-form input, .order-form textarea { width: 100%; padding: 14px 18px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.08); color: #fff; border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; outline: none; transition: var(--transition); }
.order-form input::placeholder, .order-form textarea::placeholder { color: rgba(255,255,255,0.55); }
.order-form input:focus, .order-form textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.12); }
.order-form textarea { min-height: 120px; resize: vertical; margin-bottom: 18px; }
.order-form .btn { width: 100%; }
.order-form-message { text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 600; margin-top: 14px; display: none; }
.order-form-message.success { display: block; background: rgba(94,166,80,0.2); border: 1px solid var(--green-accent); color: #fff; }
.order-form-message.error { display: block; background: rgba(220,53,69,0.2); border: 1px solid #dc3545; color: #fff; }

/* ══════════ CONTACT ══════════ */
.contact { background: var(--white); position: relative; }
/* smooth visual transition from services (off-white) into contact (white) */
.contact::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 120px; background: linear-gradient(180deg, var(--off-white) 0%, var(--white) 100%); pointer-events: none; }
.contact .section-container { position: relative; z-index: 1; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 65px; }
.contact-info-list { list-style: none; }
.contact-info-item { display: flex; align-items: flex-start; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--grey-light); }
.contact-info-item:last-child { border-bottom: none; }
.contact-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--green-main), var(--green-light)); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; box-shadow: 0 4px 15px rgba(45,90,39,0.25); }
.contact-icon svg { width: 22px; height: 22px; stroke: var(--white); fill: none; stroke-width: 2; }
.contact-info-label { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; color: var(--green-main); letter-spacing: 0.5px; margin-bottom: 3px; }
.contact-info-value { color: var(--text-body); font-size: 0.98rem; }

.contact-form { background: var(--off-white); padding: 40px; border-radius: var(--radius-lg); border: 1px solid var(--grey-light); }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.82rem; letter-spacing: 0.5px; margin-bottom: 7px; color: var(--text-dark); }
.form-group label .req { color: var(--gold-dark); margin-left: 2px; }
.contact-form .form-group input, .contact-form .form-group textarea { background: var(--white); border: 1px solid var(--grey-light); color: var(--text-dark); border-radius: var(--radius); padding: 13px 17px; font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: var(--transition); outline: none; width: 100%; }
.contact-form .form-group input::placeholder, .contact-form .form-group textarea::placeholder { color: var(--grey); }
.contact-form .form-group input:focus, .contact-form .form-group textarea:focus { border-color: var(--green-main); box-shadow: 0 0 0 3px rgba(45,90,39,0.08); }
.contact-form .form-group textarea { resize: vertical; min-height: 110px; }
.btn-submit { background: var(--gold); color: var(--green-dark); padding: 15px 50px; font-size: 0.9rem; letter-spacing: 2px; width: 100%; }
.btn-submit:hover { background: var(--gold-light); transform: translateY(-3px); box-shadow: 0 10px 35px rgba(200,169,78,0.35); }
.contact-form-message { text-align: center; padding: 12px; border-radius: var(--radius); font-weight: 600; margin-top: 14px; display: none; }
.contact-form-message.success { display: block; background: rgba(94,166,80,0.1); border: 1px solid var(--green-accent); color: var(--green-main); }
.contact-form-message.error { display: block; background: rgba(220,53,69,0.1); border: 1px solid #dc3545; color: #dc3545; }

/* ══════════ FOOTER ══════════ */
.footer { background: var(--green-dark); color: rgba(255,255,255,0.5); padding: 55px 40px; }
.footer-container { max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer-logo { height: 52px; width: auto; max-width: 210px; opacity: 0.95; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { font-size: 0.88rem; font-weight: 500; transition: var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-copy { width: 100%; text-align: center; padding-top: 25px; margin-top: 25px; border-top: 1px solid rgba(255,255,255,0.06); font-size: 0.82rem; }

/* ══════════ COOKIE BANNER ══════════ */
.cookie-banner { position: fixed; bottom: 24px; left: 50%; z-index: 2000; width: calc(100% - 48px); max-width: 1160px; background: var(--green-dark); border: 1px solid rgba(200,169,78,0.3); border-radius: var(--radius-lg); box-shadow: 0 15px 60px rgba(0,0,0,0.45); padding: 26px 32px; opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(30px); transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94), visibility 0.45s; }
.cookie-banner.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.cookie-content { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cookie-info { flex: 1; min-width: 240px; }
.cookie-title { color: var(--gold-light); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.95rem; margin: 0 0 6px; letter-spacing: 0.5px; }
.cookie-text { color: rgba(255,255,255,0.8); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.cookie-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.cookie-link { color: var(--gold-light); font-weight: 600; text-decoration: underline; white-space: nowrap; transition: var(--transition); }
.cookie-link:hover { color: var(--gold); }
.cookie-reject { background: transparent; border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); padding: 12px 24px; border-radius: var(--radius); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.82rem; letter-spacing: 0.5px; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.cookie-reject:hover { border-color: var(--gold); color: var(--gold-light); }
.cookie-accept { padding: 12px 32px; }

/* ══════════ ANIMATIONS ══════════ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(35px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes bounce { 0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); } 40% { transform: translateX(-50%) translateY(-12px); } 60% { transform: translateX(-50%) translateY(-5px); } }
.fade-in { opacity: 0; transform: translateY(35px); transition: opacity 0.8s ease, transform 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ══════════ LEGAL PAGES ══════════ */
.legal-page { max-width: 860px; margin: 0 auto; padding: 130px 40px 80px; }
.legal-page h1 { color: var(--green-main); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 10px; }
.legal-divider { width: 60px; height: 4px; background: var(--gold); border-radius: 2px; margin-bottom: 40px; }
.legal-page h2 { color: var(--green-dark); font-size: 1.2rem; margin-top: 35px; margin-bottom: 10px; padding-bottom: 8px; border-bottom: 1px solid var(--grey-light); }
.legal-page h3 { color: var(--green-mid); font-size: 1.05rem; margin-top: 20px; margin-bottom: 8px; }
.legal-page p, .legal-page li { color: var(--text-body); font-size: 1rem; line-height: 1.8; margin-bottom: 10px; }
.legal-page ul { margin-left: 20px; margin-bottom: 15px; }
.legal-page a { color: var(--green-main); text-decoration: underline; word-break: break-word; }
.legal-page a:hover { color: var(--gold); }
.back-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 40px; color: var(--green-main); font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.9rem; transition: var(--transition); }
.back-link:hover { color: var(--gold); }
.back-link svg { flex-shrink: 0; }

/* ══════════ SETUP & ADMIN ══════════ */
.setup-container { max-width: 700px; margin: 120px auto 60px; padding: 40px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.setup-container h1 { color: var(--green-main); margin-bottom: 20px; }
.setup-result { padding: 14px 20px; margin: 10px 0; border-radius: var(--radius); font-family: monospace; font-size: 0.9rem; }
.setup-result.ok { background: rgba(94,166,80,0.08); border-left: 4px solid var(--green-accent); color: var(--green-main); }
.setup-result.err { background: rgba(220,53,69,0.08); border-left: 4px solid #dc3545; color: #dc3545; }
.admin-container { max-width: 1100px; margin: 100px auto 40px; padding: 0 30px; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
.admin-header h1 { color: var(--green-main); }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.admin-table th { background: var(--green-main); color: var(--white); padding: 14px 16px; text-align: left; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.75rem; letter-spacing: 1px; text-transform: uppercase; }
.admin-table td { padding: 12px 16px; border-bottom: 1px solid var(--grey-light); font-size: 0.88rem; }
.admin-table tr:hover { background: var(--off-white); }

/* ══════════ FEINSCHLIFF & BARRIEREFREIHEIT ══════════ */
/* Honeypot: unsichtbares Spamschutz-Feld. Für Menschen und Screenreader nicht wahrnehmbar,
   Bots füllen es aber aus und werden dadurch erkannt. */
.hp-field { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none !important; }
/* Sichtbarer Fokus für Tastatur-Navigation (Barrierefreiheit) */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 2px;
}
/* Auf Touchgeräten Hover-Effekte nicht "kleben" lassen */
@media (hover: none) {
    .product-card:hover, .service-card:hover { transform: none; box-shadow: var(--shadow-sm); }
    .product-card:hover .product-image img, .service-card:hover .service-card-image img { transform: none; }
    .btn:hover, .btn-primary:hover, .btn-outline:hover { transform: none; }
}
/* Bilder weich einblenden statt hart aufpoppen */
.product-image img, .carousel-item img { background: var(--off-white); }
/* Lange Wörter nie überlaufen lassen */
.product-body h3, .product-body p, .carousel-item span, .cookie-text, .legal-page p, .legal-page li { overflow-wrap: break-word; }
/* Ausreichend große Touch-Ziele auf Mobilgeräten */
@media (max-width: 768px) {
    .nav-links a, .footer-links a, .cat-btn, .carousel-btn { min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .footer-links a { padding: 6px 4px; }
}
/* Sanfteres Scrollen respektiert Nutzereinstellung */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    .carousel-track { scroll-behavior: auto; }
}

/* ══════════ RESPONSIVE ══════════ */

/* Tablets / small laptops */
@media (max-width: 1024px) {
    .nav-container { padding: 0 28px; }
    .about-grid { grid-template-columns: 1fr; gap: 50px; }
    .about-logo-showcase { aspect-ratio: 16 / 10; max-width: 480px; margin: 0 auto; width: 100%; }
    .contact-grid { grid-template-columns: 1fr; gap: 45px; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .products-hero { padding: 140px 32px 60px; }
    .product-carousel-section { padding: 50px 24px; }
    .section { padding: 90px 32px; }
}

/* Tablets portrait & large phones */
@media (max-width: 768px) {
    .nav-container { padding: 0 20px; height: 70px; }
    .nav-logo img { height: 36px; max-width: 150px; }
    .nav-links { display: none; position: fixed; top: 70px; left: 0; width: 100%; background: rgba(26,58,26,0.99); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); flex-direction: column; padding: 16px 20px 24px; gap: 2px; border-bottom: 1px solid rgba(200,169,78,0.15); box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; }
    .nav-links a { display: block; padding: 13px 16px; font-size: 0.85rem; }
    .lang-selector { width: 100%; margin-top: 8px; }
    .lang-btn { width: 100%; justify-content: center; padding: 12px; }
    .lang-dropdown { position: static; opacity: 1; visibility: visible; transform: none; width: 100%; min-width: 0; margin-top: 6px; box-shadow: none; background: rgba(0,0,0,0.2); display: none; }
    .lang-dropdown.open { display: block; }
    .burger { display: flex; }

    html { scroll-padding-top: 70px; }

    .hero { min-height: 100vh; min-height: 100svh; }
    .hero-content { padding: 0 24px; }
    .hero-inner { max-width: 100%; }
    .hero-watermark { width: 160px; bottom: 6%; right: 5%; opacity: 0.06; }

    .section { padding: 70px 24px; }
    .section-header { margin-bottom: 45px; }

    .services-grid { grid-template-columns: 1fr; gap: 24px; }
    .products-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .products-hero { padding: 120px 24px 55px; }
    .product-carousel-section { padding: 40px 0; }
    /* Pfeile unter das Karussell, damit die Bilder die volle Breite bekommen */
    .carousel { flex-wrap: wrap; justify-content: center; gap: 0; }
    .carousel-track { order: 1; width: 100%; flex: 0 0 100%; padding: 8px 20px; gap: 14px; scroll-padding-left: 20px; }
    .carousel-btn { order: 2; margin-top: 18px; width: 44px; height: 44px; }
    .carousel-prev { margin-right: 8px; }
    .carousel-next { margin-left: 8px; }
    .carousel-item, .carousel-item img { width: 150px; }
    .carousel-item img { height: 150px; }
    .carousel-item span { font-size: 0.78rem; }
    .carousel-heading { margin-bottom: 22px; padding: 0 20px; }
    /* Kategorie-Filter horizontal scrollbar statt umbrechend */
    .category-filter { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding: 4px 4px 10px; margin-bottom: 32px; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
    .category-filter::-webkit-scrollbar { display: none; }
    .cat-btn { flex: 0 0 auto; padding: 10px 20px; font-size: 0.78rem; }
    .order-cta { padding: 55px 24px; }
    .order-form-row { flex-direction: column; gap: 14px; }
    .services-intro { margin: -10px auto 40px; }

    .about-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .about-logo-showcase { padding: 50px 40px; }

    .contact::before { height: 80px; }
    .contact-form { padding: 30px 24px; }

    .footer { padding: 45px 24px; }
    .footer-container { flex-direction: column; text-align: center; gap: 22px; }
    .footer-links { gap: 24px; }

    .legal-page { padding: 110px 24px 60px; }
    .cookie-banner { width: calc(100% - 24px); bottom: 12px; padding: 20px 18px; }
    .cookie-content { flex-direction: column; align-items: stretch; gap: 16px; }
    .cookie-actions { flex-direction: column; gap: 10px; }
    .cookie-reject, .cookie-accept { width: 100%; text-align: center; justify-content: center; }
}

/* Standard phones */
@media (max-width: 560px) {
    .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .product-body { padding: 14px 14px 16px; }
    .product-body h3 { font-size: 0.95rem; }
    .product-cat { font-size: 0.58rem; letter-spacing: 0.5px; padding: 3px 8px; white-space: nowrap; max-width: 100%; overflow: hidden; text-overflow: ellipsis; }
    .product-body p { font-size: 0.8rem; }
    .hero h1 { font-size: 2.4rem; }
    .hero-badge { font-size: 0.62rem; letter-spacing: 2px; padding: 7px 16px; margin-bottom: 22px; }
    .hero-tagline { letter-spacing: 3px; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }

    .section { padding: 60px 20px; }
    .section-title { font-size: 1.7rem; }

    .about-stats { grid-template-columns: 1fr; gap: 10px; }
    .stat-item { padding: 18px; display: flex; align-items: center; justify-content: center; gap: 12px; }
    .stat-number { font-size: 1.6rem; }
    .stat-label { margin-top: 0; }

    .about-slogan { padding-left: 16px; }

    .about-logo-showcase { aspect-ratio: 16 / 11; padding: 40px 30px; }
    .about-logo-showcase img { max-width: 260px; }

    .service-card-image { height: 200px; }
    .service-card-body { padding: 24px 24px 28px; }

    .contact-form { padding: 24px 20px; }
    .contact-icon { width: 44px; height: 44px; }
    .contact-icon svg { width: 20px; height: 20px; }

    .legal-page { padding: 100px 20px 50px; }
    .legal-page h2 { font-size: 1.1rem; }
    .legal-page p, .legal-page li { font-size: 0.95rem; }

    .setup-container, .admin-container { margin-top: 90px; }
    .setup-container { padding: 28px 22px; }
}

/* Small phones (iPhone SE etc.) */
@media (max-width: 380px) {
    .nav-container { padding: 0 16px; }
    .nav-logo img { height: 32px; max-width: 130px; }
    .hero-content { padding: 0 18px; }
    .hero h1 { font-size: 2.1rem; }
    .hero-subtitle { font-size: 0.95rem; }
    .section { padding: 55px 16px; }
    .section-title { font-size: 1.5rem; }
    .btn { padding: 13px 28px; font-size: 0.8rem; }
    .contact-info-item { gap: 14px; }
    .legal-page { padding: 95px 16px 45px; }
    .cookie-banner { width: calc(100% - 16px); bottom: 8px; padding: 18px 16px; }
    .cookie-title { font-size: 0.9rem; }
    .cookie-text { font-size: 0.85rem; overflow-wrap: break-word; word-wrap: break-word; }
    .hero-badge { font-size: 0.58rem; letter-spacing: 1.5px; padding: 7px 14px; }
}
