/* ============================================================
   JADE HEADSHOP — Designsystem „Jade & Silver"
   Tiefes Jadegrün / gebürstetes Messing / Creme / Pink-Akzent
   ============================================================ */

/* Schriften bewusst als System-Stacks (DSGVO: keine externen Fonts).
   Optional lokal hosten:
@font-face { font-family:"Cormorant Garamond"; src:url("fonts/CormorantGaramond-SemiBold.woff2") format("woff2"); font-weight:600; font-display:swap; }
@font-face { font-family:"Inter"; src:url("fonts/Inter-Regular.woff2") format("woff2"); font-weight:400; font-display:swap; }
*/

/* --------------------------------------------------------
   Farbwelt: kühles Petrol-Jade + Platin-Silber (kein Gold)
   Leuchtakzent: Jade-Neon aus dem Logo
   -------------------------------------------------------- */
:root {
  --jade-950: #03110f;
  --jade-900: #072220;
  --jade-850: #0a2b28;
  --jade-800: #0e332f;
  --jade-700: #15423d;
  --jade-500: #2f7a6c;

  /* Sekundärfarbe: Platin/Silber wie die Schrift im Logo */
  --silver-dark: #7f918b;
  --silver:      #c2d0cb;
  --silver-soft: #dde6e2;
  --silver-hi:   #f5f8f6;
  --silver-grad: linear-gradient(115deg, var(--silver-dark) 0%, var(--silver-hi) 42%, var(--silver) 60%, var(--silver-dark) 100%);
  --shadow-silver: 0 0 0 1px rgba(194,208,203,.35), 0 6px 18px rgba(194,208,203,.18);

  /* Leuchtakzent (Glanz, Reflexe, Pulse) */
  --glow: #46c48f;

  --pink:    #ef7fae;
  --ivory:   #eef2ef;
  --ivory-2: #e2e9e4;
  --ink:     #12211d;
  --ink-soft:#43554e;
  --line: rgba(194,208,203,.26);

  /* Aliase, damit ältere Regeln weiterhin greifen */
  --accent-deep: var(--silver-dark);
  --accent:      var(--silver);
  --accent-soft: var(--silver-soft);
  --accent-hi:   var(--silver-hi);
  --accent-grad: var(--silver-grad);
  --shadow-accent: var(--shadow-silver);

  --shadow-s: 0 1px 2px rgba(3,17,15,.10), 0 2px 6px rgba(3,17,15,.08);
  --shadow-m: 0 2px 4px rgba(3,17,15,.10), 0 8px 18px rgba(3,17,15,.12), 0 20px 40px rgba(3,17,15,.10);
  --shadow-l: 0 4px 8px rgba(0,0,0,.18), 0 16px 32px rgba(0,0,0,.22), 0 40px 80px rgba(0,0,0,.28);

  --serif: "Cormorant Garamond", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
  --sans:  "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;

  --maxw: 1120px;
  --radius: 8px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--silver); color: var(--jade-950); }
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--jade-950); }
::-webkit-scrollbar-thumb { background: var(--jade-700); border-radius: 6px; border: 2px solid var(--jade-950); }
::-webkit-scrollbar-thumb:hover { background: var(--silver-dark); }

img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--silver-grad); background-size: 200% 100%;
  z-index: 100; pointer-events: none;
  box-shadow: 0 0 10px rgba(70,196,143,.5);
}

