:root {
  /* Brand palette (abgeleitet aus Light logo) */
  --bg: #f6f3ee; /* warmes Off-White */
  --surface: #ffffff;
  --ink: #141516; /* warmes Schwarz */
  --muted: rgba(20, 21, 22, 0.72);
  --hairline: rgba(20, 21, 22, 0.12);
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.16);

  --charcoal: #2b2d2f; /* Anthrazit */
  --charcoal-2: #34373a;
  --taupe: #c7b8a6; /* Logo-Ton */
  --taupe-2: #bba996;
  --pine: #0f2b22; /* dunkles Tannengrün */

  --radius: 18px;
  --radius-sm: 12px;

  --container: 1120px;
  --gutter: 22px;

  --serif: "Sans", "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  /* Lokal first: `Data/admin/Web Fonts/…` (OnlineWebFonts) */
  --sans: "Sans", "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

@font-face {
  font-family: "Sans";
  src: url("./Data/admin/Web%20Fonts/952bab25f6798d6bb1937d67e9bee4dd.woff") format("woff"),
    url("./Data/admin/Web%20Fonts/952bab25f6798d6bb1937d67e9bee4dd.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: radial-gradient(1200px 600px at 70% 0%, rgba(199, 184, 166, 0.12), transparent 60%),
    radial-gradient(900px 520px at 0% 20%, rgba(15, 43, 34, 0.08), transparent 55%), var(--bg);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 2 * var(--gutter)));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--hairline);
}
.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(246, 243, 238, 0.72);
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}
.site-header.is-elevated {
  border-bottom-color: rgba(199, 184, 166, 0.18);
  background: rgba(43, 45, 47, 0.92);
}
.site-header.is-elevated .header-inner {
  padding: 8px 0;
  justify-content: flex-end;
}
.site-header.is-elevated .brand {
  display: none;
}
.site-header.is-elevated .nav-link {
  color: rgba(246, 243, 238, 0.76);
}
.site-header.is-elevated .nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 243, 238, 0.92);
}
.site-header.is-elevated .nav-link.is-active {
  background: rgba(199, 184, 166, 0.18);
  color: rgba(246, 243, 238, 0.92);
}
.site-header.is-elevated .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(199, 184, 166, 0.22);
  color: rgba(246, 243, 238, 0.9);
}
.site-header.is-elevated .nav-list {
  background: rgba(43, 45, 47, 0.96);
  border-color: rgba(199, 184, 166, 0.18);
}
.site-header.is-elevated .nav-link {
  color: rgba(246, 243, 238, 0.78);
}

/* Desktop: Nav als „eingebettete“ Pill-Bar, damit sie nicht aus der dunklen Topbar heraussticht */
@media (min-width: 761px) {
  .site-header.is-elevated .nav-list {
    padding: 6px;
    border-radius: 999px;
    border: 1px solid rgba(199, 184, 166, 0.18);
    background: linear-gradient(135deg, rgba(199, 184, 166, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(8px);
  }
  .site-header.is-elevated .nav-link {
    padding: 9px 12px;
  }
  .site-header.is-elevated .nav-link:hover {
    background: rgba(255, 255, 255, 0.1);
  }
  .site-header.is-elevated .nav-link.is-active {
    background: rgba(199, 184, 166, 0.2);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-mark {
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.12));
  opacity: 0.98;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-toggle {
  display: none;
  appearance: none;
  border: 1px solid var(--hairline);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  padding: 10px 12px;
  font: 500 14px/1 var(--sans);
  letter-spacing: 0.01em;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-link {
  display: inline-flex;
  padding: 10px 12px;
  border-radius: 999px;
  font: 500 13px/1 var(--sans);
  letter-spacing: 0.02em;
  color: rgba(20, 21, 22, 0.78);
  transition: background 200ms var(--ease), color 200ms var(--ease);
}
.nav-link:hover {
  background: rgba(255, 255, 255, 0.6);
  color: var(--ink);
}
.nav-link.is-active {
  background: rgba(199, 184, 166, 0.2);
  color: var(--ink);
}

/* Type */
.eyebrow {
  font: 500 12px/1.2 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(199, 184, 166, 0.92);
  margin: 0 0 12px;
}
.h1,
.h2,
.h3 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
}
.h2 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.15;
}
.h3 {
  font-size: 20px;
  line-height: 1.25;
}
.inline-flag {
  display: inline-block;
  height: 0.5em;
  width: auto;
  margin: 0 6px;
  vertical-align: 0.1em;
}
.lead {
  margin: 18px 0 0;
  font-size: 16px;
  color: rgba(246, 243, 238, 0.82);
  max-width: 56ch;
}
.sublead {
  margin: 10px 0 0;
  color: var(--muted);
  max-width: 70ch;
}
.muted {
  color: rgba(246, 243, 238, 0.74);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 500 14px/1 var(--sans);
  letter-spacing: 0.01em;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease),
    color 180ms var(--ease);
  will-change: transform;
}
.btn:active {
  transform: translateY(1px);
}
.btn--primary {
  background: linear-gradient(135deg, var(--taupe), var(--taupe-2));
  color: #161616;
}
.btn--primary:hover {
  transform: translateY(-1px);
}
.btn--ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(199, 184, 166, 0.28);
  color: rgba(246, 243, 238, 0.88);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}
