<style>
        /* Webfont: TeX Gyre Chorus – Dateien nach assets/fonts/ legen */
       @font-face {
  font-family: "TeXGyreChorus";
  src: url("https://sticken-lasern.de/assets/fonts/texgyrechorus.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
h1, h2, h3, h4, h5, h6,
.headline, .title { /* optional: falls du eigene Klassen nutzt */
  font-family: "TeXGyreChorus", Georgia, "Times New Roman", serif;
  font-weight: 400; /* passt zum @font-face */
}
        :root {
            --color-bg: #4f4e4e;
            --color-bg-alt: #3c3b3b;
            --color-accent: #e2ce72;
            --color-accent-soft: #f1e6a4;
            --color-text-dark: #222222;
            --color-error: #ff9b9b;
            --color-success: #b4f5b2;
            --max-width: 1100px;
            --header-height: 70px;
        }

        * { box-sizing: border-box; }

        html { scroll-behavior: smooth; }

        body {
            margin: 0;
            font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            background-color: var(--color-bg);
            color: var(--color-accent);
            line-height: 1.5;
        }

        a {
            color: var(--color-accent);
            text-decoration: none;
        }
        a:hover,
        a:focus-visible { text-decoration: underline; }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        main {
            padding-top: var(--header-height); /* Platz für fixiertes Menü */
        }

        .section {
            padding: 1rem 1.5rem;
            scroll-margin-top: calc(var(--header-height) + 10px);
        }

        .section-inner {
            max-width: var(--max-width);
            margin: 0 auto;
        }

        h1, h2, h3 {
            margin-top: 0;
            letter-spacing: 0.04em;
            font-family: "TeXGyreChorus", "Lucida Handwriting", "Zapfino", cursive;
        }

        h1 { font-size: 2.8rem; margin-bottom: 0.5rem; }
        h2 { font-size: 2.2rem; margin-bottom: 1.5rem; }
        h3 { font-size: 1.8rem; margin-bottom: 0.75rem; }

        p { font-size: 1.15rem; max-width: 60rem; }
        ul { padding-left: 1.2rem; font-size: 1.1rem; }

        .brand-script {
            font-family: "TeXGyreChorus", "Lucida Handwriting", "Zapfino", cursive;
        }

        /* Brand-Schriftzug "Veredelt! by Claudia" */
        .brand-name {
            font-family: "TeXGyreChorus", "Lucida Handwriting", "Zapfino", cursive;
            color: #E2CE72; /* Veredelt by Claudia */
            letter-spacing: 0.04em;
            font-style: italic;
        }
        .brand-name-bang {
            color: #CC9933; /* ! */
        }

        .visually-hidden {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }

        /* Skip link */
        .skip-link {
            position: absolute;
            left: -999px;
            top: -999px;
            background: var(--color-accent);
            color: var(--color-text-dark);
            padding: 0.5rem 1rem;
            z-index: 2000;
        }
        .skip-link:focus {
            left: 0.5rem;
            top: 0.5rem;
        }

        /* Header & Navigation – brauner Streifen fixiert hinter dem Menü */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: var(--header-height);
            background-color: var(--color-bg-alt);
            backdrop-filter: none;
            z-index: 1500;
            border-bottom: 1px solid rgba(226, 206, 114, 0.35);
        }

        .header-inner {
            max-width: var(--max-width);
            margin: 0 auto;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 1.5rem;
        }

        .logo-wrap {
            display: flex;
            align-items: center;
            gap: 0.8rem;
        }

        .logo-icon {
            width: 63px; /* 50 % größer als frühere 42px */
            height: auto;
        }

        nav {
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: 1px solid rgba(226, 206, 114, 0.7);
            border-radius: 4px;
            padding: 0.3rem 0.5rem;
            color: var(--color-accent);
            font-size: 1.4rem;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }

        .nav-link {
            position: relative;
            padding: 0.4rem 0.9rem;
            border-radius: 999px;
            border: 1px solid rgba(226, 206, 114, 0.6);
            font-size: 1.05rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            transition: background-color 0.2s ease, color 0.2s ease,
                        transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .nav-link:hover,
        .nav-link:focus-visible {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
            transform: translateY(-1px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
            border-color: var(--color-accent);
        }

        .nav-link.active {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
            border-color: var(--color-accent);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
        }

        /* Buttons – konsistent und gut lesbar */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 0.65rem 1.6rem;
            border-radius: 999px;
            border: 1px solid var(--color-accent);
            background-color: transparent;
            color: var(--color-accent);
            font-size: 1.15rem;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            cursor: pointer;
            transition: background-color 0.2s ease, color 0.2s ease,
                        transform 0.1s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }

        .btn-sm {
            padding: 0.45rem 1.2rem;
            font-size: 1rem;
        }

        /* Primäre Buttons (Kontakt aufnehmen, Jetzt anfragen, Anfrage senden) */
        .btn-primary {
            background-color: var(--color-bg-alt); /* brauner HG */
            color: var(--color-accent);
            border-color: var(--color-accent);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
        }

        /* Hover für sekundäre Buttons (Leistungen entdecken, E-Mail schreiben) */
        .btn:not(.btn-primary):hover,
        .btn:not(.btn-primary):focus-visible {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(0, 0, 0, 0.45);
            border-color: var(--color-accent);
        }

        /* Hover für primäre Buttons */
        .btn-primary:hover,
        .btn-primary:focus-visible {
            background-color: var(--color-accent);
            color: var(--color-text-dark);
            border-color: var(--color-accent-soft);
            transform: translateY(-1px);
            box-shadow: 0 5px 14px rgba(0, 0, 0, 0.45);
        }

        /* HOME / Hero – Headerbild als eigener Block unter dem Menü */
        .section-home {
            padding: 0 0 1.5rem;
            background: none;
        }

        .header-image {
    width: 100vw;
    margin-left: 50%;
    transform: translateX(-50%);
    margin-top: calc(-1 * var(--header-height)); /* schiebt das Bild um 70px nach oben */
}

        .header-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .section-home .section-inner {
            margin: 3rem auto 0;
            padding: 0 1.5rem;
        }

        .hero {
            display: grid;
            gap: 2.5rem;
            align-items: center;
        }

        .hero-tagline {
            text-transform: uppercase;
            letter-spacing: 0.2em;
            font-size: 0.95rem;
            opacity: 0.9;
            margin-bottom: 0.4rem;
        }

        .hero-logo {
            margin: 0.4rem 0 1.4rem;
        }

        .hero-logo img {
            max-width: 480px;
            width: 100%;
        }

        .hero-subtitle {
            font-size: 1.6rem;
            margin-bottom: 1.5rem;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem;
            margin-top: 2rem;
        }

        .hero-note {
            font-size: 1.05rem;
            opacity: 0.9;
            margin-top: 1.2rem;
        }

        /* Cards (Leistungen etc.) */
        .cards {
            display: grid;
            gap: 1.6rem;
        }

        .card {
            background-color: var(--color-bg-alt);
            border-radius: 18px;
            padding: 1.8rem 1.6rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
            border: 1px solid rgba(226, 206, 114, 0.25);
        }

        .card h3 { margin-top: 0; }
        .card p { margin-bottom: 0.7rem; }

        .card-meta {
            font-size: 0.98rem;
            opacity: 0.9;
        }

        .card-media {
            margin: 0 0 0.9rem;
            border-radius: 12px;
            overflow: hidden;
        }

        .card-media img {
            width: 100%;
            display: block;
        }

        /* Shop teaser */
        .shop-list {
            display: grid;
            gap: 0.8rem;
            margin: 1.4rem 0;
        }

        .shop-item { font-size: 1.05rem; }

        /* Galerie */
        .gallery-grid {
            display: grid;
            gap: 1.1rem;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        }

        .gallery-item {
            background-color: var(--color-bg-alt);
            border-radius: 16px;
            padding: 1rem;
            border: 1px solid rgba(226, 206, 114, 0.25);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
        }

        .gallery-item h3 {
            font-size: 1.2rem;
            margin-bottom: 0.4rem;
        }

        .gallery-item p { font-size: 0.98rem; }

        /* Slideshow in den Galerie-Kacheln */
        .gallery-slideshow {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 0.6rem;
            background-color: var(--color-bg);
        }

        .gallery-slideshow img {
            width: 100%;
            height: auto;
            display: block;
        }

/* Body-Scroll sperren, wenn Lightbox offen ist */
body.no-scroll {
    overflow: hidden;
}

/* Vollbild-Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none; /* per Klasse .lightbox--open aktivieren */
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    z-index: 3000;
}

.lightbox--open {
    display: flex;
}

.lightbox-inner {
    position: relative;
    max-width: 1200px;
    width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-wrapper {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8);
}

.lightbox-caption {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #f5f5f5;
    text-align: center;
}

/* Buttons in der Lightbox */
.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(226, 206, 114, 0.5);
    color: #f5f5f5;
    border-radius: 999px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: background 0.2s ease, transform 0.1s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(226, 206, 114, 0.8);
    color: #222;
}