/* --- Typografie --- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: .01em; text-wrap: balance; }
h1 { font-size: clamp(2.3rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); }
h3 { font-size: 1.28rem; }

.eyebrow {
  font-family: var(--sans); font-size: .76rem; letter-spacing: .26em;
  text-transform: uppercase; color: var(--silver); display: block; margin-bottom: 1rem;
}
.lead { font-size: 1.13rem; color: var(--ink-soft); max-width: 44rem; }

.rule {
  width: 72px; height: 2px; border-radius: 1px;
  background: linear-gradient(90deg, var(--silver-dark), var(--silver-hi), var(--silver));
  background-size: 200% 100%;
  animation: shimmer 4.5s ease-in-out infinite;
  margin: 1.5rem 0; position: relative;
}
.rule::after { content: ""; position: absolute; left: 0; top: 5px; width: 32px; height: 1px; background: var(--line); }
@keyframes shimmer { 0%,100% { background-position: 0% 0; } 50% { background-position: 100% 0; } }

/* --- Buttons --- */
.btn {
  display: inline-block; padding: .9rem 1.8rem;
  font-family: var(--sans); font-size: .9rem; font-weight: 600;
  letter-spacing: .07em; text-transform: uppercase; text-decoration: none;
  border-radius: var(--radius); border: 1px solid transparent; cursor: pointer;
  transition: transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease, background-position .4s ease, color .2s ease, border-color .2s ease;
  will-change: transform;
}
.btn-silver {
  background: var(--silver-grad); background-size: 200% 100%;
  color: var(--jade-950); border: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), inset 0 -2px 0 rgba(9,58,42,.35), 0 4px 12px rgba(3,17,15,.30);
}
.btn-silver:hover {
  background-position: 100% 0; transform: translateY(-3px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -2px 0 rgba(9,58,42,.35), 0 10px 24px rgba(3,17,15,.35), 0 0 20px rgba(70,196,143,.25);
}
.btn-silver:active { transform: translateY(-1px) scale(.99); }
.btn-outline { background: rgba(194,208,203,.05); color: var(--silver-soft); border-color: var(--silver); }
.btn-outline:hover { background: rgba(194,208,203,.14); transform: translateY(-3px); box-shadow: var(--shadow-silver); }
.btn-outline-dark { background: transparent; color: var(--jade-900); border-color: var(--jade-900); }
.btn-outline-dark:hover { background: var(--jade-900); color: var(--silver-soft); transform: translateY(-3px); box-shadow: var(--shadow-m); }
.btn:focus-visible, a:focus-visible { outline: 2px solid var(--silver); outline-offset: 3px; }

/* --- Header --- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10,34,28,.72);
  backdrop-filter: blur(14px) saturate(1.3); -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border-bottom: 1px solid rgba(194,208,203,.18);
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(3,17,15,.9); box-shadow: 0 8px 30px rgba(0,0,0,.35); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: .9rem 24px; max-width: var(--maxw); margin: 0 auto; }
.brand { display: flex; align-items: center; gap: .85rem; text-decoration: none; color: var(--ivory); }
.brand svg { height: 40px; width: auto; filter: drop-shadow(0 2px 4px rgba(0,0,0,.4)); }
.brand-mark {
  height: 42px; width: auto;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)) drop-shadow(0 0 12px rgba(70,196,143,.22));
  transition: transform .3s cubic-bezier(.2,.8,.3,1), filter .3s ease;
}
.brand:hover .brand-mark { filter: drop-shadow(0 2px 8px rgba(0,0,0,.55)) drop-shadow(0 0 16px rgba(70,196,143,.42)); }
.brand:hover .brand-mark { transform: scale(1.05); }
.brand-name { font-family: var(--serif); font-size: 1.1rem; letter-spacing: .18em; text-transform: uppercase; line-height: 1.15; }
.brand-name small { display: block; font-family: var(--sans); font-size: .56rem; letter-spacing: .32em; color: var(--silver-soft); }

.nav-links { display: flex; gap: 1.7rem; list-style: none; align-items: center; }
.nav-links a { color: var(--ivory); text-decoration: none; font-size: .88rem; letter-spacing: .05em; position: relative; padding: .2rem 0; }
.nav-links a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--silver-grad); transform: scaleX(0); transform-origin: right;
  transition: transform .35s cubic-bezier(.2,.8,.3,1);
}
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-links a:hover { color: var(--silver-soft); }
.nav-cta {
  background: var(--silver-grad); background-size: 200% 100%;
  color: var(--jade-950) !important; font-weight: 600;
  font-size: .8rem !important; letter-spacing: .12em !important; text-transform: uppercase;
  padding: .7rem 1.5rem !important; border-radius: 999px; border: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5), inset 0 -2px 0 rgba(9,58,42,.3), 0 3px 10px rgba(3,17,15,.35);
  transition: background-position .45s ease, transform .25s cubic-bezier(.2,.8,.3,1), box-shadow .25s ease;
}
.nav-cta::after { display: none; }
.nav-cta:hover {
  background-position: 100% 0; color: var(--jade-950) !important; transform: translateY(-2px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.55), inset 0 -2px 0 rgba(9,58,42,.3), 0 8px 20px rgba(3,17,15,.4), 0 0 18px rgba(70,196,143,.35);
}
.nav-cta:active { transform: translateY(0) scale(.98); }
.nav-toggle {
  display: none; align-items: center; gap: .55rem; background: rgba(194,208,203,.06);
  border: 1px solid var(--silver); color: var(--silver-soft);
  padding: .5rem .85rem; border-radius: 999px; font: inherit;
  font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; cursor: pointer;
  transition: background .25s ease, box-shadow .25s ease;
}
.nav-toggle:active { background: rgba(194,208,203,.16); }
.nav-toggle[aria-expanded="true"] { box-shadow: 0 0 0 1px rgba(70,196,143,.45), 0 0 16px rgba(70,196,143,.22); }
.nav-bars { display: block; width: 17px; height: 12px; position: relative; }
.nav-bars i {
  position: absolute; left: 0; width: 100%; height: 1.5px; border-radius: 2px;
  background: var(--silver-soft); transition: transform .32s cubic-bezier(.2,.8,.3,1), opacity .2s ease;
}
.nav-bars i:nth-child(1) { top: 0; }
.nav-bars i:nth-child(2) { top: 5.3px; }
.nav-bars i:nth-child(3) { top: 10.6px; }
.nav-toggle[aria-expanded="true"] .nav-bars i:nth-child(1) { transform: translateY(5.3px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-bars i:nth-child(2) { opacity: 0; transform: scaleX(.3); }
.nav-toggle[aria-expanded="true"] .nav-bars i:nth-child(3) { transform: translateY(-5.3px) rotate(-45deg); }

@media (max-width: 900px) {
    .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: linear-gradient(180deg, #061b18, var(--jade-950));
    flex-direction: column; gap: 0; padding: .4rem 0 .9rem;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 22px 44px rgba(0,0,0,.5);
  }
  .nav-links li + li a:not(.nav-cta) { border-top: 1px solid rgba(194,208,203,.10); }
  .nav-links.open { display: flex; animation: navDrop .3s cubic-bezier(.2,.8,.3,1); }
  .nav-links li { width: 100%; text-align: center; }
  .nav-links a { display: block; padding: .85rem; }
  .nav-cta { display: inline-block !important; margin: .7rem auto .9rem; width: auto; }
}
@keyframes navDrop { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* --- Hero --- */
.hero {
  background:
    radial-gradient(1200px 600px at 82% -12%, rgba(70,196,143,.14), transparent 62%),
    radial-gradient(900px 500px at -10% 110%, rgba(21,66,61,.6), transparent 55%),
    linear-gradient(168deg, var(--jade-900) 0%, var(--jade-850) 45%, var(--jade-950) 100%);
  color: var(--ivory); padding: 6rem 0; position: relative; overflow: hidden; perspective: 1200px;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .05;
  background-image: radial-gradient(rgba(237,243,239,.55) 1px, transparent 1px);
  background-size: 26px 26px;
}
.hero::after {
  content: "JADE"; position: absolute; right: -4%; bottom: -12%;
  font-family: var(--serif); font-weight: 600; font-size: clamp(9rem, 22vw, 20rem);
  line-height: 1; letter-spacing: -.04em; color: rgba(194,208,203,.05);
  text-shadow: 1px 1px 0 rgba(237,243,239,.03), -1px -1px 0 rgba(0,0,0,.25);
  pointer-events: none; user-select: none;
  transform: translateY(var(--wm, 0px)); will-change: transform;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3.5rem; align-items: center; position: relative; z-index: 1; }
.hero h1 { color: var(--ivory); text-shadow: 0 2px 24px rgba(0,0,0,.35); }
.hero h1 em {
  font-style: italic; background: var(--silver-grad); background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shimmer 5s ease-in-out infinite;
}
.hero .lead { color: rgba(237,243,239,.84); margin-top: 1.3rem; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2.3rem; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 1.8rem; margin-top: 2.6rem; }
.hero-facts div { min-width: 8rem; }
.hero-facts dt { font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: rgba(237,243,239,.5); margin-bottom: .3rem; }
.hero-facts dd { font-family: var(--serif); font-size: 1.15rem; color: var(--silver-soft); }

/* Status-Badge „in Vorbereitung" */
.status-pill {
  display: inline-flex; align-items: center; gap: .55rem;
  border: 1px solid var(--line); border-radius: 999px;
  padding: .4rem 1rem; font-size: .76rem; letter-spacing: .14em;
  text-transform: uppercase; color: var(--silver-soft); background: rgba(194,208,203,.07);
  margin-bottom: 1.4rem;
}
.status-pill span.dot { width: 7px; height: 7px; border-radius: 50%; background: var(--silver); box-shadow: 0 0 0 0 rgba(70,196,143,.55); animation: dotPulse 2.6s ease-out infinite; }
@keyframes dotPulse { 0% { box-shadow: 0 0 0 0 rgba(70,196,143,.5); } 70% { box-shadow: 0 0 0 9px rgba(70,196,143,0); } 100% { box-shadow: 0 0 0 0 rgba(70,196,143,0); } }

/* Hero-Bildkarte */
.hero-shot {
  position: relative; justify-self: center;
  width: min(430px, 84vw); margin: 0 auto;
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
  animation: floaty 7s ease-in-out infinite; will-change: transform;
}
@keyframes floaty { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.hero-shot .frame-outer {
  position: relative; padding: 12px; transform-style: preserve-3d;
  border: 1px solid var(--line); border-radius: var(--radius);
}
.hero-shot .frame-outer::before {   /* warmer Lichtschein dahinter */
  content: ""; position: absolute; inset: 10%;
  background: radial-gradient(closest-side, rgba(70,196,143,.30), transparent 70%);
  filter: blur(30px); transform: translateZ(-40px); pointer-events: none;
}
.hero-shot .frame {
  position: relative; aspect-ratio: 4 / 3; overflow: hidden;
  border-radius: var(--radius); border: 1px solid var(--silver);
  box-shadow: var(--shadow-l), 0 0 0 1px rgba(194,208,203,.22);
  background: var(--jade-800); transform: translateZ(30px);
}
.hero-shot .frame img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; display: block; }

/* „Visualisierung"-Kennzeichnung */
.viz-tag {
  position: absolute; left: 10px; bottom: 10px; z-index: 2;
  font-size: .62rem; letter-spacing: .18em; text-transform: uppercase;
  color: var(--ivory); background: rgba(3,17,15,.72);
  border: 1px solid rgba(194,208,203,.45); border-radius: 999px;
  padding: .28rem .7rem; backdrop-filter: blur(4px); pointer-events: none;
}
.viz-note {
  margin-top: 1.4rem; font-size: .84rem; color: var(--ink-soft);
  max-width: 46rem; font-style: italic;
}

.shot-caption { margin-top: 1.5rem; text-align: center; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-soft); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.6rem; text-align: center; }
  .hero-shot { order: -1; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-ctas, .hero-facts { justify-content: center; }
  .hero { padding: 3.5rem 0 4.5rem; }
  .hero::after { font-size: 9rem; right: -8%; bottom: -4%; }
}