.text-link {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 14px;
  font: 500 14px/1.2 var(--sans);
  color: rgba(20, 21, 22, 0.86);
  border-bottom: 1px solid rgba(20, 21, 22, 0.18);
  padding-bottom: 2px;
}
.text-link:hover {
  border-bottom-color: rgba(20, 21, 22, 0.38);
}

/* Hero */
.hero {
  position: relative;
  overflow: clip;
  padding: 78px 0 60px;
}
.hero--dark {
  background: radial-gradient(900px 500px at 20% -10%, rgba(15, 43, 34, 0.28), transparent 55%),
    radial-gradient(950px 560px at 80% 10%, rgba(199, 184, 166, 0.18), transparent 58%),
    linear-gradient(180deg, var(--charcoal), var(--charcoal-2));
  color: rgba(246, 243, 238, 0.92);
}

/* Startseite: Hero mit Foto statt dunklem Banner, Kanten oben/unten weich */
.page-home .hero--dark {
  background: transparent;
}
.page-home .hero {
  min-height: 70vh;
  padding: 120px 0 90px;
}
.page-home .hero-bg {
  opacity: 1;
  overflow: hidden;
  background-image: url("./Images/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-home .hero--dark {
  color: var(--ink);
}
.page-home .hero--dark .eyebrow {
  color: rgba(15, 43, 34, 0.82); /* dunkle Akzentfarbe (Pine) */
}
.page-home .hero--dark .lead {
  color: rgba(20, 21, 22, 0.78);
}
.page-home .hero--dark .muted {
  color: rgba(20, 21, 22, 0.62);
}
.page-home .hero--dark .btn--ghost {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(20, 21, 22, 0.14);
  color: rgba(20, 21, 22, 0.86);
}
.page-home .hero--dark .btn--ghost:hover {
  background: rgba(255, 255, 255, 0.74);
}
.page-home .hero-bg::before,
.page-home .hero-bg::after {
  display: none;
}
.hero-bg {
  position: absolute;
  inset: -1px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0) 40%),
    radial-gradient(380px 260px at 35% 40%, rgba(199, 184, 166, 0.16), transparent 70%),
    radial-gradient(300px 240px at 70% 60%, rgba(15, 43, 34, 0.16), transparent 70%);
  opacity: 0.9;
  pointer-events: none;
  transform: translate3d(0, 0, 0);
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: end;
}
.hero-copy {
  padding: 18px 0;
}
.hero-copy-card {
  background: var(--bg);
  border: 1px solid rgba(20, 21, 22, 0.14);
  border-radius: var(--radius);
  padding: 22px 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
  backdrop-filter: blur(2px);
  max-width: 56ch;
}
.hero-copy-card .eyebrow {
  color: rgba(15, 43, 34, 0.8);
}
.hero-copy-card .lead {
  color: rgba(20, 21, 22, 0.74);
}
.hero-copy-card .muted {
  color: rgba(20, 21, 22, 0.6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(199, 184, 166, 0.22);
  padding: 18px 18px 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.26);
}
.hero-card-top {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
}
.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(199, 184, 166, 0.18);
  color: rgba(246, 243, 238, 0.9);
}
.tag--subtle {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(246, 243, 238, 0.74);
}
.hero-card-title {
  margin: 14px 0 6px;
  font: 400 18px/1.25 var(--serif);
  letter-spacing: -0.01em;
}
.hero-card-text {
  margin: 0;
  color: rgba(246, 243, 238, 0.76);
  font-size: 13.5px;
}
.hero-logo {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 10px 0;
}
.hero-logo-img {
  display: block;
  width: min(360px, 92%);
  height: auto;
  opacity: 0.98;
  filter: drop-shadow(0 26px 70px rgba(0, 0, 0, 0.38));
}

