/* Schriften lokal eingebunden statt per Google-Fonts-CDN-Aufruf (DSGVO) */
@font-face { font-family: 'Aboreto'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/aboreto-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/montserrat-latin-300-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-latin-400-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: italic; font-weight: 400; font-display: swap; src: url('fonts/montserrat-latin-400-italic.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-latin-500-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/montserrat-latin-600-normal.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-latin-700-normal.woff2') format('woff2'); }

:root {
  --color-cream: #fcf9f3;
  --color-cream-deep: #f5efe3;
  --color-gold: #c29935;
  --color-gold-light: #dab965;
  --color-anthracite: #3d3c3b;
  --color-anthracite-soft: #5f5f5f;
  --font-display: 'Aboreto', serif;
  --font-body: 'Montserrat', sans-serif;
  --max-width: 1180px;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: var(--font-body); color: var(--color-anthracite); background: var(--color-cream); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, .display { font-family: var(--font-display); font-weight: 400; color: var(--color-anthracite); line-height: 1.25; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.2rem, 4vw, 3.4rem); }
h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
a { color: inherit; }
.gold { color: var(--color-gold); }
.wrap { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.18em; font-size: 0.78rem; color: var(--color-gold); font-weight: 600; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; font-size: 0.95rem; letter-spacing: 0.03em; padding: 0.9rem 1.8rem; border-radius: 2px; text-decoration: none; cursor: pointer; border: 1.5px solid var(--color-gold); transition: all 0.2s ease; }
.btn-primary { background: var(--color-gold); color: var(--color-cream); }
.btn-primary:hover { background: var(--color-anthracite); border-color: var(--color-anthracite); }
.btn-outline { background: transparent; color: var(--color-anthracite); border-color: var(--color-anthracite-soft); }
.btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
section { padding: 5rem 0; }
@media (max-width: 640px) { section { padding: 3rem 0; } }

