@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ═══════════════════════════════════════════════════════════════════
   WERNISAGE – Galerie-Design
   Hell, reduziert, ein einziger Akzentton. Die Bilder tragen die Seite.
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Tokens ─────────────────────────────────────────────────────── */
:root {
  --paper:       #FAF8F5;
  --paper-warm:  #F4F0EA;
  --paper-deep:  #EDE8E0;
  --line:        #E0D9CF;
  --line-soft:   #EFEAE3;

  --ink:         #1C1917;
  --ink-soft:    #554E47;
  --ink-mute:    #8B837A;

  --accent:      #7A5233;
  --accent-dark: #5E3E26;
  --accent-soft: #A67C52;
  --accent-pale: #D8C7B4;

  --dark:        #17130F;
  --dark-soft:   #262019;

  --measure:     1240px;
  --gutter:      clamp(20px, 5vw, 72px);
  --transition:  0.35s cubic-bezier(.2,.7,.3,1);
}

/* ─── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; color: inherit; }
::selection { background: var(--accent-pale); color: var(--ink); }

/* ─── Typografie ─────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.handwritten { font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

.section {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section-header {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 56px;
}
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
  color: var(--ink);
}
.section-desc {
  margin-top: 20px;
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
}
/* Trenner: schlichte Linie statt Symbol */
.divider {
  width: 40px;
  height: 1px;
  background: var(--accent-pale);
  margin: 24px auto 0;
}
.divider-icon { display: none; }

/* ─── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 30px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 0;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--ink); color: var(--paper); }
.btn-primary:hover { background: var(--accent); }
.btn-gold { background: var(--accent); color: var(--paper); }
.btn-gold:hover { background: var(--accent-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
/* auf dunklem Grund */
.page-hero .btn-outline,
.shop-band .btn-outline,
#contact-section .btn-outline {
  color: var(--paper);
  border-color: rgba(250,248,245,.55);
}
.page-hero .btn-outline:hover,
.shop-band .btn-outline:hover,
#contact-section .btn-outline:hover { background: var(--paper); color: var(--ink); }

/* ─── Header ─────────────────────────────────────────────────────── */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 76px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
#header.transparent { background: transparent; }
#header.scrolled {
  background: rgba(250,248,245,.94);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-icon { width: 30px; height: 30px; opacity: .9; }
.logo-text { display: flex; flex-direction: column; line-height: 1.15; }
.logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--paper);
  transition: var(--transition);
}
.logo-tagline {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,245,.6);
  transition: var(--transition);
}
#header.scrolled .logo-name { color: var(--ink); }
#header.scrolled .logo-tagline { color: var(--ink-mute); }

.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(250,248,245,.85);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--paper); border-bottom-color: var(--accent-pale); }
#header.scrolled .nav-links a { color: var(--ink-soft); }
#header.scrolled .nav-links a:hover,
#header.scrolled .nav-links a.active { color: var(--ink); border-bottom-color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 4px;
  height: 38px;
  font-size: 0;
  color: rgba(250,248,245,.9);
  transition: var(--transition);
}
.cart-btn::before {
  content: 'Merkliste';
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
}
#header.scrolled .cart-btn { color: var(--ink-soft); }
.cart-btn:hover { color: var(--accent-pale); }
#header.scrolled .cart-btn:hover { color: var(--accent); }
.cart-badge {
  display: none;
  margin-left: 8px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--paper);
  font-size: 0.65rem;
  font-weight: 600;
  line-height: 20px;
  text-align: center;
  letter-spacing: 0;
}
.cart-badge.visible { display: inline-block; }

/* Mobile-Menü-Schalter */
.nav-toggle {
  display: none;
  width: 34px; height: 34px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.nav-toggle span {
  display: block;
  width: 20px; height: 1px;
  background: var(--paper);
  transition: var(--transition);
}
#header.scrolled .nav-toggle span { background: var(--ink); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── Mosaik-Einstieg ────────────────────────────────────────────── */
#hero-mosaic {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: var(--dark);
}
.mosaic-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 2px;
}
.mosaic-tile {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 1.4s cubic-bezier(.2,.7,.3,1) forwards;
  filter: saturate(.9);
}
.mosaic-tile.tall { grid-row: span 2; }
.mosaic-tile.wide { grid-column: span 2; }
.mosaic-tile .tile-emoji {
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(250,248,245,.16);
}
@keyframes fadeIn { to { opacity: 1; } }

.mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--gutter);
  pointer-events: none;
  background: linear-gradient(180deg, rgba(23,19,15,.55) 0%, rgba(23,19,15,.32) 40%, rgba(23,19,15,.72) 100%);
}
.mosaic-overlay > * { pointer-events: auto; }
.mosaic-overlay .hero-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(250,248,245,.75);
  margin-bottom: 26px;
}
.mosaic-title {
  font-size: clamp(2.4rem, 6.5vw, 4.6rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--paper);
}
.mosaic-title em { font-style: italic; font-weight: 300; }
.mosaic-sub {
  margin-top: 26px;
  max-width: 460px;
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(250,248,245,.72);
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(250,248,245,.6);
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 44px;
  background: linear-gradient(180deg, rgba(250,248,245,.5), transparent);
  animation: cueDrop 2.4s ease-in-out infinite;
}
@keyframes cueDrop {
  0%, 100% { opacity: .3; transform: scaleY(.7); transform-origin: top; }
  50%      { opacity: 1;  transform: scaleY(1);  transform-origin: top; }
}

/* Alter Hero wird nicht mehr verwendet */
#hero { display: none; }

/* ─── Produkte ───────────────────────────────────────────────────── */
#products-section,
#highlights-section { padding: clamp(72px, 10vw, 130px) var(--gutter); }

.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 56px;
}
.filter-btn {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { color: var(--ink); border-bottom-color: var(--accent); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  max-width: var(--measure);
  margin: 0 auto;
}
.product-card { position: relative; display: flex; flex-direction: column; }
.product-card.hidden { display: none; }
.product-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 2;
  padding: 5px 12px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: rgba(250,248,245,.92);
  color: var(--ink);
}
.badge-sold { background: rgba(23,19,15,.82); color: var(--paper); }
.product-image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  position: relative;
  background-color: var(--paper-deep);
  transition: var(--transition);
}
.product-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(23,19,15,0);
  transition: var(--transition);
}
.product-card:hover .product-image::after { background: rgba(23,19,15,.07); }
.product-info { padding: 22px 2px 0; display: flex; flex-direction: column; flex: 1; }
.product-category {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.product-name { font-size: 1.4rem; color: var(--ink); margin-bottom: 10px; }
.product-name a { transition: var(--transition); }
.product-card:hover .product-name a { color: var(--accent); }
.product-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 18px;
  flex: 1;
}
.product-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; color: var(--ink); }
.product-price span { font-size: 0.72rem; font-family: 'Inter', sans-serif; color: var(--ink-mute); }
.add-to-cart {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent-pale);
  padding-bottom: 3px;
  transition: var(--transition);
  white-space: nowrap;
}
.add-to-cart:hover { color: var(--accent); border-bottom-color: var(--accent); }
.add-to-cart.sold { color: var(--ink-mute); border-bottom-color: transparent; pointer-events: none; }

/* ─── Kategorien ─────────────────────────────────────────────────── */
#categories-section { padding: clamp(72px, 10vw, 120px) 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.category-card {
  position: relative;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--paper-deep);
}
.category-bg { position: absolute; inset: 0; transition: var(--transition); }
.category-card:hover .category-bg { transform: scale(1.03); }
.category-icon-wrap { display: none; }
.category-info {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  color: var(--paper);
  background: linear-gradient(180deg, transparent, rgba(23,19,15,.72));
}
.category-name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.category-count { font-size: 0.7rem; font-weight: 300; color: rgba(250,248,245,.7); margin-top: 4px; }

/* ─── Seitenkopf ─────────────────────────────────────────────────── */
.page-hero {
  padding: clamp(130px, 16vw, 190px) var(--gutter) clamp(60px, 8vw, 90px);
  text-align: center;
  background: var(--dark);
  color: var(--paper);
}
.page-hero .section-eyebrow { color: var(--accent-pale); }
.page-hero h1 { font-size: clamp(2.2rem, 5.5vw, 3.6rem); font-weight: 300; color: var(--paper); }
.page-hero h1 em { font-style: italic; }
.page-hero p {
  max-width: 560px;
  margin: 26px auto 0;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,248,245,.72);
}
.page-hero .divider { background: rgba(250,248,245,.3); }

