
:root {
    --nav-h: 86px;
    --cream: #f6f3ee;
    --paper: #ffffff;
    --tint: #eee8df;
    --ink: #29221c;
    --muted: #6e645b;
    --brown: #493522;
    --gold: #b98550;
    --line: rgba(57, 44, 33, .16);
    --shadow: 0 18px 55px rgba(46, 34, 23, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body { margin: 0; font-family: Arial, Helvetica, sans-serif; color: var(--ink); background: var(--cream); line-height: 1.75; }
img { display: block; max-width: 100%; }
a { color: inherit; }

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-h);
    padding: 0 3vw;
    display: flex;
    align-items: center;
    gap: 34px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 8px 30px rgba(30,20,12,.08);
    backdrop-filter: blur(14px);
}

.nav-logo { flex: 0 0 220px; }
.nav-logo img { width: 220px; filter: invert(1); }

.nav-links {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 1.7vw, 28px);
}
.nav-links a {
    position: relative;
    font-size: .89rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: .045em;
}
.nav-links a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -9px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.phone-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 21px;
    color: #fff;
    background: var(--brown);
    border-radius: 3px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
}

.menu-toggle { display: none; margin-left: auto; padding: 8px; border: 0; background: transparent; }
.menu-toggle span { display: block; width: 27px; height: 2px; margin: 6px 0; background: var(--ink); }

.hero {
    position: relative;
    min-height: 820px;
    padding: calc(var(--nav-h) + 70px) 6vw 90px;
    display: grid;
    place-items: center;
    background: url("images/werkstatt.jpg") center center / cover no-repeat;
}
.hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(22,16,11,.58), rgba(22,16,11,.34)), linear-gradient(180deg, rgba(22,16,11,.16), rgba(22,16,11,.58));
}
.hero-content {
    position: relative;
    z-index: 1;
    width: min(900px, 88vw);
    text-align: center;
    color: white;
}
.hero-logo {
    width: min(780px, 86vw);
    margin: 0 auto;
}
.hero-content p {
    margin: 28px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.3);
    font-size: clamp(1rem, 2.1vw, 1.45rem);
}
.primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 28px;
    min-width: 260px;
    padding: 15px 25px;
    color: #fff;
    background: linear-gradient(135deg, #bb8651, #9d6b3a);
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
    box-shadow: 0 10px 25px rgba(34,22,12,.24);
    transition: transform .2s ease;
}
.primary-button:hover { transform: translateY(-2px); }

.service-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1380px;
    margin: 0 auto;
    padding: 38px 3vw;
    background: var(--paper);
}
.service-strip article {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 20px;
    padding: 10px 34px;
    border-right: 1px solid var(--line);
}
.service-strip article:last-child { border-right: 0; }
.service-icon {
    display: grid;
    place-items: center;
    width: 60px; height: 70px;
    border: 2px solid var(--brown);
    color: var(--brown);
    font-size: 2rem;
}
.service-strip h3 { margin: 0 0 6px; font-size: 1rem; text-transform: uppercase; letter-spacing: .03em; }
.service-strip p { margin: 0; color: var(--muted); font-size: .93rem; line-height: 1.55; }

.section { padding: 105px 6vw; }
.section-tint { background: var(--tint); }
.section > h2, .shop-card h2 {
    max-width: 1180px;
    margin: 0 auto 45px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.8rem, 5vw, 5rem);
    line-height: 1;
}
.section-kicker {
    max-width: 1180px;
    margin: 0 auto 10px;
    color: var(--gold);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}
.section-intro { max-width: 1180px; margin: -20px auto 42px; color: var(--muted); }

.about-grid, .contact-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(320px, .75fr);
    gap: 60px;
    align-items: start;
}
.about-text h3, .shop-cta h3, .news-body h3, .contact-card h3 {
    margin: 38px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.9rem;
    line-height: 1.25;
}
.about-text h3:first-child { margin-top: 0; }
.about-text p { font-size: 1.04rem; }
.service-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    padding: 0;
    list-style: none;
}
.service-list li { position: relative; padding-left: 24px; }
.service-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