/* --- Sektionen --- */
section { padding: 5.5rem 0; scroll-margin-top: 84px; }
main { scroll-margin-top: 84px; }
.section-dark {
  background: radial-gradient(1000px 500px at 110% 0%, rgba(70,196,143,.07), transparent 55%),
              linear-gradient(180deg, var(--jade-950), var(--jade-900));
  color: var(--ivory); position: relative;
}
.section-dark h2 { color: var(--ivory); }
.section-dark .lead { color: rgba(237,243,239,.8); }
.section-cream2 { background: radial-gradient(800px 400px at -5% 0%, rgba(70,196,143,.10), transparent 55%), var(--ivory-2); }
.section-head { max-width: 46rem; margin-bottom: 3.2rem; }

/* --- Sortiment: Regal-/Tafel-Layout (bewusst kein Kartenraster) --- */
.shelf { border-top: 1px solid var(--line); }
.shelf-row {
  position: relative;
  display: grid; grid-template-columns: minmax(230px, 300px) 1fr;
  gap: 2.2rem; align-items: start;
  padding: 1.7rem 1.2rem 1.7rem 1.4rem;
  border-bottom: 1px solid var(--line);
  transition: background .35s ease, padding-left .35s cubic-bezier(.2,.8,.3,1);
  overflow: hidden;
}
/* Leuchtende Regalkante links, wächst beim Hover */
.shelf-row::before {
  content: ""; position: absolute; left: 0; top: 12%; bottom: 12%; width: 2px;
  background: linear-gradient(180deg, var(--glow), rgba(70,196,143,.15));
  transform: scaleY(0); transform-origin: center;
  transition: transform .45s cubic-bezier(.2,.8,.3,1);
}
.shelf-row:hover {
  background: linear-gradient(90deg, rgba(194,208,203,.06), transparent 70%);
  padding-left: 1.9rem;
}
.shelf-row:hover::before { transform: scaleY(1); }