/* ─── Brotkrumen ─────────────────────────────────────────────────── */
.breadcrumb {
  max-width: var(--measure);
  margin: 0 auto;
  padding: 26px var(--gutter);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.breadcrumb a { color: var(--ink-soft); transition: var(--transition); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { margin: 0 8px; opacity: .5; }

/* ─── Geschichte ─────────────────────────────────────────────────── */
#story-section {
  padding: clamp(72px, 10vw, 130px) var(--gutter);
  background: var(--paper-warm);
}
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  max-width: var(--measure);
  margin: 0 auto;
}
.story-text .section-eyebrow { color: var(--accent); }
.story-text .section-title { text-align: left; }
.story-text p {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-top: 22px;
}
.story-text .btn { margin-top: 34px; }
.story-signature {
  margin-top: 26px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--accent);
}
.story-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.story-tile { aspect-ratio: 1; background: var(--paper-deep); display: grid; place-items: center; font-size: 0; }
.story-tile:nth-child(2) { margin-top: 28px; }
.story-tile:nth-child(4) { margin-top: -28px; }

/* ─── Prozess ────────────────────────────────────────────────────── */
#process-section { padding: clamp(72px, 10vw, 130px) 0; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.process-step { padding: 34px 28px 34px 0; border-top: 1px solid var(--line); }
.process-num {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}
.process-icon { display: none; }
.process-title { font-size: 1.3rem; margin-bottom: 12px; }
.process-desc { font-size: 0.88rem; font-weight: 300; line-height: 1.8; color: var(--ink-soft); }

/* ─── Kennzahlen ─────────────────────────────────────────────────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(48px, 7vw, 80px) var(--gutter);
}
.stat-item { text-align: center; padding: 0 12px; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
}
.stat-label {
  margin-top: 10px;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* ─── Galerie / Referenzen ───────────────────────────────────────── */
#gallery-section { padding: clamp(56px, 8vw, 100px) var(--gutter) clamp(72px, 10vw, 130px); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
  gap: clamp(32px, 4vw, 56px);
  max-width: var(--measure);
  margin: 0 auto;
}
.reference-card { display: flex; flex-direction: column; }
.reference-card.hidden { display: none; }
.reference-image {
  position: relative;
  aspect-ratio: 4 / 3;
  background-color: var(--paper-deep);
  display: grid;
  place-items: center;
}
.reference-year {
  position: absolute;
  top: 14px; right: 14px;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: var(--paper);
  background: rgba(23,19,15,.6);
  padding: 4px 10px;
}
.reference-info { padding: 22px 2px 0; display: flex; flex-direction: column; flex: 1; }
.reference-category {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.reference-name { font-size: 1.35rem; margin-bottom: 12px; }
.reference-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex: 1;
}
.reference-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
}
.reference-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.reference-meta-row dt {
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.reference-quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--ink);
}
.reference-client { margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.1em; color: var(--ink-mute); }

/* ─── Steckbrief ─────────────────────────────────────────────────── */
.profile-facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  max-width: var(--measure);
  margin: 0 auto;
  padding: 0 var(--gutter) clamp(72px, 10vw, 110px);
}
.fact-card { padding: 26px 24px 26px 0; border-top: 1px solid var(--line); }
.fact-label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 10px;
}
.fact-value { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; color: var(--ink); }

/* ─── Stimmen ────────────────────────────────────────────────────── */
#testimonials-section { padding: clamp(72px, 10vw, 130px) var(--gutter); background: var(--paper-warm); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  max-width: var(--measure);
  margin: 0 auto;
}
.testimonial-card { padding-top: 28px; border-top: 1px solid var(--line); }
.testimonial-stars { color: var(--accent-soft); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 18px; }
.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink);
  margin-bottom: 22px;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar { display: none; }
.author-name { font-size: 0.82rem; font-weight: 500; color: var(--ink); }
.author-location { font-size: 0.74rem; color: var(--ink-mute); }