.info-panel, .contact-card, .legal-card, .shop-card {
    border: 1px solid var(--line);
    background: rgba(255,255,255,.84);
    box-shadow: var(--shadow);
}
.info-panel { padding: 34px; border-radius: 4px; }
.info-panel > div + div { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.info-panel span, .shop-cta > span, .news-label {
    color: var(--gold);
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.info-panel p { margin: 6px 0 0; }
.info-panel a { text-decoration: none; font-weight: 600; }

.gallery-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}
.gallery-item {
    aspect-ratio: 4/3;
    padding: 0;
    border: 0;
    overflow: hidden;
    cursor: zoom-in;
    background: #cfc7bd;
    box-shadow: var(--shadow);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .38s ease; }
.gallery-item:hover img { transform: scale(1.055); }

.shop-card {
    max-width: 1180px;
    margin: 0 auto;
    padding: 50px;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 70px;
}
.shop-card h2 { margin: 0 0 28px; }
.shop-cta { padding-left: 40px; border-left: 1px solid var(--line); }
.shop-cta h3 { margin-top: 9px; font-size: 2.2rem; }

.news-stack { max-width: 1180px; margin: 0 auto; display: grid; gap: 38px; }
.news-card {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    background: var(--paper);
    box-shadow: var(--shadow);
}
.news-card > img { width: 100%; height: 100%; min-height: 460px; object-fit: cover; }
.news-body { padding: 46px; }
.news-date { margin: 8px 0 0; color: var(--muted); font-weight: 600; }
.news-body h3 { margin-top: 8px; font-size: 2.2rem; }
.text-link { color: var(--brown); font-weight: 700; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.contact-card { padding: 38px; }
.contact-card h3 { margin-top: 0; }
.contact-card a { text-decoration: none; font-weight: 600; }
.map-wrap { min-height: 480px; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 480px; border: 0; box-shadow: var(--shadow); }

.legal-section { padding-top: 90px; padding-bottom: 90px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 38px; }
.notice { padding: 16px 18px; border-left: 4px solid var(--gold); background: rgba(185,133,80,.11); }

footer {
    min-height: 120px;
    padding: 30px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    color: white;
    background: #2f2117;
}
footer img { width: 220px; }
footer p { margin: 0; }
footer div { display: flex; gap: 20px; }
footer a { text-decoration: none; }

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 30px;
    background: rgba(0,0,0,.93);
}
.lightbox.open { display: flex; }
.lightbox-image { max-width: 88vw; max-height: 86vh; width: auto; height: auto; }
.lightbox button {
    position: absolute;
    border: 0;
    color: white;
    background: rgba(255,255,255,.13);
    cursor: pointer;
}
.lightbox-close { top: 20px; right: 24px; width: 48px; height: 48px; border-radius: 50%; font-size: 2rem; }
.lightbox-prev, .lightbox-next { top: 50%; width: 52px; height: 72px; transform: translateY(-50%); font-size: 3rem; }
.lightbox-prev { left: 22px; } .lightbox-next { right: 22px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 1180px) {
    .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 18px 5vw; flex-direction: column; align-items: flex-start; background: white; box-shadow: 0 14px 28px rgba(30,20,12,.12); }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }
    .phone-button { margin-left: 0; }
    .service-strip { grid-template-columns: repeat(2, 1fr); }
    .service-strip article:nth-child(2) { border-right: 0; }
    .service-strip article:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 820px) {
    :root { --nav-h: 72px; }
    .site-nav { padding-inline: 20px; }
    .nav-logo { flex-basis: 175px; }
    .nav-logo img { width: 175px; }
    .phone-button { display: none; }
    .hero { min-height: 680px; }
    .service-strip { grid-template-columns: 1fr; }
    .service-strip article { border-right: 0; border-bottom: 1px solid var(--line); }
    .about-grid, .contact-grid, .shop-card, .news-card { grid-template-columns: 1fr; }
    .shop-cta { padding-left: 0; padding-top: 32px; border-left: 0; border-top: 1px solid var(--line); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .news-card > img { min-height: 300px; }
    .service-list { grid-template-columns: 1fr; }
    footer { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
    .section { padding: 78px 20px; }
    .hero { min-height: 610px; padding-inline: 20px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .shop-card, .news-body, .info-panel, .contact-card, .legal-card { padding: 26px; }
    .service-strip article { padding-inline: 20px; }
    .service-strip { padding-inline: 0; }
    .lightbox-prev, .lightbox-next { top: auto; bottom: 18px; transform: none; }
}


.service-icon {
    border: 0;
    width: 66px;
    height: 66px;
}
.service-icon svg {
    width: 58px;
    height: 58px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.3;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.service-strip article {
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.service-strip article:hover {
    transform: translateY(-4px);
    background: #faf7f2;
    box-shadow: 0 14px 30px rgba(46,34,23,.08);
}
.service-strip article:hover .service-icon {
    transform: scale(1.05);
}
.section-workshop {
    background: #2f2117;
    color: #fff;
}
.section-workshop .section-kicker {
    color: #d3a16e;
}
.workshop-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr);
    gap: 60px;
    align-items: center;
}
.workshop-copy h3 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2.2rem;
}
.workshop-copy p {
    color: rgba(255,255,255,.82);
}
.workshop-collage {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    grid-template-rows: 230px 230px;
    gap: 14px;
}
.workshop-collage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(0,0,0,.28);
}
.workshop-collage img:first-child {
    grid-row: 1 / 3;
}
.gallery-item {
    position: relative;
}
.gallery-item span {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 40px 16px 14px;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    text-align: left;
    background: linear-gradient(transparent, rgba(0,0,0,.74));
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .25s ease, transform .25s ease;
}
.gallery-item:hover span {
    opacity: 1;
    transform: none;
}
.gallery-grid {
    grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 900px) {
    .workshop-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .workshop-collage { grid-template-columns: 1fr; grid-template-rows: auto; }
    .workshop-collage img:first-child { grid-row: auto; }
    .workshop-collage img { height: 260px; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item span { opacity: 1; transform: none; }
}


.etsy-card {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}
.etsy-image img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}
.etsy-copy {
    padding: 58px;
    align-self: center;
}
.etsy-copy .section-kicker {
    margin-left: 0;
}
.etsy-copy h2 {
    margin: 0 0 26px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.7rem, 5vw, 4.6rem);
    line-height: 1;
}
.etsy-button {
    background: linear-gradient(135deg, #f1641e, #d95012);
}
.shop-note {
    display: block;
    margin-top: 14px;
    color: var(--muted);
}

.partner-section {
    padding: 75px 6vw 85px;
    text-align: center;
    background: #f8f6f2;
    border-top: 1px solid var(--line);
}
.partner-section .section-kicker {
    margin-left: auto;
    margin-right: auto;
}
.partner-section h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
}
.partner-section > p {
    max-width: 720px;
    margin: 16px auto 38px;
    color: var(--muted);
}
.partner-grid {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.partner-card {
    min-height: 170px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: #fff;
    border: 1px solid var(--line);
    text-decoration: none;
    box-shadow: 0 12px 32px rgba(46,34,23,.08);
    transition: transform .25s ease, box-shadow .25s ease;
}
.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 42px rgba(46,34,23,.14);
}
.partner-card img {
    max-width: 220px;
    max-height: 72px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.partner-card span {
    font-size: .9rem;
    font-weight: 600;
}

@media (max-width: 850px) {
    .etsy-card {
        grid-template-columns: 1fr;
    }
    .etsy-image img {
        min-height: 360px;
        max-height: 520px;
    }
    .partner-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 520px) {
    .etsy-copy {
        padding: 28px;
    }
    .partner-section {
        padding-inline: 20px;
    }
}

.etsy-image img { object-position: center center; }


.news-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 26px;
}
.news-gallery .gallery-item {
    aspect-ratio: 4 / 3;
    box-shadow: none;
}
@media (max-width: 520px) {
    .news-gallery { grid-template-columns: 1fr; }
}