.shelf-head { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.shelf-no {
  font-family: var(--serif); font-size: 1.35rem; line-height: 1.1; padding-top: .15rem;
  color: transparent; background: var(--silver-grad); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  transition: filter .35s ease;
}
.shelf-row:hover .shelf-no { filter: drop-shadow(0 0 10px rgba(70,196,143,.55)); }
.shelf-head h3 { color: var(--ivory); font-size: 1.32rem; margin-bottom: .3rem; }
.shelf-note { font-size: .88rem; color: rgba(237,243,239,.55); line-height: 1.5; }

.chips { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; padding-top: .35rem; }
.chips li {
  font-size: .86rem; color: rgba(237,243,239,.82);
  border: 1px solid rgba(194,208,203,.22); border-radius: 999px;
  padding: .34rem .9rem; background: rgba(194,208,203,.035);
  transition: border-color .25s ease, background .25s ease, color .25s ease, transform .25s ease;
}
.shelf-row:hover .chips li { border-color: rgba(194,208,203,.4); }
.chips li:hover {
  border-color: var(--glow); color: var(--silver-hi);
  background: rgba(70,196,143,.10); transform: translateY(-2px);
}

/* Pink Corner als einzige farbige Ausnahme */
.shelf-row.pink::before { background: linear-gradient(180deg, var(--pink), rgba(239,127,174,.15)); }
.shelf-row.pink .shelf-head h3 { color: #f7b3ce; }
.shelf-row.pink:hover .shelf-no { filter: drop-shadow(0 0 10px rgba(239,127,174,.55)); }
.shelf-row.pink .chips li:hover { border-color: var(--pink); background: rgba(239,127,174,.12); }

@media (max-width: 760px) {
  .shelf-row { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem .9rem 1.5rem 1.1rem; }
  .shelf-row:hover { padding-left: 1.1rem; }
  .shelf-head h3 { font-size: 1.2rem; }
  .chips li { font-size: .82rem; padding: .3rem .75rem; }
}

/* --- Galerie / Ladenkonzept --- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; perspective: 1400px; }
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr; } }
.shot {
  background: var(--ivory); border: 1px solid rgba(18,33,29,.12); border-radius: var(--radius);
  padding: 12px; box-shadow: var(--shadow-s);
  transition: transform .4s cubic-bezier(.2,.8,.3,1), box-shadow .4s ease, border-color .3s ease;
}
.shot:hover { border-color: var(--silver); box-shadow: var(--shadow-m), var(--shadow-silver); transform: translateY(-4px); }
.shot { position: relative; }
.shot .ph { position: relative; aspect-ratio: 1 / 1; border-radius: 4px; overflow: hidden; background: var(--jade-850); }
.shot .ph img { width: 100%; height: 100%; object-fit: cover; }
/* Theke: Ausschnitt auf den Tresen statt auf die Decke */
.shot .ph img[alt*="Theke"] { object-position: 50% 58%; }
/* Raumplan bringt seinen eigenen hellen Grund mit */
.shot-plan .ph { background: #f2eeee; }
.shot .ph .placeholder {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem; text-align: center; padding: 1rem;
  color: var(--silver-soft); background:
    repeating-linear-gradient(45deg, rgba(194,208,203,.06) 0 10px, transparent 10px 20px), var(--jade-850);
}
.shot .ph .placeholder strong { font-family: var(--serif); font-size: 1.05rem; }
.shot .ph .placeholder span { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(237,243,239,.5); }
.shot figcaption { margin-top: .9rem; text-align: center; }
.shot figcaption strong { display: block; font-family: var(--serif); font-size: 1.05rem; color: var(--jade-900); }
.shot figcaption span { font-size: .78rem; color: var(--ink-soft); }

/* --- Markenband --- */
.brand-band {
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(70,196,143,.10), transparent 60%),
    linear-gradient(180deg, var(--jade-950), var(--jade-900));
  color: var(--ivory);
}
.brand-band-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.brand-band h2 { color: var(--ivory); }
.brand-band .lead { color: rgba(237,243,239,.8); }
/* Lichtschein als eigener Hintergrund – kein Stapelkontext, sonst greift der
   Blendmodus des Logos nicht mehr auf den Abschnittshintergrund durch. */
.brand-logo {
  position: relative;
  /* Bewusst kein Hintergrund-Leuchten: der Blendmodus würde es in das Logo
     hineinrechnen und die dunkle Marmorstruktur der Buchstaben auswaschen.
     Der Lichtschein steckt bereits im Bild, der Rand läuft per Alpha aus. */
}
.brand-logo img {
  width: 112%; max-width: none; height: auto; margin-left: -6%;
  mix-blend-mode: screen;        /* Schwarzanteil verschwindet, Rand läuft per Alpha aus */
  transition: transform .5s cubic-bezier(.2,.8,.3,1);
}
.brand-logo:hover img { transform: scale(1.015); }
/* einspaltig: kein Übermaß, sonst schiebt das Logo die Seite seitlich auf */
@media (max-width: 860px) { .brand-logo img { width: 100%; margin-left: 0; } }
@media (max-width: 860px) {
  .brand-band-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .brand-band .rule { margin-left: auto; margin-right: auto; }
  .brand-band .lead { margin-left: auto; margin-right: auto; }
}

/* --- Zonen --- */
.zones { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.2rem; margin-top: 2.5rem; }
@media (max-width: 760px) { .zones { grid-template-columns: 1fr; } }
.zones li {
  border-left: 2px solid var(--silver); padding: .3rem 0 .3rem 1.1rem;
  background: linear-gradient(90deg, rgba(70,196,143,.07), transparent 60%);
}
.zones strong { display: block; font-family: var(--serif); font-size: 1.08rem; color: var(--jade-900); }
.zones span { font-size: .92rem; color: var(--ink-soft); }

/* --- Roadmap --- */
.roadmap { list-style: none; counter-reset: phase; max-width: 52rem; position: relative; }
.roadmap li { counter-increment: phase; display: grid; grid-template-columns: 78px 1fr; gap: 1.4rem; padding: 1.6rem 0; position: relative; }
.roadmap li::before {
  content: counter(phase); font-family: var(--serif); font-size: 1.9rem; line-height: 1;
  background: var(--silver-grad); background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding-top: .2rem;
}
.roadmap li:not(:last-child)::after {
  content: ""; position: absolute; left: 12px; top: 3.9rem; bottom: -.4rem; width: 1px;
  background: linear-gradient(180deg, var(--line), rgba(194,208,203,.06));
}
.roadmap h3 { color: var(--silver-soft); margin-bottom: .2rem; }
.roadmap .when { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(237,243,239,.45); margin-bottom: .5rem; }
.roadmap p { color: rgba(237,243,239,.8); font-size: .96rem; }
.roadmap .gate { display: inline-block; margin-top: .5rem; font-size: .8rem; color: var(--silver-soft); border: 1px solid var(--line); border-radius: 999px; padding: .2rem .8rem; }
@media (max-width: 640px) {
  .roadmap li { grid-template-columns: 46px 1fr; gap: 1rem; }
  .roadmap li::before { font-size: 1.5rem; }
  .roadmap li:not(:last-child)::after { left: 10px; top: 3.2rem; }
}

/* --- Info-/Besuchskarten (hell) --- */
.info-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; perspective: 1400px; }
@media (max-width: 980px) { .info-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .info-grid { grid-template-columns: 1fr; } }
.info-card {
  position: relative; background: linear-gradient(165deg, #fdfbf5, var(--ivory));
  border: 1px solid rgba(18,33,29,.12); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column;
  box-shadow: var(--shadow-s); transform-style: preserve-3d;
  transition: transform .35s cubic-bezier(.2,.8,.3,1), border-color .3s ease, box-shadow .35s ease;
  will-change: transform;
}
.info-card:hover { border-color: var(--silver); box-shadow: var(--shadow-m), var(--shadow-silver); }
.info-card .tag { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--silver-dark); margin-bottom: .75rem; }
.info-card h3 { color: var(--jade-900); margin-bottom: .7rem; }
.info-card p { font-size: .94rem; color: var(--ink-soft); }
.info-card ul { list-style: none; margin-top: .6rem; }
.info-card li { font-size: .92rem; color: var(--ink-soft); padding: .28rem 0 .28rem 1.2rem; position: relative; }
.info-card li::before { content: "•"; position: absolute; left: 0; color: var(--silver-dark); }

/* --- Öffnungszeiten --- */
.hours { list-style: none; margin-top: 1.6rem; max-width: 26rem; }
.hours li { display: flex; justify-content: space-between; gap: 1rem; padding: .65rem 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.hours li span:last-child { color: var(--silver-soft); }
.hours li.closed span:last-child { color: rgba(237,243,239,.45); }

/* Öffnungszeiten-Panel */
.hours-panel { margin-top: 3rem; border-radius: var(--radius); padding: 2.5rem 2rem; }
.hours-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; }
.panel-h3 { color: var(--ivory); font-size: 1.4rem; margin-bottom: .55rem; }
.panel-text { color: rgba(237,243,239,.8); font-size: .96rem; }
@media (max-width: 760px) {
  .hours-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .hours-panel { padding: 1.9rem 1.3rem; margin-top: 2.2rem; }
  .hours { margin-left: auto; margin-right: auto; }
}

/* --- 18+ Hinweis --- */
.age-note {
  display: flex; align-items: flex-start; gap: 1.1rem;
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.4rem 1.6rem; margin-top: 2.5rem;
  background: linear-gradient(160deg, rgba(194,208,203,.08), rgba(194,208,203,.02));
}
.age-badge {
  flex: 0 0 auto; width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 600;
  background: var(--silver-grad); color: var(--jade-950);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 4px 12px rgba(3,17,15,.3);
}
.age-note p { font-size: .92rem; color: rgba(237,243,239,.8); }
.age-note strong { color: var(--ivory); }

/* --- Kontakt --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-list { list-style: none; margin-top: 1.7rem; }
.contact-list li { padding: .75rem 0; border-bottom: 1px solid var(--line); font-size: .96rem; }
.contact-list a { color: var(--silver-soft); text-decoration: none; }
.contact-list a:hover { color: var(--silver-hi); text-decoration: underline; text-underline-offset: 3px; }
.contact-label { display: block; font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: rgba(237,243,239,.55); margin-bottom: .2rem; }

.contact-form {
  display: grid; gap: 1rem;
  background: linear-gradient(160deg, rgba(237,243,239,.05), rgba(237,243,239,.015));
  border: 1px solid rgba(194,208,203,.20); border-radius: var(--radius);
  padding: 1.8rem; box-shadow: var(--shadow-m);
}
.contact-form label { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--silver-soft); }
.contact-form input, .contact-form textarea {
  width: 100%; padding: .85rem .95rem; border-radius: var(--radius);
  border: 1px solid rgba(194,208,203,.28); background: rgba(3,17,15,.35);
  color: var(--ivory); font-family: var(--sans); font-size: 16px;
  transition: border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--silver);
  box-shadow: 0 0 0 3px rgba(194,208,203,.20); background: rgba(3,17,15,.5);
}
.contact-form ::placeholder { color: rgba(237,243,239,.38); }
.form-note { font-size: .78rem; color: rgba(237,243,239,.55); }

/* --- Footer --- */
.site-footer { background: var(--jade-950); color: rgba(237,243,239,.75); padding: 3.8rem 0 2rem; border-top: 1px solid var(--line); position: relative; overflow: hidden; }
.site-footer::after {
  content: "JADE"; position: absolute; left: -2%; bottom: -28%;
  font-family: var(--serif); font-size: 11rem; line-height: 1;
  color: rgba(194,208,203,.045); pointer-events: none; user-select: none;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 2.5rem; margin-bottom: 2.5rem; position: relative; z-index: 1; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h4 { font-family: var(--sans); font-size: .75rem; letter-spacing: .22em; text-transform: uppercase; color: var(--silver); margin-bottom: 1rem; }
.footer-grid ul { list-style: none; }
.footer-grid li { padding: .28rem 0; font-size: .9rem; }
.footer-grid a { color: rgba(237,243,239,.75); text-decoration: none; }
.footer-grid a:hover { color: var(--silver-soft); }
.footer-disclaimer { font-size: .78rem; color: rgba(237,243,239,.5); border-top: 1px solid rgba(194,208,203,.18); padding-top: 1.5rem; max-width: 62rem; position: relative; z-index: 1; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-top: 1.4rem; font-size: .8rem; color: rgba(237,243,239,.5); position: relative; z-index: 1; }

/* --- Rechtsseiten --- */
.legal-page { padding: 4rem 0 5rem; max-width: 46rem; margin: 0 auto; }
.legal-page h1 { color: var(--jade-900); margin-bottom: 2rem; font-size: clamp(1.9rem, 4vw, 2.6rem); }
.legal-page h2 { font-size: 1.3rem; color: var(--jade-900); margin: 2.2rem 0 .7rem; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: .96rem; }
.legal-page ul { padding-left: 1.3rem; margin: .6rem 0; }
.legal-page address { font-style: normal; }
.back-link { display: inline-block; margin-bottom: 2rem; color: var(--silver-dark); text-decoration: none; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.back-link:hover { text-decoration: underline; text-underline-offset: 3px; }

/* --- Floating Call-Button --- */
.call-float {
  position: fixed; right: 22px; z-index: 60;
  bottom: calc(22px + env(safe-area-inset-bottom, 0px));
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--silver-grad); background-size: 200% 100%; color: var(--jade-950);
  display: flex; align-items: center; justify-content: center; text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 20px rgba(0,0,0,.35);
  transition: transform .3s cubic-bezier(.2,.8,.3,1);
  animation: callPulse 3.2s ease-out infinite;
}
@keyframes callPulse {
  0% { box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 20px rgba(0,0,0,.35), 0 0 0 0 rgba(70,196,143,.4); }
  60% { box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 20px rgba(0,0,0,.35), 0 0 0 16px rgba(70,196,143,0); }
  100% { box-shadow: inset 0 1px 0 rgba(255,255,255,.45), 0 8px 20px rgba(0,0,0,.35), 0 0 0 0 rgba(70,196,143,0); }
}
.call-float { opacity: 0; visibility: hidden; transform: translateY(14px) scale(.9);
  transition: transform .4s cubic-bezier(.2,.8,.3,1), opacity .3s ease, visibility .3s ease; }
.call-float.show { opacity: 1; visibility: visible; transform: none; }
.call-float.show:hover { transform: translateY(-4px) scale(1.05); }
.call-float svg { width: 25px; height: 25px; }

/* --- Lightbox (nur Desktop, per JS) --- */
.lightbox {
  position: fixed; inset: 0; z-index: 90; display: flex; align-items: center; justify-content: center;
  background: rgba(3,17,15,.9); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  cursor: zoom-out; padding: 4vh 4vw;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox figure { max-width: min(940px, 92vw); max-height: 90vh; text-align: center; transform: scale(.92) translateY(12px); transition: transform .4s cubic-bezier(.2,.8,.3,1); }
.lightbox.open figure { transform: none; }
.lightbox img { max-width: 100%; max-height: 78vh; width: auto; height: auto; margin: 0 auto; border-radius: var(--radius); border: 1px solid var(--silver); box-shadow: var(--shadow-l), 0 0 60px rgba(70,196,143,.18); }
.lightbox figcaption { margin-top: 1.1rem; font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--silver-soft); }
.lightbox-close {
  position: absolute; top: 22px; right: 26px; width: 46px; height: 46px; border-radius: 50%;
  background: rgba(237,243,239,.06); border: 1px solid var(--silver); color: var(--silver-soft);
  font-size: 1.5rem; line-height: 1; cursor: pointer; transition: background .25s ease, transform .25s ease;
}
.lightbox-close:hover { background: rgba(194,208,203,.18); transform: rotate(90deg); }
@media (hover: hover) and (pointer: fine) {
  img.zoomable { cursor: zoom-in; }
  .info-card::after, .shot::after {
    content: ""; position: absolute; inset: 0; border-radius: var(--radius); pointer-events: none;
    background: radial-gradient(340px circle at var(--mx,50%) var(--my,50%), rgba(70,196,143,.13), transparent 46%);
    opacity: 0; transition: opacity .3s ease;
  }
  .info-card:hover::after, .shot:hover::after { opacity: 1; }
  .shelf-row::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(420px circle at var(--mx,50%) var(--my,50%), rgba(70,196,143,.09), transparent 48%);
    opacity: 0; transition: opacity .3s ease;
  }
  .shelf-row:hover::after { opacity: 1; }
}

/* --- Reveal --- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.3,1); transition-delay: var(--d, 0s); }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --- Mobile Premium: Lichtlauf über die Sortimentszeilen + Touch-Tilt --- */
@media (hover: none) and (pointer: coarse) {
  .shelf-row::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background: linear-gradient(115deg, transparent 40%, rgba(214,247,231,.10) 49%, rgba(70,196,143,.07) 52%, transparent 61%);
    background-size: 260% 100%; background-position: 130% 0; opacity: 0;
  }
  .shelf-row.visible::after { animation: silverSweep 1.4s cubic-bezier(.3,.6,.3,1) .3s 1 both; }
  .shelf-row::before { transform: scaleY(1); }   /* Regalkante mobil dauerhaft sichtbar */
  .info-card, .shot {
    transition: transform .5s cubic-bezier(.2,.9,.25,1.15), border-color .3s ease, box-shadow .35s ease;
  }
  .info-card.pressed, .shot.pressed { border-color: var(--silver); }
}
@keyframes silverSweep { 0% { opacity: 1; background-position: 130% 0; } 100% { opacity: 1; background-position: -30% 0; } }
@media (prefers-reduced-motion: reduce) { .shelf-row::after { animation: none !important; opacity: 0 !important; } }