/* ─── Produktseite ───────────────────────────────────────────────── */
body.solid-header { padding-top: 76px; }
.product-page {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  max-width: var(--measure);
  margin: 0 auto;
  padding: 20px var(--gutter) clamp(72px, 10vw, 110px);
  align-items: start;
}
.product-hero-img {
  aspect-ratio: 4 / 5;
  background-color: var(--paper-deep);
  display: grid;
  place-items: center;
  position: sticky;
  top: 108px;
}
.product-detail .product-category { font-size: 0.66rem; }
.product-detail h1 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); margin: 10px 0 14px; }
.detail-stars { color: var(--accent-soft); font-size: 0.8rem; letter-spacing: 3px; margin-bottom: 22px; }
.detail-desc {
  font-size: 0.98rem;
  font-weight: 300;
  line-height: 1.95;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.detail-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.detail-price { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--ink); }
.detail-unique { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--accent); }
.detail-table { margin-bottom: 32px; }
.detail-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 11px 0;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
}
.detail-row:last-child { border-bottom: none; }
.detail-row dt {
  font-weight: 500;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.detail-actions { display: flex; flex-direction: column; gap: 10px; margin-bottom: 22px; }
.detail-actions .btn { width: 100%; }
.shipping-note {
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.shipping-note strong { font-weight: 500; color: var(--ink); }
.shipping-note a { color: var(--accent); border-bottom: 1px solid var(--accent-pale); }

/* ─── Weitere Werke ──────────────────────────────────────────────── */
.more-section { padding: 0 var(--gutter) clamp(72px, 10vw, 120px); }
.more-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  max-width: var(--measure);
  margin: 0 auto;
}
.mini-card { display: flex; flex-direction: column; }
.mini-card-img {
  aspect-ratio: 4 / 3;
  background-color: var(--paper-deep);
  display: grid;
  place-items: center;
  transition: var(--transition);
}
.mini-card:hover .mini-card-img { opacity: .88; }
.mini-card-body { padding: 16px 2px 0; }
.mini-card-cat {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.mini-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; margin: 6px 0; }
.mini-card-price { font-size: 0.85rem; color: var(--ink-soft); }

/* ─── Kurse ──────────────────────────────────────────────────────── */
.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 40px;
}
.course-card { display: flex; flex-direction: column; padding-top: 28px; border-top: 1px solid var(--line); }
.course-card.featured { border-top: 2px solid var(--accent); }
.course-icon { display: none; }
.course-name { font-size: 1.5rem; margin-bottom: 14px; }
.course-desc {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-bottom: 24px;
  flex: 1;
}
.course-meta {
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 22px;
}
.course-meta-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--ink-soft);
}
.course-meta-row dt {
  font-weight: 500;
  font-size: 0.64rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.course-price { font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; color: var(--ink); margin-bottom: 22px; }
.course-price span { font-family: 'Inter', sans-serif; font-size: 0.78rem; color: var(--ink-mute); }

/* ─── Abschluss-Bänder ───────────────────────────────────────────── */
.cta-band {
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  text-align: center;
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
}
.cta-band .section-eyebrow { color: var(--accent); }
.cta-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin-bottom: 18px; }
.cta-band p {
  max-width: 540px;
  margin: 0 auto 36px;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: var(--ink-soft);
}
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.shop-band {
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  text-align: center;
  background: var(--dark);
  color: var(--paper);
}
.shop-band .section-eyebrow { color: var(--accent-pale); }
.shop-band h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--paper); margin-bottom: 18px; }
.shop-band p {
  max-width: 520px;
  margin: 0 auto 44px;
  font-size: 0.96rem;
  font-weight: 300;
  line-height: 1.9;
  color: rgba(250,248,245,.7);
}
.shop-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  max-width: 880px;
  margin: 0 auto 44px;
}
.strip-tile { aspect-ratio: 1; background-color: var(--dark-soft); display: grid; place-items: center; transition: var(--transition); }
.strip-tile:hover { opacity: .82; }