/* Runde, klar erkennbare Leistungs-Icons */
.service-strip article {
    grid-template-columns: 82px 1fr;
    align-items: center;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 1px solid rgba(73, 53, 34, .22);
    background: linear-gradient(145deg, #ffffff, #f2ebe3);
    color: var(--brown);
    box-shadow:
        0 10px 24px rgba(46, 34, 23, .11),
        inset 0 0 0 6px rgba(185, 133, 80, .08);
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        box-shadow .25s ease;
}

.service-icon svg {
    width: 42px;
    height: 42px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.35;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-strip article:hover .service-icon {
    transform: translateY(-3px) scale(1.055);
    color: #fff;
    background: linear-gradient(145deg, #bb8651, #8e6036);
    box-shadow:
        0 15px 30px rgba(46, 34, 23, .18),
        inset 0 0 0 6px rgba(255, 255, 255, .09);
}

@media (max-width: 520px) {
    .service-strip article {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .service-icon {
        width: 62px;
        height: 62px;
    }

    .service-icon svg {
        width: 36px;
        height: 36px;
    }
}

/* Bündige und klar strukturierte Rechtstexte */
.legal-section > .section-kicker,
.legal-section > h2,
.legal-section .legal-card {
    width: 100%;
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
}

.legal-card {
    padding: 46px;
}

.legal-card h3 {
    margin: 34px 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.3;
}

.legal-card h3:first-of-type {
    margin-top: 10px;
}

.legal-card a {
    color: var(--brown);
    font-weight: 600;
}

.map-consent {
    min-height: 480px;
    padding: 44px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background: #eee8df;
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.map-consent h3 {
    margin: 0 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 2rem;
}

.map-consent p {
    max-width: 600px;
    margin: 0;
    color: var(--muted);
}

.map-load-button {
    border: 0;
    cursor: pointer;
}

@media (max-width: 520px) {
    .legal-card,
    .map-consent {
        padding: 28px;
    }
}