/* --- Blocksatz nur ab Tablet, mit strengen Trennregeln --- */
@media (min-width: 760px) {
  .info-card p { hyphens: auto; -webkit-hyphens: auto; }
  .legal-page p, .legal-page li, .about-text p {
    text-align: justify; hyphens: auto; -webkit-hyphens: auto;
    hyphenate-limit-chars: 12 6 4;
    -webkit-hyphenate-limit-before: 6; -webkit-hyphenate-limit-after: 4;
    hyphenate-limit-lines: 1; -webkit-hyphenate-limit-lines: 1;
  }
}

/* --- Mobile-Feinschliff --- */
@media (max-width: 640px) {
  body { font-size: 16px; }
  section { padding: 3.5rem 0; }
  .section-head { margin-bottom: 2.2rem; }
  .rule { margin-left: auto; margin-right: auto; }
  #laden .rule, #sortiment .rule, #roadmap .rule, .brand-band .rule { margin-left: 0; }
  .footer-bottom { justify-content: center; text-align: center; }
  .call-float { width: 52px; height: 52px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom, 0px)); }
  .hero-shot { animation: none; }
  .age-note { flex-direction: column; align-items: center; text-align: center; }
}
@media (max-width: 420px) {
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; text-align: center; }
  .brand-name { font-size: .95rem; letter-spacing: .13em; }
  .contact-form .btn { width: 100%; }
}