/* Sections */
.section {
  padding: 74px 0;
}
.section--contrast {
  background: linear-gradient(180deg, rgba(199, 184, 166, 0.16), rgba(199, 184, 166, 0.06));
  border-top: 1px solid rgba(20, 21, 22, 0.06);
  border-bottom: 1px solid rgba(20, 21, 22, 0.06);
}
.section-head {
  margin-bottom: 24px;
}
.collection-block + .collection-block {
  margin-top: 28px;
}
.collection-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.collection-head .sublead {
  margin: 6px 0 0;
}
.collection-toggle {
  appearance: none;
  border: 1px solid rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font: 500 12.5px/1 var(--sans);
  letter-spacing: 0.02em;
  transition: background 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}
.collection-toggle:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(20, 21, 22, 0.2);
  transform: translateY(-1px);
}
.collection-block.is-collapsed .catalog-meta,
.collection-block.is-collapsed .catalog-grid {
  display: none;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.card {
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(20, 21, 22, 0.08);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.card-link {
  display: block;
  height: 100%;
}
.card-link:focus-visible {
  outline: 2px solid rgba(199, 184, 166, 0.8);
  outline-offset: 3px;
}
.card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.8);
}
.card-media {
  aspect-ratio: 1 / 1;
  height: auto;
  background-size: cover;
  background-position: center;
}
.card-media--wax {
  background-image: radial-gradient(400px 240px at 30% 20%, rgba(199, 184, 166, 0.55), transparent 62%),
    radial-gradient(380px 220px at 70% 70%, rgba(15, 43, 34, 0.24), transparent 64%),
    linear-gradient(135deg, rgba(43, 45, 47, 0.2), rgba(255, 255, 255, 0.2));
}
.card-media--slideshow {
  position: relative;
  overflow: hidden;
}
.card-media--slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--card-media-position, center);
  opacity: 0;
  animation: cardSlideshowFade 57s infinite;
}
.card-media--slideshow-2 img {
  animation-name: cardSlideshowFade2;
  animation-duration: var(--slideshow-duration, 8s);
}
.card-media--slideshow-2 img:nth-child(1) { animation-delay: var(--slideshow-offset, 0s); }
.card-media--slideshow-2 img:nth-child(2) {
  animation-delay: calc(var(--slideshow-offset, 0s) + (var(--slideshow-duration, 8s) / 2));
}
.card-media--slideshow img:nth-child(1) { animation-delay: 0s; }
.card-media--slideshow img:nth-child(2) { animation-delay: 3s; }
.card-media--slideshow img:nth-child(3) { animation-delay: 6s; }
.card-media--slideshow img:nth-child(4) { animation-delay: 9s; }
.card-media--slideshow img:nth-child(5) { animation-delay: 12s; }
.card-media--slideshow img:nth-child(6) { animation-delay: 15s; }
.card-media--slideshow img:nth-child(7) { animation-delay: 18s; }
.card-media--slideshow img:nth-child(8) { animation-delay: 21s; }
.card-media--slideshow img:nth-child(9) { animation-delay: 24s; }
.card-media--slideshow img:nth-child(10) { animation-delay: 27s; }
.card-media--slideshow img:nth-child(11) { animation-delay: 30s; }
.card-media--slideshow img:nth-child(12) { animation-delay: 33s; }
.card-media--slideshow img:nth-child(13) { animation-delay: 36s; }
.card-media--slideshow img:nth-child(14) { animation-delay: 39s; }
.card-media--slideshow img:nth-child(15) { animation-delay: 42s; }
.card-media--slideshow img:nth-child(16) { animation-delay: 45s; }
.card-media--slideshow img:nth-child(17) { animation-delay: 48s; }
.card-media--slideshow img:nth-child(18) { animation-delay: 51s; }
.card-media--slideshow img:nth-child(19) { animation-delay: 54s; }
@keyframes cardSlideshowFade {
  0% { opacity: 0; }
  2% { opacity: 1; }
  5% { opacity: 1; }
  7% { opacity: 0; }
  100% { opacity: 0; }
}
@keyframes cardSlideshowFade2 {
  0% { opacity: 0; }
  8% { opacity: 1; }
  45% { opacity: 1; }
  55% { opacity: 0; }
  100% { opacity: 0; }
}
.card-media--pine {
  background-image: radial-gradient(420px 260px at 30% 20%, rgba(15, 43, 34, 0.5), transparent 62%),
    radial-gradient(360px 220px at 70% 70%, rgba(199, 184, 166, 0.24), transparent 64%),
    linear-gradient(135deg, rgba(43, 45, 47, 0.2), rgba(255, 255, 255, 0.22));
}
.card-media--burn {
  background-image: radial-gradient(520px 320px at 30% 20%, rgba(199, 184, 166, 0.22), transparent 62%),
    radial-gradient(520px 340px at 70% 70%, rgba(15, 43, 34, 0.16), transparent 65%),
    linear-gradient(135deg, rgba(43, 45, 47, 0.18), rgba(255, 255, 255, 0.08)),
    url("./Images/mood.jpg");
  background-size: cover;
  background-position: center;
}
.card-media--video {
  position: relative;
  background-image: linear-gradient(135deg, rgba(43, 45, 47, 0.18), rgba(255, 255, 255, 0.1)),
    url("./Images/kerzen_fillen.jpg");
  background-size: cover;
  background-position: center;
}
.card-media--video::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 56px;
  height: 56px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(20, 21, 22, 0.12);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}