/* header/footer */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(252, 249, 243, 0.92); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(58, 58, 58, 0.08); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 1rem; padding-bottom: 1rem; }
.brand { display: flex; align-items: center; text-decoration: none; }
.brand-lockup { height: 120px; width: auto; display: block; }
.footer-brand-mark { margin-bottom: 1.1rem; }
.footer-brand-mark .brand-lockup { height: 100px; }
.main-nav ul { list-style: none; display: flex; gap: 1.9rem; margin: 0; padding: 0; }
.main-nav a, .main-nav span { text-decoration: none; font-size: 0.92rem; font-weight: 500; letter-spacing: 0.02em; color: var(--color-anthracite); }
.main-nav span { color: #b6b0a2; cursor: default; }
.main-nav a:hover { color: var(--color-gold); }
.header-cta { flex-shrink: 0; padding: 0.7rem 1.4rem; font-size: 0.85rem; }
@media (max-width: 900px) { .main-nav { display: none; } }
.site-footer { background: var(--color-anthracite); color: #efece5; padding: 4rem 0 1.5rem; margin-top: 4rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2.5rem; }
.footer-brand p { font-family: var(--font-display); color: var(--color-gold-light); font-size: 0.95rem; max-width: 260px; }
.footer-col h3 { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; color: var(--color-gold-light); margin-bottom: 0.9rem; }
.footer-col p { margin: 0 0 0.6rem; font-size: 0.9rem; color: #cfcbc2; }
.footer-col a { text-decoration: none; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-bottom { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); font-size: 0.8rem; color: #9c988f; }
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }

/* home */
.hero { position: relative; min-height: 88vh; display: flex; align-items: flex-end; overflow: hidden; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 25%; }
.hero-media-overlay { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(61,60,59,0.5) 0%, rgba(61,60,59,0.14) 55%, rgba(61,60,59,0.05) 100%); }
.hero-wrap { position: relative; width: 100%; display: flex; justify-content: flex-end; }
.hero-content { color: var(--color-cream); max-width: 480px; background: rgba(61,60,59,0.68); padding: 2.4rem 2.6rem; margin-bottom: 3.5rem; }
.hero-content h1 { color: var(--color-cream); }
.hero-content .gold { color: var(--color-gold); }
.hero-content .eyebrow { color: var(--color-gold); }
.hero-lead { font-size: 1.05rem; color: #e9e4d8; }
.hero-actions { display: flex; gap: 1rem; margin-top: 1.8rem; flex-wrap: wrap; }
.hero .btn-outline { color: var(--color-cream); border-color: rgba(252,249,243,0.6); }
.hero .btn-outline:hover { border-color: var(--color-gold); color: var(--color-gold); }
.statement { padding: 4rem 0; background: var(--color-cream-deep); }
.statement-card { max-width: 780px; margin: 0 auto; text-align: center; padding: 3rem 3.5rem; }
.statement-text { font-size: clamp(1.3rem, 2.4vw, 1.8rem); }
.statement-text .re-small { font-size: 0.68em; }
.statement-sig { margin-top: 1rem; color: var(--color-anthracite-soft); font-size: 0.95rem; }
.section-head { text-align: center; margin-bottom: 2.8rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.product-card { display: block; text-decoration: none; color: inherit; background: #fff; border: 1px solid rgba(58,58,58,0.08); }
.product-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.product-card-info { padding: 1rem 1.2rem 1.4rem; }
.product-card-info h3 { margin: 0 0 0.3rem; font-size: 1.15rem; }
.product-card-info p { margin: 0; font-size: 0.88rem; color: var(--color-anthracite-soft); }
.placeholder-fill { aspect-ratio: 1495/2362; background: repeating-linear-gradient(45deg, #efe9dc, #efe9dc 10px, #f5f1e6 10px, #f5f1e6 20px); display: flex; align-items: center; justify-content: center; color: var(--color-anthracite-soft); font-size: 0.85rem; text-align: center; }
.lines-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.line-card { display: block; text-decoration: none; color: inherit; background: #fff; padding: 2.2rem 1.8rem; border-top: 3px solid var(--color-gold); }
.line-card h3 { margin: 0 0 0.6rem; }
.line-card p { font-size: 0.92rem; color: var(--color-anthracite-soft); margin: 0 0 1rem; }
.line-link { font-size: 0.85rem; font-weight: 600; color: var(--color-gold); }
.press { background: var(--color-anthracite); padding: 2.5rem 0; }
.press-inner { text-align: center; }
.press-names { color: #e9e4d8; font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 0.03em; margin: 0.5rem 0 0; }
.save-the-date, .save-the-date-page { line-height: 0; }
.save-the-date a, .save-the-date-page a { display: block; cursor: zoom-in; }
.save-the-date img, .save-the-date-page img { width: 100%; height: auto; display: block; }

/* lightbox */
.lightbox-overlay { position: fixed; inset: 0; background: rgba(20,18,15,0.88); display: flex; align-items: center; justify-content: center; padding: 2.2rem; z-index: 10000; opacity: 0; pointer-events: none; transition: opacity 0.22s ease; }
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-box { position: relative; max-width: min(1100px, 92vw); max-height: 90vh; width: 100%; }
.lightbox-close { position: absolute; top: -2.6rem; right: 0; background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; cursor: pointer; padding: 0.2rem 0.4rem; }
.lightbox-content { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.lightbox-content img { max-width: 100%; max-height: 85vh; display: block; border-radius: 6px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.lightbox-content iframe { width: 100%; height: 80vh; border: none; background: #fff; border-radius: 6px; }
.lightbox-content video { max-width: 100%; max-height: 80vh; display: block; border-radius: 6px; background: #000; }
@media (max-width: 700px) { .lightbox-close { top: -2.4rem; font-size: 1.9rem; } .lightbox-content iframe { height: 70vh; } }

.instagram-cta { background: var(--color-cream-deep); }
.instagram-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.instagram-inner h2 { margin: 0.3rem 0 0.6rem; }
.instagram-inner p { margin: 0; color: var(--color-anthracite-soft); max-width: 480px; }
@media (max-width: 800px) { .product-grid, .lines-grid { grid-template-columns: 1fr; } .hero { min-height: 78vh; } .hero-content { max-width: none; padding: 1.8rem 1.6rem; margin-bottom: 2rem; } .statement-card { padding: 2.2rem 1.6rem; } }

/* product detail */
.breadcrumb { padding: 1.5rem 0 0; font-size: 0.85rem; color: var(--color-anthracite-soft); }
.breadcrumb a { text-decoration: none; color: var(--color-anthracite-soft); }
.breadcrumb a:hover { color: var(--color-gold); }
.breadcrumb span { color: var(--color-anthracite); }
.product { padding-top: 2rem; }
.product-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.product-gallery img { width: 100%; height: auto; display: block; border: 1px solid rgba(58,58,58,0.08); }
.product-info h1 { margin: 0.2rem 0 1.2rem; }
.product-voice { font-family: var(--font-body); font-style: italic; font-size: 1.15rem; line-height: 1.6; color: var(--color-anthracite); border-left: 3px solid var(--color-gold); padding-left: 1.2rem; margin: 0 0 2rem; }
.product-facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin: 0 0 2rem; padding: 1.4rem 0; border-top: 1px solid rgba(58,58,58,0.1); border-bottom: 1px solid rgba(58,58,58,0.1); }
.product-facts dt { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-anthracite-soft); margin-bottom: 0.3rem; }
.product-facts dd { margin: 0; font-weight: 600; }
.product-facts .price { color: var(--color-gold); font-size: 1.2rem; }
.product-actions { margin-bottom: 2.5rem; }
.product-hint { font-size: 0.82rem; color: var(--color-anthracite-soft); margin-top: 0.7rem; }
.product-story h3 { margin-bottom: 0.7rem; }
.product-story p { color: var(--color-anthracite-soft); }
.product-ctabox { margin-top: 1.8rem; padding: 1.6rem 1.8rem; background: var(--color-cream-deep); border-left: 3px solid var(--color-gold); }
.product-ctabox .ctabox-heading { font-weight: 700; margin: 0 0 0.4rem; color: var(--color-anthracite); }
.product-ctabox p { color: var(--color-anthracite-soft); margin: 0 0 1rem; }
.product-ctabox .btn { margin-top: 0.2rem; }
.cross-promo { background: var(--color-cream-deep); text-align: center; margin-top: 3rem; }
.cross-promo-inner { max-width: 560px; margin: 0 auto; }
.cross-promo-inner p:last-of-type { color: var(--color-anthracite-soft); margin-bottom: 1.8rem; }
@media (max-width: 800px) { .product-grid-2 { grid-template-columns: 1fr; gap: 2rem; } .product-facts { grid-template-columns: 1fr 1fr; } }

/* lichtwesen */
.page-head { padding: 3rem 0 1rem; max-width: 680px; margin: 0 auto; }
.lead { color: var(--color-anthracite-soft); }
.featured-photo { margin: 2rem auto 3.5rem; text-align: center; max-width: 560px; }
.featured-photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.photo-caption { font-size: 0.85rem; color: var(--color-anthracite-soft); margin-top: 0.7rem; }
.lichtwesen-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2.5rem; margin-bottom: 2rem; }
.lw-card { background: #fff; border: 1px solid rgba(58,58,58,0.08); display: flex; flex-direction: column; }
.lw-tag { width: 100%; height: auto; display: block; }
.lw-photo-pending { aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; background: var(--color-cream-deep); color: var(--color-anthracite-soft); font-size: 0.85rem; letter-spacing: 0.04em; }
.lw-body { padding: 1.6rem 1.8rem 2rem; }
.lw-body h3 { margin: 0 0 0.8rem; }
.lw-body blockquote { margin: 0 0 1.3rem; font-family: var(--font-body); font-style: italic; font-size: 0.98rem; line-height: 1.55; color: var(--color-anthracite-soft); border-left: 2px solid var(--color-gold); padding-left: 1rem; }
.lw-facts { display: flex; gap: 2.2rem; margin: 0 0 1.4rem; }
.lw-facts dt { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-anthracite-soft); margin-bottom: 0.25rem; }
.lw-facts dd { margin: 0; font-weight: 600; }
.lw-facts .price { color: var(--color-gold); }
.note-block { margin-bottom: 4rem; }
.note { font-size: 0.82rem; color: var(--color-anthracite-soft); background: var(--color-cream-deep); padding: 1rem 1.3rem; border-left: 3px solid var(--color-gold); }
@media (max-width: 800px) { .lichtwesen-grid { grid-template-columns: 1fr; } }

/* nur für dich */
.intro { padding: 3rem 0 1rem; max-width: 680px; }
.process { background: var(--color-cream-deep); margin-top: 2rem; }
.process-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: 3rem; align-items: center; }
.process-media img { width: 100%; height: auto; display: block; border: 1px solid rgba(58,58,58,0.08); }
.process-steps { list-style: none; counter-reset: step; margin: 0 0 2rem; padding: 0; }
.process-steps li { counter-increment: step; position: relative; padding-left: 2.6rem; margin-bottom: 1.1rem; color: var(--color-anthracite-soft); }
.process-steps li strong { color: var(--color-anthracite); }
.process-steps li::before { content: counter(step); position: absolute; left: 0; top: -0.1rem; width: 1.8rem; height: 1.8rem; border-radius: 50%; background: var(--color-gold); color: var(--color-cream); font-weight: 700; font-size: 0.85rem; display: flex; align-items: center; justify-content: center; }
.giftline { text-align: center; max-width: 640px; margin: 0 auto; }
.giftline-text { color: var(--color-anthracite-soft); }
.beziehungskiste { background: var(--color-anthracite); color: #efece5; }
.bk-inner { max-width: 720px; text-align: center; margin: 0 auto; }
.bk-inner h2 { color: var(--color-cream); }
.bk-text { color: #cfcbc2; margin-bottom: 2.4rem; }
.bk-steps { display: flex; justify-content: center; gap: 3rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.bk-steps > div { max-width: 160px; }
.bk-emoji { font-size: 2rem; display: block; margin-bottom: 0.6rem; }
.bk-steps p { margin: 0; font-size: 0.9rem; color: #efece5; }
.bk-cta { border-color: var(--color-gold-light); color: var(--color-gold-light); }
.bk-cta:hover { background: var(--color-gold-light); color: var(--color-anthracite); }
.bk-image { width: 100%; max-width: 420px; height: auto; display: block; margin: 1.6rem auto; border: 1px solid rgba(252,249,243,0.15); }
@media (max-width: 800px) { .process-inner { grid-template-columns: 1fr; } }

/* pinselstreiche */
.banner { line-height: 0; }
.banner img { width: 100%; height: auto; display: block; }
.article { max-width: 720px; padding-top: 1rem; margin: 0 auto; }
.post-meta { margin-bottom: 0.6rem; }
.post h2 { margin: 0 0 0.6rem; }
.post-date { font-size: 0.85rem; color: var(--color-anthracite-soft); margin-bottom: 1.8rem; }
.post p { color: var(--color-anthracite-soft); }
.post-quote { font-family: var(--font-body); font-style: italic; font-size: 1.2rem; line-height: 1.6; color: var(--color-anthracite); border-left: 3px solid var(--color-gold); padding-left: 1.2rem; margin: 2rem 0; }
.post a { color: var(--color-gold); text-decoration: underline; }
.video-post { padding-bottom: 2.4rem; margin-bottom: 2.6rem; border-bottom: 1px solid rgba(58,58,58,0.1); }
.post-video { margin: 0 0 1.6rem; }
.post-video video { width: 100%; max-width: 380px; display: block; margin: 0 auto; border-radius: 6px; box-shadow: 0 14px 34px rgba(58,58,58,0.18); background: #000; }
.press-mentions { background: var(--color-anthracite); text-align: center; padding: 2.2rem 1.5rem; margin: 3.5rem 0 2rem; }
.press-mentions .eyebrow { color: var(--color-gold-light); }
.press-list { list-style: none; margin: 1.2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.9rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.press-list li { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 0.9rem; }
.press-list li:last-child { border-bottom: none; padding-bottom: 0; }
.press-list a { color: #efece5; text-decoration: none; font-size: 0.95rem; }
.press-list a:hover { color: var(--color-gold-light); }
.press-action { display: block; font-size: 0.78rem; color: var(--color-gold-light); margin-top: 0.2rem; letter-spacing: 0.03em; }
.press-pending { color: #cfcbc2; font-size: 0.95rem; }
.press-pending .press-action { color: #9c988f; }
.more-note { text-align: center; }
.more-note p { font-size: 0.85rem; color: var(--color-anthracite-soft); }

/* über mich additions */
.about-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.press { background: var(--color-anthracite); padding: 2.5rem 0; margin-top: 2rem; }
.press-inner { text-align: center; }
.press-inner .eyebrow { color: var(--color-gold-light); }
.press-link { margin-top: 0.8rem; }
.press-link a { color: var(--color-gold-light); font-size: 0.85rem; text-decoration: none; }
.press-link a:hover { text-decoration: underline; }
.about { padding: 3.5rem 0 5rem; display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 3.5rem; align-items: start; }
.about-img img { width: 100%; height: auto; display: block; position: sticky; top: 100px; }
.about-text .lead { font-size: 1.2rem; font-weight: 600; }
.about-text p { color: var(--color-anthracite-soft); }
.closing { color: var(--color-gold); font-size: 1.3rem; margin: 2rem 0; }
@media (max-width: 800px) { .about { grid-template-columns: 1fr; } .about-img img { position: static; } }

/* kontakt */
.placeholder { padding: 5rem 0 2rem; max-width: 640px; }
.placeholder p { color: var(--color-anthracite-soft); margin-bottom: 1rem; }
.note { font-size: 0.85rem; margin-top: 2rem; }

/* Kontakt-Formular */
.kontakt-form-section { padding-top: 0; padding-bottom: 6rem; }
.kontakt-form { max-width: 640px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem; }
.form-group { margin-bottom: 1.4rem; display: flex; flex-direction: column; }
.form-group label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-anthracite-soft); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea { font-family: var(--font-body); font-size: 0.95rem; color: var(--color-anthracite); background: #fff; border: 1.5px solid rgba(58,58,58,0.15); padding: 0.7rem 0.9rem; border-radius: 2px; }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--color-gold); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-actions { margin-top: 0.5rem; }
.form-hint { font-size: 0.82rem; color: var(--color-anthracite-soft); margin-top: 0.8rem; }
.form-hint a { color: var(--color-gold); }
.form-error { max-width: 640px; margin-bottom: 2rem; padding: 1rem 1.3rem; background: var(--color-cream-deep); border-left: 3px solid var(--color-gold); font-size: 0.9rem; color: var(--color-anthracite); }
@media (max-width: 700px) { .form-row { grid-template-columns: 1fr; } }

/* legal pages */
.legal { padding: 3.5rem 0 6rem; max-width: 680px; }
.legal h1 { margin-bottom: 2rem; }
.legal h2 { font-size: 1.1rem; margin: 2.2rem 0 0.6rem; }
.legal p { color: var(--color-anthracite-soft); }
.legal a { color: var(--color-gold); }
.todo { color: var(--color-gold); font-style: italic; }
.hint { margin-top: 3rem; padding: 1rem 1.3rem; background: var(--color-cream-deep); border-left: 3px solid var(--color-gold); font-size: 0.85rem; }

/* Unikate-Detailseiten: Video-Einbettung */
.product-video { line-height: 0; }
.product-video video { width: 100%; max-width: 340px; display: block; margin: 0.5rem auto 0; border-radius: 6px; box-shadow: 0 14px 34px rgba(58,58,58,0.18); background: #000; }
.price-note { font-size: 0.82rem; color: var(--color-anthracite-soft); margin: 0 0 1.6rem; }
.source-note { margin-top: 1.6rem; padding: 0.8rem 1rem; background: var(--color-cream-deep); border-left: 3px solid var(--color-gold); font-size: 0.8rem; color: var(--color-anthracite-soft); font-style: italic; }

/* Entrümpelungs-Aufruf ("zu schade für den Sperrmüll") */
.declutter-cta { background: var(--color-cream-deep); }
.declutter-inner { display: flex; align-items: center; gap: 3rem; flex-wrap: wrap; }
.declutter-illustration { flex: 0 0 auto; width: 190px; }
.declutter-illustration svg { width: 100%; height: auto; display: block; }
.declutter-text { flex: 1 1 320px; }
.declutter-text h2 { margin: 0.3rem 0 0; }
.declutter-lead { color: var(--color-anthracite-soft); max-width: 520px; margin: 0.9rem 0 1.7rem; }
.declutter-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
@media (max-width: 700px) {
  .declutter-inner { flex-direction: column; text-align: center; }
  .declutter-actions { justify-content: center; }
}

/* Unikate-Übersicht: Möbelwege-Teaser */
.moebelwege-teaser { background: var(--color-cream-deep); margin-top: 3.5rem; }
.moebelwege-teaser-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.moebelwege-teaser-inner h2 { margin: 0.3rem 0 0.6rem; }
.moebelwege-teaser-inner p { margin: 0; color: var(--color-anthracite-soft); max-width: 460px; }

/* Möbelwege-Seite */
.moebel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; padding: 1rem 0 3rem; }
.moebel-card { background: #fff; border: 1px solid rgba(58,58,58,0.08); }
.moebel-card-image { position: relative; line-height: 0; }
.moebel-card-image img { width: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }
.sold-badge { position: absolute; top: 0.8rem; right: 0.8rem; background: var(--color-anthracite); color: var(--color-gold-light); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em; padding: 0.35rem 0.7rem; }
.moebel-card-info { padding: 1rem 1.2rem 1.4rem; }
.moebel-card-info h3 { margin: 0 0 0.6rem; font-size: 1.1rem; }
.moebel-card-info blockquote { margin: 0; font-family: var(--font-body); font-style: italic; font-size: 0.92rem; line-height: 1.5; color: var(--color-anthracite-soft); border-left: 2px solid var(--color-gold); padding-left: 0.8rem; }
.moebel-card-info .notiz { margin: 0; font-size: 0.82rem; color: var(--color-anthracite-soft); }

@media (max-width: 900px) { .moebel-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 800px) { .product-grid, .moebel-grid { grid-template-columns: 1fr; } }

/* Geschenke-Seite */
.gift-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; padding: 1rem 0 3rem; }
.gift-card { background: #fff; border: 1px solid rgba(58,58,58,0.08); display: flex; flex-direction: column; }
.gift-card img { width: 100%; height: auto; display: block; }
.gift-body { padding: 1.2rem 1.4rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.gift-body h3 { margin: 0 0 0.5rem; font-size: 1.1rem; }
.gift-body p { margin: 0 0 1.2rem; color: var(--color-anthracite-soft); font-size: 0.92rem; flex: 1; }
.gift-footer { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.gift-footer .price { font-weight: 600; color: var(--color-gold); font-size: 1.05rem; }
.gift-more-note { text-align: center; margin-top: -1.5rem; margin-bottom: 3rem; }
.gift-more-note p { font-size: 0.85rem; color: var(--color-anthracite-soft); }
@media (max-width: 900px) { .gift-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .gift-grid { grid-template-columns: 1fr; } }

/* Pia Pinsel – kleine Gimmicks */
main h1, main h2 { transition: color 0.35s ease; cursor: default; }

.pia-brushstroke { display: block; width: 100%; max-width: 240px; height: 26px; margin: -0.2rem 0 1.1rem; overflow: visible; }
.pia-brush-path { stroke: var(--color-gold); stroke-width: 4; fill: none; stroke-linecap: round; }
.pia-brush-icon { position: fixed; top: 0; left: 0; opacity: 0; pointer-events: none; z-index: 9999; filter: drop-shadow(0 2px 3px rgba(0,0,0,0.2)); will-change: transform, left, top, opacity; }

.pia-sparkle { position: fixed; width: 6px; height: 6px; border-radius: 50%; background: radial-gradient(circle, #f8ecc4 0%, var(--color-gold) 55%, transparent 75%); pointer-events: none; z-index: 9999; opacity: 0; animation: pia-sparkle-float 1.8s ease-out forwards; }
@keyframes pia-sparkle-float { 0% { opacity: 0; transform: translateY(0) scale(0.4); } 15% { opacity: 1; } 100% { opacity: 0; transform: translateY(-38px) scale(1); } }

.pia-sparkle-dust { width: 4px; height: 4px; animation: pia-dust-float 1s ease-out forwards; }
@keyframes pia-dust-float { 0% { opacity: 0; transform: translateY(0) scale(0.3); } 20% { opacity: 1; } 100% { opacity: 0; transform: translateY(-16px) scale(0.9); } }

@media (prefers-reduced-motion: reduce) {
  .pia-brush-icon { display: none; }
  .pia-sparkle { animation: none; display: none; }
}

/* Rückruf-Button (schwebt auf jeder Seite außer Kontakt) */
.rueckruf-btn { position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 500; display: inline-flex; align-items: center; gap: 0.55rem; background: var(--color-gold); color: var(--color-cream); font-family: var(--font-body); font-weight: 600; font-size: 0.88rem; letter-spacing: 0.02em; text-decoration: none; padding: 0.85rem 1.3rem; border-radius: 999px; box-shadow: 0 8px 22px rgba(58,58,58,0.28); transition: background 0.2s ease, transform 0.2s ease; }
.rueckruf-btn:hover { background: var(--color-anthracite); transform: translateY(-2px); }
.rueckruf-btn-icon { font-size: 1.05rem; line-height: 1; }
@media (max-width: 600px) {
  .rueckruf-btn { padding: 0.85rem; border-radius: 50%; }
  .rueckruf-btn-text { display: none; }
}