/* ============================================================
   Ergänzungen: Klassen statt Inline-Styles, Mobile-Parität
   ============================================================ */

.roadmap-note { margin-top: 2rem; max-width: 46rem; }
.lead-tight { margin-top: 1rem; }
.footer-about { font-size: .9rem; max-width: 22rem; }
.note-link { color: var(--silver-soft); }
.contact-pending { color: rgba(237,243,239,.55); font-style: italic; }

/* --- Mobile: Lightbox-Bedienung mit Daumen --- */
.lightbox-close { top: calc(22px + env(safe-area-inset-top, 0px)); }
@media (max-width: 760px) {
  .lightbox { padding: 6vh 5vw; }
  .lightbox figure { max-width: 100%; }
  .lightbox img { max-height: 68vh; }
  .lightbox figcaption { font-size: .7rem; letter-spacing: .14em; }
  .lightbox-close { top: auto; right: 50%; transform: translateX(50%); bottom: calc(24px + env(safe-area-inset-bottom, 0px)); width: 52px; height: 52px; }
  .lightbox-close:hover { transform: translateX(50%); }
}
img.zoomable { cursor: zoom-in; }

/* --- Mobile-Feinschliff, zweite Stufe --- */
@media (max-width: 640px) {
  .wrap { padding: 0 20px; }
  .nav { padding: .75rem 20px; }
  .brand-mark { height: 36px; }
  .hero { padding: 2.8rem 0 3.8rem; }
  .hero-facts { gap: 1.1rem 1.6rem; margin-top: 2rem; }
  .hero-facts div { min-width: 0; flex: 1 1 42%; }
  .hero-facts dd { font-size: 1.05rem; }
  .status-pill { font-size: .68rem; letter-spacing: .1em; padding: .38rem .85rem; }
  .section-head { margin-bottom: 2rem; }
  .contact-form { padding: 1.3rem 1.1rem; }
  .shot { padding: 9px; }
  .shot .ph { aspect-ratio: 1 / 1; }
  .age-note { padding: 1.2rem 1.1rem; }
  .zones li { padding-left: .9rem; }
  .site-footer::after { font-size: 7rem; bottom: -14%; }
  .footer-about { max-width: none; }
  .viz-note { font-size: .8rem; }
}