.lightbox-close {
    top: 12px;
    right: 12px;
}

.lightbox-prev {
    top: 50%;
    left: 8px;
    transform: translateY(-50%);
}

.lightbox-next {
    top: 50%;
    right: 8px;
    transform: translateY(-50%);
}

        /* Über uns */
        .about-layout {
            display: grid;
            gap: 2rem;
            align-items: center;
        }

        .about-photo-wrap {
            max-width: 360px;
            justify-self: center;
            border-radius: 18px;
            padding: 0.5rem;
            background: linear-gradient(135deg, rgba(226, 206, 114, 0.2), rgba(255, 255, 255, 0));
        }

        .about-photo-wrap img {
            border-radius: 16px;
            box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
        }

        .about-text p { margin-bottom: 0.9rem; }

        .about-roles {
            margin-top: 1rem;
            padding: 1rem 1.2rem;
            border-radius: 14px;
            background-color: var(--color-bg-alt);
            border: 1px solid rgba(226, 206, 114, 0.35);
            font-size: 1.1rem;
        }

        /* Kontakt */
        .contact-grid {
            display: grid;
            gap: 2.2rem;
        }

        .contact-details p { margin-bottom: 0.6rem; }
        .contact-details a { font-weight: 600; }

        .contact-form {
            background-color: var(--color-bg-alt);
            border-radius: 18px;
            padding: 1.7rem 1.5rem 1.5rem;
            box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55);
            border: 1px solid rgba(226, 206, 114, 0.3);
        }

        .contact-form-group { margin-bottom: 1.1rem; }

        .contact-form label {
            display: block;
            font-size: 1.05rem;
            margin-bottom: 0.3rem;
        }

        .contact-form input,
        .contact-form textarea {
            width: 100%;
            padding: 0.55rem 0.75rem;
            border-radius: 8px;
            border: 1px solid rgba(226, 206, 114, 0.45);
            background-color: #fdfaf0;
            color: var(--color-text-dark);
            font-size: 1rem;
            font-family: inherit;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            outline: 2px solid var(--color-accent);
            outline-offset: 1px;
            border-color: var(--color-accent);
        }

        .contact-form textarea {
            min-height: 120px;
            resize: vertical;
        }

        .checkbox-row {
            display: flex;
            align-items: flex-start;
            gap: 0.5rem;
            font-size: 0.95rem;
        }

        .checkbox-row input {
            width: auto;
            margin-top: 0.2rem;
        }

        .form-message {
            margin-bottom: 0.85rem;
            padding: 0.6rem 0.8rem;
            border-radius: 8px;
            font-size: 0.98rem;
            display: none;
        }

        .form-message--visible { display: block; }
        .form-message--success {
            background-color: rgba(180, 245, 178, 0.12);
            border: 1px solid var(--color-success);
        }
        .form-message--error {
            background-color: rgba(255, 155, 155, 0.12);
            border: 1px solid var(--color-error);
        }

        .contact-note {
            margin-top: 0.9rem;
            font-size: 0.95rem;
            opacity: 0.9;
        }

        /* Impressum */
        .section-impressum { background-color: #454444; }

        .impressum-content p,
        .impressum-content li,
        .impressum-content a {
            font-size: 1rem;
        }

        .impressum-content a { text-decoration: underline; }

        /* Footer */
        footer {
            border-top: 1px solid rgba(226, 206, 114, 0.35);
            padding: 1.2rem 1.5rem 1.4rem;
            font-size: 0.95rem;
        }

        .footer-inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .7rem;
}
/* spans im Footer wie Block-Elemente behandeln */
.footer-inner > span{
  display: block;
}

        .footer-inner span { opacity: 0.9; }

        /* Decorative corners */
        .corner {
            position: fixed;
            z-index: 2001;
            pointer-events: none;
            opacity: 0.9;
        }

        .corner-top-left {
            top: 0;
            left: 0;
            width: 260px;
            max-width: 45vw;
        }

        .corner-bottom-right {
            bottom: 0;
            right: 0;
            width: 260px;
            max-width: 45vw;
        }

        /* Responsive */
        @media (min-width: 640px) {
            .hero {
                grid-template-columns: minmax(0, 1.6fr);
            }
            .section {
                padding: 1.5rem 1.5rem;
            }
        }

        @media (min-width: 768px) {
            body { font-size: 18px; }
            .cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
            .about-layout { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr); }
            .contact-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr); }
        }

        @media (max-width: 880px) {
            nav { position: relative; }

            .nav-toggle { display: inline-flex; }

            .nav-links {
                position: absolute;
                right: 0;
                top: calc(var(--header-height) - 0.2rem);
                flex-direction: column;
                align-items: flex-end;
                background-color: rgba(63, 63, 63, 0.98);
                padding: 0.5rem 0.75rem 0.6rem;
                border-radius: 10px;
                border: 1px solid rgba(226, 206, 114, 0.4);
                transform-origin: top right;
                transform: scaleY(0.8);
                opacity: 0;
                pointer-events: none;
                transition: opacity 0.15s ease, transform 0.15s ease;
            }

            .nav-links.nav-links--open {
                opacity: 1;
                pointer-events: auto;
                transform: scaleY(1);
            }

            .nav-link {
                width: 100%;
                text-align: right;
                padding: 0.35rem 0.9rem;
            }
        }
		.sticky-cta{
  position:fixed;
  left:0; right:0; bottom:0;
  display:none;
  gap:0.6rem;
  padding:0.6rem 0.8rem;
  background:rgba(60,59,59,0.95);
  border-top:1px solid rgba(226,206,114,0.35);
  z-index:2500;
}
.sticky-btn{
  flex:1;
  text-align:center;
  padding:0.75rem 0.9rem;
  border-radius:999px;
  border:1px solid rgba(226,206,114,0.7);
  color:var(--color-accent);
  font-weight:600;
  letter-spacing:0.04em;
}
.sticky-btn--primary{
  background:var(--color-accent);
  color:var(--color-text-dark);
  border-color:var(--color-accent);
}
@media (max-width: 880px){
  .sticky-cta{ display:flex; }
  body{ padding-bottom:70px; } /* Platz für Sticky-Leiste */
}
.field-hint{
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.field-error{
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: var(--color-error);
}
.social-links{
  display:flex;
  gap:.9rem;
  flex-wrap:wrap;
  justify-content:center;
  margin-top:.2rem;
}
.social-links a{
  text-decoration:none;
  border:1px solid rgba(255,255,255,.25);
  padding:.35rem .6rem;
  border-radius:999px;
}
.social-links a:hover{
  border-color: rgba(255,255,255,.55);
}
/* DSGVO Hinweis im Footer */
.privacy-note{
  margin: .3rem auto 0;
  max-width: 80ch;
  font-size: .9rem;
  opacity: .85;
  line-height: 1.35;
}
    </style>

/* ===== FINAL FIX Dropdown Galerie ===== */

/* Wichtig: verhindert dass Element volle Breite bekommt */
.nav-links {
  align-items: center;
}

/* Nur so breit wie Inhalt */
.nav-item{
  position: relative;
  display: inline-block;
}

/* Dropdown exakt unter Galerie */
.nav-item .dropdown{
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  flex-direction: column;
  margin-top: 6px; /* kleine visuelle Distanz ohne Hover-Abbruch */
  z-index: 2000;
}

/* Hover stabil halten */
.nav-item:hover .dropdown{
  display: flex;
}

/* Klickfläche verbessern (Hover-Brücke) */
.nav-item::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 8px;
}

/* Styling unverändert lassen */
.dropdown .nav-link{
  display: inline-block;
  white-space: nowrap;
}

/* Mobile */
@media (max-width: 880px){
  .nav-item{
    display: block;
    width: 100%;
  }

  .nav-item .dropdown{
    position: static;
    display: none;
    margin-top: 5px;
  }

  .nav-item.open .dropdown{
    display: block;
  }
}