.card-media--video::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 0;
  height: 0;
  transform: translate(-35%, -50%);
  border-left: 14px solid rgba(20, 21, 22, 0.78);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.card-body {
  padding: 18px 18px 16px;
}
.card-body p {
  margin: 10px 0 0;
  color: rgba(20, 21, 22, 0.76);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.promise {
  list-style: none;
  margin: 0;
  padding: 0;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}
.promise li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 16px 16px;
  border-bottom: 1px solid rgba(20, 21, 22, 0.06);
}
.promise li:last-child {
  border-bottom: 0;
}
.promise-title {
  font: 500 12px/1.2 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.7);
}
.promise-text {
  color: rgba(20, 21, 22, 0.78);
}

/* Katalog teaser */
.katalog-teaser {
  border-radius: calc(var(--radius) + 6px);
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  padding: 18px;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 18px;
  overflow: hidden;
}
.katalog-teaser-kicker {
  font: 500 12px/1.2 var(--sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.62);
  margin: 0 0 10px;
}
.katalog-teaser-title {
  font: 400 24px/1.15 var(--serif);
  margin: 0;
  letter-spacing: -0.02em;
}
.katalog-teaser-text {
  margin: 10px 0 16px;
  color: rgba(20, 21, 22, 0.74);
  max-width: 62ch;
}
.katalog-teaser-art {
  border-radius: var(--radius);
  background: radial-gradient(520px 340px at 30% 20%, rgba(199, 184, 166, 0.46), transparent 62%),
    radial-gradient(520px 340px at 70% 70%, rgba(15, 43, 34, 0.22), transparent 65%),
    linear-gradient(135deg, rgba(43, 45, 47, 0.18), rgba(255, 255, 255, 0.18));
  position: relative;
  overflow: hidden;
  min-height: 220px;
}
.katalog-teaser-art-inner {
  position: absolute;
  inset: -30px;
  background-image: url("./Logos/front.png");
  background-size: 520px auto;
  background-repeat: no-repeat;
  background-position: 120% 60%;
  opacity: 0.2;
  transform: translateY(var(--parallax, 0px));
  transition: transform 120ms linear;
}

/* Geschichte Bildvorschau */
.history-hero {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 220px;
  padding: 0;
  border: 1px solid rgba(20, 21, 22, 0.12);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.history-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 200ms var(--ease);
}
.history-hero:hover {
  border-color: rgba(20, 21, 22, 0.2);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
  transform: translateY(-1px);
}
.history-hero:hover img {
  transform: scale(1.03);
}
.history-hero-hint {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(20, 21, 22, 0.7);
  color: rgba(255, 255, 255, 0.92);
  font-size: 12px;
  text-align: center;
}