/* Sehr schmale Geräte: Regalzeilen und Chips atmen lassen */
@media (max-width: 380px) {
  .shelf-row { padding: 1.3rem .7rem 1.3rem .95rem; }
  .chips { gap: .4rem; }
  .chips li { font-size: .78rem; padding: .28rem .65rem; }
  .shelf-head { gap: .75rem; }
  .hero-ctas { margin-top: 1.8rem; }
}

/* Landscape auf dem Handy: Hero nicht unnötig hoch */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { padding: 2.2rem 0 2.6rem; }
  .hero-shot { width: min(300px, 46vw); }
}

/* Touch-Ziele: mindestens 44px, wie von den Plattform-Richtlinien gefordert */
@media (hover: none) and (pointer: coarse) {
  .nav-links a { padding: .95rem; }
  .contact-list a { display: inline-block; padding: .25rem 0; }
  .footer-grid a { display: inline-block; padding: .3rem 0; }
  .back-link { padding: .4rem 0; }
}

/* Tastaturbedienung sichtbar halten */
button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--silver); outline-offset: 3px;
}

/* Drucken: dunkle Flächen kosten Toner und bringen nichts */
@media print {
  .site-header, .call-float, .scroll-progress, .hero-ctas, .contact-form, .nav-toggle { display: none !important; }
  body { background: #fff; color: #000; font-size: 11pt; }
  .hero, .section-dark, .brand-band, .site-footer { background: #fff !important; color: #000 !important; }
  .hero h1, .section-dark h2, .brand-band h2, .panel-h3 { color: #000 !important; }
  .hero .lead, .section-dark .lead, .roadmap p, .panel-text, .age-note p { color: #222 !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 9pt; }
}

/* --- Hero-Eckdaten auf dem Handy als saubere Liste statt umbrechender Spalten --- */
@media (max-width: 640px) {
  .hero-facts { display: block; margin-top: 2.1rem; text-align: left; }
  .hero-facts div {
    display: flex; align-items: baseline; justify-content: space-between; gap: 1rem;
    border-top: 1px solid rgba(194,208,203,.16); padding: .62rem 0; min-width: 0;
  }
  .hero-facts div:last-child { border-bottom: 1px solid rgba(194,208,203,.16); }
  .hero-facts dt { margin-bottom: 0; font-size: .64rem; letter-spacing: .2em; flex: 0 0 auto; }
  .hero-facts dd { font-size: 1rem; text-align: right; }
  .status-pill { font-size: .64rem; letter-spacing: .08em; padding: .4rem .9rem; }
}

/* --- Druck: der Logo-Blendmodus funktioniert auf Weiß nicht --- */
@media print { .brand-logo, .site-footer::after, .hero::after { display: none !important; } }