/* ─── Kontakt ────────────────────────────────────────────────────── */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: var(--measure);
  margin: 0 auto;
  padding: clamp(48px, 6vw, 80px) var(--gutter) 0;
}
.contact-card { padding: 30px 26px; border-top: 1px solid var(--line); text-align: center; }
.contact-card-icon { display: none; }
.contact-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.contact-card p { font-size: 0.9rem; font-weight: 300; color: var(--ink-soft); }
.contact-card a { color: var(--accent); border-bottom: 1px solid var(--accent-pale); }

#contact-section {
  padding: clamp(72px, 10vw, 120px) var(--gutter);
  background: var(--dark);
  color: var(--paper);
}
.contact-inner { max-width: 660px; margin: 0 auto; text-align: center; }
.contact-inner .section-eyebrow { color: var(--accent-pale); }
.contact-inner .section-title { color: var(--paper); font-weight: 300; }
.contact-inner .section-desc { color: rgba(250,248,245,.7); }
.contact-form { margin-top: 44px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; text-align: left; }
.form-field label {
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,248,245,.55);
}
.form-field input,
.form-field textarea,
.form-field select {
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid rgba(250,248,245,.22);
  background: transparent;
  color: var(--paper);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  outline: none;
  transition: var(--transition);
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,248,245,.3); }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus { border-bottom-color: var(--accent-pale); }
.form-field textarea { resize: vertical; min-height: 110px; }
.form-field select option { background: var(--dark); color: var(--paper); }
.form-submit { margin-top: 12px; }
.form-submit .btn { width: 100%; }
.form-note {
  margin-top: 18px;
  font-size: 0.76rem;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(250,248,245,.45);
}
.form-note a { color: rgba(250,248,245,.7); border-bottom: 1px solid rgba(250,248,245,.3); }

/* ─── Footer ─────────────────────────────────────────────────────── */
footer {
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: clamp(56px, 7vw, 90px) var(--gutter) 32px;
}
.footer-inner { max-width: var(--measure); margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 56px);
  margin-bottom: 56px;
}
.footer-brand .logo-name { color: var(--ink) !important; font-size: 1.3rem; }
.footer-tagline {
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--ink-soft);
  margin-top: 16px;
  max-width: 280px;
}
.footer-col h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.86rem; font-weight: 300; color: var(--ink-soft); transition: var(--transition); }
.footer-col ul a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.76rem;
  font-weight: 300;
  color: var(--ink-mute);
}
.footer-bottom a { color: var(--ink-soft); }
.footer-bottom a:hover { color: var(--accent); }

/* ─── Merkliste ──────────────────────────────────────────────────── */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23,19,15,.4);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }
.cart-sidebar {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header {
  padding: 26px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.cart-header h3 {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.cart-close { font-size: 1.1rem; color: var(--ink-mute); transition: var(--transition); }
.cart-close:hover { color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 24px 30px; display: flex; flex-direction: column; gap: 22px; }
.cart-empty {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--ink-mute);
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.9;
}
.cart-empty-icon { display: none; }
.cart-empty a { color: var(--accent); border-bottom: 1px solid var(--accent-pale); }
.cart-item { display: flex; gap: 16px; align-items: flex-start; }
.cart-item-img {
  width: 64px; height: 80px;
  flex-shrink: 0;
  background-color: var(--paper-deep);
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  opacity: .55;
}
.cart-item-details { flex: 1; }
.cart-item-name { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; color: var(--ink); }
.cart-item-price { font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 8px; }
.cart-item-qty { display: flex; align-items: center; gap: 12px; }
.qty-btn {
  width: 24px; height: 24px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--ink-soft);
  transition: var(--transition);
}
.qty-btn:hover { border-color: var(--accent); color: var(--accent); }
.qty-num { font-size: 0.85rem; min-width: 16px; text-align: center; }
.cart-item-remove { font-size: 0.85rem; color: var(--ink-mute); transition: var(--transition); }
.cart-item-remove:hover { color: var(--accent); }
.cart-footer { padding: 24px 30px 30px; border-top: 1px solid var(--line); }
.cart-total-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 20px; }
.cart-total-label {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.cart-total-price { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ink); }
#cartActions { display: flex; flex-direction: column; gap: 10px; }
#cartActions .btn { width: 100%; }
.cart-note {
  margin-top: 16px;
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink-mute);
  text-align: center;
}
.cart-continue {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
  transition: var(--transition);
}
.cart-continue:hover { color: var(--ink); }