/* Bildbetrachter */
.image-viewer {
  width: min(1100px, calc(100% - 24px));
  border: 0;
  padding: 0;
  background: transparent;
}
.image-viewer::backdrop {
  background: rgba(20, 21, 22, 0.62);
  backdrop-filter: blur(6px);
}
.image-viewer-inner {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr 48px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}
.image-viewer-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.image-viewer-figure img {
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius);
  background: rgba(43, 45, 47, 0.06);
}
.image-viewer-caption {
  font-size: 13px;
  color: rgba(20, 21, 22, 0.68);
}
.image-viewer-nav {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.86);
  font: 400 24px/1 var(--sans);
  color: rgba(20, 21, 22, 0.8);
  cursor: pointer;
}
.image-viewer-nav:disabled {
  opacity: 0.35;
  cursor: default;
}
.image-viewer-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font: 400 22px/1 var(--sans);
  color: rgba(20, 21, 22, 0.78);
  cursor: pointer;
}

/* Footer */
.site-footer {
  padding: 44px 0 52px;
  border-top: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.28);
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.fineprint {
  margin: 10px 0 0;
  color: rgba(20, 21, 22, 0.64);
  font-size: 13px;
  max-width: 52ch;
}
.legal {
  margin: 10px 0 0;
  color: rgba(20, 21, 22, 0.55);
  font-size: 10px;
}
.legal a {
  text-decoration: underline;
  text-decoration-color: rgba(20, 21, 22, 0.22);
  text-underline-offset: 2px;
}
.legal a:hover {
  text-decoration-color: rgba(20, 21, 22, 0.45);
}
.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links a {
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.45);
  font: 500 13px/1 var(--sans);
  color: rgba(20, 21, 22, 0.78);
}
.footer-links a:hover {
  border-color: rgba(20, 21, 22, 0.16);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(20, 21, 22, 0.92);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .hero-logo {
    justify-content: flex-start;
    padding-top: 0;
  }
  .hero-logo-img {
    width: min(320px, 86%);
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .split {
    grid-template-columns: 1fr;
  }
  .katalog-teaser {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }
  .nav-list {
    position: absolute;
    right: calc((100% - min(var(--container), calc(100% - 2 * var(--gutter)))) / 2);
    top: 64px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    min-width: 240px;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--hairline);
    background: rgba(246, 243, 238, 0.94);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
    display: none;
  }
  .site-header.is-elevated .nav-list {
    border-color: rgba(199, 184, 166, 0.18);
    background: rgba(43, 45, 47, 0.96);
  }
  .nav-list.is-open {
    display: flex;
  }
  .nav-link {
    width: 100%;
    border-radius: 12px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .image-viewer-inner {
    grid-template-columns: 1fr;
    padding: 14px 14px 18px;
  }
  .image-viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
  .image-viewer-nav.is-prev {
    left: 8px;
  }
  .image-viewer-nav.is-next {
    right: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .btn,
  .card,
  .site-header {
    transition: none;
  }
}

/* Page hero + utilities */
.page-hero {
  padding: 64px 0 18px;
}
.page-hero-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
}
.page-hero-aside {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.pill {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 22, 0.1);
  background: rgba(255, 255, 255, 0.55);
  font: 500 12px/1 var(--sans);
  color: rgba(20, 21, 22, 0.76);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Catalog */
.catalog-colors {
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.06);
  margin-bottom: 18px;
}
.catalog-colors-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}
.color-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}
.color-card {
  display: grid;
  gap: 8px;
  align-content: start;
  text-align: left;
  border-radius: 16px;
  border: 1px solid rgba(20, 21, 22, 0.1);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  cursor: pointer;
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.color-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 21, 22, 0.16);
  background: rgba(255, 255, 255, 0.85);
}
.color-card.is-active {
  border-color: rgba(199, 184, 166, 0.9);
  box-shadow: 0 0 0 3px rgba(199, 184, 166, 0.18);
}
.color-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(20, 21, 22, 0.08);
}
.color-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.color-name {
  font: 500 13px/1.2 var(--sans);
  color: rgba(20, 21, 22, 0.82);
}
.color-count {
  font: 500 11px/1.2 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.52);
}
.catalog-toolbar {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr auto;
  gap: 12px;
  align-items: end;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 56px rgba(0, 0, 0, 0.06);
}
.field label {
  display: block;
  font: 500 12px/1.2 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.62);
  margin: 0 0 8px;
}
.field input,
.field select {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.7);
  padding: 12px 12px;
  font: 500 14px/1.2 var(--sans);
  outline: none;
}
.field input:focus,
.field select:focus {
  border-color: rgba(199, 184, 166, 0.9);
  box-shadow: 0 0 0 4px rgba(199, 184, 166, 0.22);
}
.field--right {
  display: flex;
  justify-content: flex-end;
}
.btn--dark {
  color: rgba(20, 21, 22, 0.86);
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(20, 21, 22, 0.12);
}
.btn--dark:hover {
  background: rgba(255, 255, 255, 0.74);
}
.catalog-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 4px 10px;
}
.catalog-meta-text {
  color: rgba(20, 21, 22, 0.72);
}
.catalog-meta-text.is-error {
  color: #7a1c1c;
}
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding-top: 10px;
}
.product {
  border-radius: var(--radius);
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.7);
  overflow: hidden;
  box-shadow: 0 16px 56px rgba(0, 0, 0, 0.06);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), background 220ms var(--ease);
}
.product:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(20, 21, 22, 0.12);
}
.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, rgba(43, 45, 47, 0.12), rgba(199, 184, 166, 0.16));
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-badge {
  position: absolute;
  left: 12px;
  top: 12px;
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  font: 500 11px/1 var(--sans);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(43, 45, 47, 0.76);
  color: rgba(246, 243, 238, 0.92);
  border: 1px solid rgba(199, 184, 166, 0.22);
}
.product-body {
  padding: 14px 14px 14px;
}
.product-title {
  margin: 0;
  font: 400 16px/1.25 var(--serif);
  letter-spacing: -0.01em;
  color: rgba(20, 21, 22, 0.92);
}
.product-sub {
  margin: 8px 0 0;
  color: rgba(20, 21, 22, 0.74);
  font-size: 13px;
  min-height: 2.4em;
}
.product-meta {
  margin: 10px 0 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  color: rgba(20, 21, 22, 0.6);
  font: 500 12px/1.3 var(--sans);
}
.product-meta .dot {
  opacity: 0.6;
}
.product-btn {
  width: 100%;
}

/* Detail dialog */
.detail {
  width: min(960px, calc(100% - 36px));
  border: 0;
  padding: 0;
  border-radius: calc(var(--radius) + 8px);
  box-shadow: var(--shadow);
  background: transparent;
}
.detail::backdrop {
  background: rgba(20, 21, 22, 0.55);
  backdrop-filter: blur(6px);
}
.detail-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.96);
}
.detail-close {
  position: absolute;
  right: 12px;
  top: 10px;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(20, 21, 22, 0.12);
  background: rgba(255, 255, 255, 0.85);
  font: 400 22px/1 var(--sans);
  color: rgba(20, 21, 22, 0.78);
  cursor: pointer;
}
.detail-media {
  background: linear-gradient(135deg, rgba(43, 45, 47, 0.12), rgba(199, 184, 166, 0.16));
}
.detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}
.detail-media .detail-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  min-height: 420px;
  background: #000;
}
.detail-body {
  padding: 18px 18px 16px;
}
.detail-kicker {
  margin: 0 0 10px;
  font: 500 12px/1.2 var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.62);
}
.detail-title {
  margin: 0;
  font: 400 26px/1.12 var(--serif);
  letter-spacing: -0.02em;
}
.detail-short {
  margin: 10px 0 12px;
  color: rgba(20, 21, 22, 0.76);
}
.detail-spec {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(20, 21, 22, 0.08);
  background: rgba(255, 255, 255, 0.65);
}
.detail-spec div {
  display: grid;
  gap: 6px;
}
.detail-spec span {
  font: 500 11px/1.2 var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(20, 21, 22, 0.62);
}
.detail-spec strong {
  font: 500 13px/1.2 var(--sans);
  color: rgba(20, 21, 22, 0.86);
}
.detail-desc {
  margin: 12px 0 0;
  color: rgba(20, 21, 22, 0.74);
}

@media (max-width: 980px) {
  .color-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 760px) {
  .page-hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .catalog-colors-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .color-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }
  .catalog-grid {
    grid-template-columns: 1fr;
  }
  .detail-inner {
    grid-template-columns: 1fr;
  }
  .detail-media img {
    min-height: 260px;
  }
  .detail-media .detail-video {
    min-height: 260px;
  }
}