/* ─── Hinweis-Einblendung ────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(90px);
  background: var(--ink);
  color: var(--paper);
  padding: 15px 28px;
  font-size: 0.82rem;
  font-weight: 300;
  z-index: 9999;
  transition: transform .45s cubic-bezier(.2,.7,.3,1);
  pointer-events: none;
  max-width: min(92vw, 460px);
  text-align: center;
}
.toast.show { transform: translateX(-50%) translateY(0); }

/* ─── Rechtstexte ────────────────────────────────────────────────── */
.legal-hero {
  padding: clamp(120px, 15vw, 170px) var(--gutter) clamp(48px, 6vw, 70px);
  background: var(--dark);
}
.legal-hero h1 { color: var(--paper); font-size: clamp(1.9rem, 4vw, 2.8rem); font-weight: 300; }
.legal-hero p { color: rgba(250,248,245,.6); margin-top: 12px; font-size: 0.9rem; font-weight: 300; }
.legal-body { max-width: 720px; margin: 0 auto; padding: clamp(48px, 6vw, 80px) var(--gutter) clamp(72px, 9vw, 110px); }
.legal-body h2 {
  font-size: 1.35rem;
  color: var(--ink);
  margin: 48px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { font-size: 0.92rem; font-weight: 300; line-height: 1.9; color: var(--ink-soft); }
.legal-body ul { margin: 14px 0 14px 20px; list-style: disc; }
.legal-body a { color: var(--accent); border-bottom: 1px solid var(--accent-pale); }
.legal-row { display: grid; grid-template-columns: 180px 1fr; gap: 8px 20px; margin: 10px 0; }
.legal-row dt { font-size: 0.68rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); }
.legal-row dd { font-size: 0.92rem; font-weight: 300; color: var(--ink-soft); }
.info-block { border-left: 2px solid var(--accent-pale); padding: 18px 24px; margin: 26px 0; background: var(--paper-warm); }
.info-block p { margin: 4px 0; }

/* Reste aus dem alten Design */
.wood-texture, .wood-texture-light { background: var(--paper-deep); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIV
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .story-inner { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: repeat(2, 1fr); gap: 32px 0; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .product-page { grid-template-columns: 1fr; }
  .product-hero-img { position: static; aspect-ratio: 4 / 3; }
  .more-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 800px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 76px; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 var(--gutter);
    max-height: 0;
    overflow: hidden;
    background: var(--paper);
    border-bottom: 1px solid transparent;
    transition: max-height .4s ease, padding .4s ease;
  }
  .nav-links.open { max-height: 380px; padding: 8px var(--gutter) 24px; border-bottom-color: var(--line); }
  .nav-links a { padding: 16px 0; color: var(--ink-soft) !important; border-bottom: 1px solid var(--line-soft); }
  .nav-links a.active { color: var(--ink) !important; }
  .cart-btn::before { content: 'Merkliste'; font-size: 0.62rem; }
  #hero-mosaic { height: 100svh; }
  .mosaic-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: repeat(4, 1fr); }
  .categories-grid, .process-grid, .products-grid { grid-template-columns: 1fr; }
  .shop-strip { grid-template-columns: repeat(2, 1fr); }
  .story-visual { max-width: 420px; }
  .story-tile:nth-child(2), .story-tile:nth-child(4) { margin-top: 0; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .legal-row { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .stats-band { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}

/* ─── Platzhalter & kleine Hinweise ──────────────────────────────── */
.ph {
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
  opacity: .55;
}
.mosaic-tile .ph, .strip-tile .ph { color: rgba(250,248,245,.35); opacity: .6; }
.page-note {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink-mute);
}
.page-note a { color: var(--accent); border-bottom: 1px solid var(--accent-pale); }
.card-note { margin-top: 8px; font-size: 0.76rem; color: var(--ink-mute) !important; }

/* Logo folgt der Header-Farbe */
.logo { color: var(--paper); }
#header.scrolled .logo, footer .logo { color: var(--ink); }
.logo-icon { color: var(--accent-soft); }
#header.scrolled .logo-icon, footer .logo-icon { color: var(--accent); }
