/* =========================================================================
   ORO — Design-System
   Leise Eleganz · gedeckte Palette · Editorial-Serifen
   ========================================================================= */

/* =========================================================================
   SCHRIFTEN — selbst gehostet (DSGVO: keine externen Requests an Google).
   Variable Fonts: je eine Datei deckt alle Schnitte ab (weniger Requests).
   Playfair Display & Inter stehen unter SIL OFL 1.1 — Lizenztexte liegen
   in assets/fonts/ und müssen dort verbleiben.
   ========================================================================= */
@font-face {
  font-family: "Playfair Display"; src: url("../fonts/playfair-var.woff2") format("woff2");
  font-weight: 400 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "Playfair Display"; src: url("../fonts/playfair-var-italic.woff2") format("woff2");
  font-weight: 400 900; font-style: italic; font-display: swap;
}
@font-face {
  font-family: "Inter"; src: url("../fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900; font-style: normal; font-display: swap;
}

:root {
  /* ---- Quiet-Luxury-Palette — neutrales Off-White ----
     Kein Gelbstich mehr: Beige wirkte auf großen Flächen vergilbt. Die Töne
     sind jetzt farbneutral, aber nicht rein weiß — ein Hauch Grau hält helle
     Produktfotos vom Hintergrund getrennt und vermeidet die klinische
     Wirkung großer #ffffff-Flächen. Einziger Farbton bleibt das Oxblood
     des Signets. */

  /* Flächen */
  --paper:   #fcfcfc;   /* Seitenhintergrund — nahezu weiß, farbneutral */
  --paper-2: #f6f6f6;   /* alternierende Sektionen */
  --cream:   #f0f0f0;   /* Panels, Feature-Flächen, Badges */

  /* Text */
  --ink:     #222222;   /* Off-Black statt #000 — weicher */
  --ink-2:   #4d4d50;   /* Sekundärtext */
  --muted:   #6b6b6e;   /* Meta / Overlines (AA auf allen drei Flächen) */

  /* Dunkle Flächen — Hero, Editorial, Footer */
  --dark:    #262628;
  --dark-d:  #1a1a1c;

  /* Neutraler Begleitton für Haarlinien und Ziffern */
  --accent:  #8a8a8d;
  --sand:    #d0d0d3;   /* helles Grau — Akzent auf dunklen Flächen */

  /* Hairlines */
  --line:    #e6e6e7;
  --line-2:  #efefef;

  /* Markenakzent — Oxblood aus dem ORO-Signet. Der EINZIGE Farbakzent. */
  --oxblood: #3f1113;

  /* Funktionsfarbe (Fehler/Entfernen) — gedeckt, nicht grell */
  --wine:    #8a4f4a;

  /* Type — selbst gehostet, Serif für Headlines, Sans für Fließtext/UI */
  --display: "Playfair Display", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body:    "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --sans:    "Inter", system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;

  --wrap: 1240px;
  --gap: clamp(1.1rem, 2.4vw, 2rem);
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);      /* edles, langsames Ausklingen */
  --ease-inout: cubic-bezier(.76, 0, .24, 1);
}

/* =========================================================================
   LOGO-LADEANIMATION (Preloader)
   ========================================================================= */
.preloader {
  position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center;
  background: radial-gradient(120% 100% at 50% 32%, #2b2b2e, #161618 78%);
  transition: transform .7s cubic-bezier(.76, 0, .24, 1), opacity .5s ease;
}
.intro-seen .preloader { display: none; }
.preloader.is-done { transform: translateY(-100%); }
.preloader__inner { display: flex; flex-direction: column; align-items: center; gap: 1.5rem;
  transition: opacity .4s ease, transform .5s cubic-bezier(.16,1,.3,1); }
.preloader.is-done .preloader__inner { opacity: 0; transform: translateY(-12px); }
/* Das Signet ist eine gefüllte Form, kein Strich — hell auf dunklem Grund
   über currentColor, damit dieselbe Datei im Header dunkel sein kann. */
.emblem { width: min(46vw, 176px); height: auto; color: var(--paper); }
/* Blendet auf und steigt leicht. Der frühere Ring zeichnete sich per
   stroke-dashoffset selbst; das setzt eine Strichkontur voraus, die die
   echte Wortmarke nicht hat. */
.emblem__mark { opacity: 0; transform: translateY(10px) scale(.985); transform-origin: 50% 60%;
  animation: emblemIn .8s cubic-bezier(.16,1,.3,1) .1s forwards; }
.preloader__tag { font-family: var(--sans); font-size: .66rem; letter-spacing: .3em; text-transform: uppercase;
  color: rgba(208,208,211,.75); opacity: 0; animation: emblemIn .5s ease .4s forwards; }
@keyframes emblemIn { to { opacity: 1; transform: none; } }
body.intro-lock { overflow: hidden; }
@media (prefers-reduced-motion: reduce) { .preloader { display: none; } }

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; background: none; border: none; }
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: .002em; }
ul { list-style: none; padding: 0; }

/* ---- Helpers ----------------------------------------------------------- */
.wrap { width: min(var(--wrap), 92%); margin-inline: auto; }
.overline {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted); font-weight: 500;
}
.hidden { display: none !important; }

/* ---- Motion / Reveal-System -------------------------------------------
   Zurückhaltend und variiert statt überall gleicher Fades. Es werden nur
   transform / opacity / clip-path animiert (kompositor-freundlich). Die
   Sichtbarkeit steuert ein IntersectionObserver, der `.in` hinzufügt. */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }

/* Gestaffelte Kinder — Grids, Materialspalten, Werte-Raster. Verzögerung je
   Kind über die --d-Variable (in ms, vom JS gesetzt). */
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); transition-delay: calc(var(--d, 0) * 1ms); }
.stagger.in > * { opacity: 1; transform: none; }

/* Maskierter Reveal für Bild-/Editorial-Flächen: der Inhalt wird wie hinter
   einem sich hebenden Vorhang freigegeben. */
.mask > * { clip-path: inset(0 0 102% 0); transition: clip-path 1.15s var(--ease-out); transition-delay: calc(var(--d, 0) * 1ms); }
.mask.in > * { clip-path: inset(0 0 0 0); }

/* Wort-für-Wort-Aufstieg für große Headlines (Aufteilung erfolgt im JS). */
.split .ln { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .14em; margin-bottom: -.14em; }
.split .ln__i { display: inline-block; transform: translateY(118%); transition: transform 1s var(--ease-out); transition-delay: calc(var(--d, 0) * 1ms); }
.split.in .ln__i { transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .stagger > *, .mask > *, .mask-x, .split .ln__i,
  .pc .pc__media, .pc .pc__info { opacity: 1 !important; transform: none !important; clip-path: none !important; transition: none !important; }
  .mask-x::before { transition: none !important; }
  html { scroll-behavior: auto; }
}

/* Druckansicht: Reveal-/Mask-Zustände sind JS-gesteuert — ohne IntersectionObserver
   blieben untere Sektionen im Ausdruck unsichtbar. Alles zeigen, Vorhang entfernen. */
@media print {
  .reveal, .stagger > *, .mask > *, .mask-x, .split .ln__i,
  .pc .pc__media, .pc .pc__info { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  .mask-x::before { display: none !important; }
}

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  position: relative; overflow: hidden; z-index: 0;
  display: inline-flex; align-items: center; justify-content: center; gap: .7em;
  font-family: var(--sans); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  /* Primäraktion — ruhige Off-Black-Fläche auf Off-White, ohne Akzentfarbe. */
  padding: 1.15em 2.4em; background: var(--ink); color: var(--paper);
  border: 1px solid var(--ink); transition: color .45s var(--ease-out), border-color .45s var(--ease-out);
}
/* Fill-Sweep: ein Hauch dunkler zieht von unten herein, kein Farbsprung. */
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1; background: var(--dark-d);
  transform: translateY(102%); transition: transform .55s var(--ease-out);
}
.btn:hover::before { transform: translateY(0); }
.btn--full { width: 100%; }
/* Deaktivierte Primäraktion (z. B. verkauftes Unikat): zurückgenommen,
   kein Hover-Fülllauf. */
.btn[disabled] { background: transparent; color: var(--muted); border-color: var(--line-2); cursor: not-allowed; pointer-events: none; }
/* Sekundäraktion — dezenter: Navy-Outline, weniger Sättigung. */
.btn--ghost { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--ghost::before { background: var(--dark); }
.btn--ghost:hover { color: var(--paper); }
.btn--light { background: transparent; color: var(--paper); border-color: rgba(252,252,252,.5); }
.btn--light::before { background: var(--paper); }
.btn--light:hover { color: var(--dark-d); border-color: var(--paper); }
.link-arrow {
  font-family: var(--sans); font-size: .76rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); position: relative; padding-bottom: .35em;
  display: inline-flex; gap: .6em; align-items: center;
}
.link-arrow::before { content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(1); transform-origin: left; transition: transform .55s var(--ease-out); opacity: .55; }
.link-arrow:hover::before { transform: scaleX(1); opacity: 1; }
.link-arrow::after { content: "→"; transition: transform .45s var(--ease-out); }
.link-arrow:hover::after { transform: translateX(7px); }

/* ---- Section rhythm ---------------------------------------------------- */
.section { padding: clamp(3.5rem, 6vw, 6rem) 0; }
.section--tight { padding: clamp(2.6rem, 5vw, 4rem) 0; }
.sec-head { max-width: 46rem; margin-bottom: clamp(1.8rem, 3.5vw, 3rem); }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head .overline { display: inline-flex; align-items: center; gap: .9em; margin-bottom: 1.4rem; }
/* Feine goldene Leitlinie neben dem Overline — editoriale Signatur. */
.sec-head .overline::before { content: ""; width: 2.2rem; height: 1px; background: var(--accent); opacity: .8; }
.sec-head--center .overline::after { content: ""; width: 2.2rem; height: 1px; background: var(--accent); opacity: .8; }
.sec-head h2 { font-size: clamp(1.75rem, 3.4vw, 2.6rem); letter-spacing: -.015em; line-height: 1.04; }
.sec-head p { margin-top: 1.3rem; color: var(--ink-2); font-size: 1.04rem; line-height: 1.7; max-width: 40rem; }
.sec-head--center p { margin-inline: auto; }
.sec-num { font-family: var(--sans); color: var(--accent); font-size: .8rem; letter-spacing: .2em; }

/* =========================================================================
   ANNOUNCEMENT + HEADER
   ========================================================================= */
.announce {
  background: var(--dark-d); color: var(--cream);
  font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase;
  text-align: center; padding: .7em 1rem;
}
.announce strong { color: #fff; font-weight: 500; }
.announce a { border-bottom: 1px solid rgba(255,255,255,.4); }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  border-bottom: 1px solid transparent;
  transition: border-color .5s var(--ease-out), box-shadow .5s var(--ease-out), background .5s var(--ease-out), transform .55s var(--ease-out);
}
.site-header.scrolled { border-color: var(--line-2); }

/* Über dem Video-Hero läuft der Header komplett transparent und erst beim
   Scrollen blendet die helle Fläche ein. Keine Linie, kein Blur, kein Schatten. */
body:has(.hero--video) .site-header:not(.scrolled) {
  background: transparent; backdrop-filter: none; border-color: transparent;
}
body:has(.hero--video) .site-header:not(.scrolled) .brand { color: var(--paper); }
body:has(.hero--video) .site-header:not(.scrolled) .nav__link { color: rgba(252,252,252,.86); }
body:has(.hero--video) .site-header:not(.scrolled) .nav__link:hover { color: var(--paper); }
body:has(.hero--video) .site-header:not(.scrolled) .icon-btn { color: var(--paper); }
body:has(.hero--video) .site-header:not(.scrolled) .burger span { background: var(--paper); }
/* Beim Runterscrollen ausblenden (nur wenn kein Menü/Warenkorb offen). */
.site-header.nav-hidden { transform: translateY(-100%); }
body.cart-open .site-header, body.nav-open .site-header { transform: none; }
/* Skandinavische Symmetrie: Navigation links, Signet exakt mittig, Icons rechts.
   Das Signet wird absolut zentriert, damit es unabhängig von den unterschiedlich
   breiten Seiten wirklich in der Mitte sitzt. */
/* Drei echte Spalten statt absolut zentriertem Signet: so kann die Navigation
   das Logo konstruktiv nicht mehr überlappen — die Mittelspalte gehört ihm. */
.header__inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: .85rem 0; gap: 1.5rem; min-height: 62px; }
.header__inner > .burger { order: 0; grid-column: 1; justify-self: start; }
.header__inner > .nav { order: 1; grid-column: 1; justify-self: start; min-width: 0; }
.header__inner > .brand { order: 2; grid-column: 2; justify-self: center; }
.header__inner > .header__actions { order: 3; grid-column: 3; justify-self: end; }
/* ---- Signet (ORO-Monogramm) ------------------------------------------
   Ring-O als Geometrie + Didone-R aus der Hausschrift. Farbe über
   currentColor, damit dasselbe Markup hell auf dunkel funktioniert. */
.brand { display: inline-flex; align-items: center; color: var(--oxblood);
  transition: color .45s var(--ease-out), opacity .3s var(--ease-out); }
.brand:hover { opacity: .78; }
/* Die Wortmarke ist ein gefüllter Pfad mit fill="currentColor" — sie folgt
   damit der Farbe von .brand und wird über dem Video hell, nach dem Scrollen
   dunkel. overflow: visible entfällt: der Pfad bleibt in seiner viewBox,
   anders als die frühere Textkontur. */
.brand__mark { display: block; height: 40px; width: auto; }
.brand__year { fill: currentColor; font-family: var(--sans); font-size: 13px; letter-spacing: 5px; opacity: .75; }

/* Auf dem Desktop bleiben nur die drei Hauptpunkte stehen (Shop · Journal ·
   Die Marke). Die vier Kategorie-Links sind zu viel neben einem mittigen
   Signet — sie bleiben im DOM (Crawling) und im Vollbild-Menü erhalten, und
   der Shop hat für sie eigene Filter-Chips. */
@media (min-width: 881px) {
  .nav__link[href*="?cat="] { display: none; }
}
.nav { display: flex; gap: 1.6rem; }
.nav__link {
  font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
  position: relative; padding: .4em 0; white-space: nowrap; transition: color .3s;
}
.nav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1px; background: var(--accent); transition: width .35s var(--ease); }
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 1.3rem; }
/* Sprachumschalter: zeigt die jeweils ANDERE Sprache, damit klar ist, wohin
   der Klick führt. Bewusst unscheinbar — Navigation, kein Ausrufezeichen. */
.lang-switch { font-family: var(--sans); font-size: .68rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-2); padding: .3em .1em;
  border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.lang-switch:hover { color: var(--ink); border-color: currentColor; }
body:has(.hero--video) .site-header:not(.scrolled) .lang-switch { color: rgba(252,252,252,.86); }
body:has(.hero--video) .site-header:not(.scrolled) .lang-switch:hover { color: var(--paper); }
body.nav-open .lang-switch { color: var(--paper); }
.icon-btn { display: inline-flex; color: var(--ink); position: relative; transition: color .3s; }
.icon-btn:hover { color: var(--accent); }
.icon-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -9px; right: -11px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--accent); color: #fff; border-radius: 20px; font-family: var(--sans); font-size: .62rem;
  display: grid; place-items: center; letter-spacing: 0;
}
.cart-count.is-empty { display: none; }
.burger { display: none; flex-direction: column; justify-content: center; align-items: flex-start; gap: 5px; width: 44px; height: 44px; margin-left: -10px; }
.burger span { height: 1.5px; width: 24px; background: var(--ink); transition: transform .35s var(--ease-out), opacity .25s, background .3s; }
body.nav-open .burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Skip-Link: unsichtbar, bis er per Tastatur fokussiert wird (WCAG 2.4.1). */
.skip-link { position: fixed; top: .75rem; left: .75rem; z-index: 300; background: var(--dark); color: var(--paper);
  font-family: var(--sans); font-size: .76rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .85em 1.3em; transform: translateY(-300%); transition: transform .2s var(--ease); }
.skip-link:focus-visible { transform: none; }

/* 404 im Markenlayout: ruhig, zentriert, ein klarer Weg zurück in den Shop. */
.nf { min-height: 52vh; display: grid; place-content: center; justify-items: center; text-align: center;
  gap: 1.1rem; padding: clamp(4rem, 10vw, 7rem) 0; }
.nf h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -.015em; }
.nf p { color: var(--ink-2); max-width: 34rem; }
.nf .btn { margin-top: .8rem; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: center;
  color: var(--paper); overflow: hidden;
  background:
    radial-gradient(90% 70% at 82% 108%, rgba(182,136,79,.22), transparent 60%),
    linear-gradient(158deg, var(--dark) 0%, var(--dark-d) 72%, #10201800 100%),
    var(--dark-d);
}
/* Fischgrat-Textur mit Parallax (--par vom JS gesetzt). */
.hero::after {
  content: ""; position: absolute; inset: -12% 0 -12% 0; opacity: .42; mix-blend-mode: soft-light;
  transform: translate3d(0, var(--par, 0px), 0); will-change: transform;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='26' height='26' viewBox='0 0 26 26'%3E%3Cpath d='M0 19 L6.5 12.5 L13 19 L19.5 12.5 L26 19 M0 6.5 L6.5 0 L13 6.5 L19.5 0 L26 6.5' fill='none' stroke='%23ffffff' stroke-width='1.4' opacity='0.3'/%3E%3C/svg%3E");
}
/* Vignette unten für Tiefe und ruhigen Textabschluss. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(26,26,28,.45));
}
.hero__inner { position: relative; z-index: 2; padding: 9rem 0; max-width: 46rem; }
/* Zweispaltiger Hero mit visuellem Anker (Stoff-„Portrait“ rechts). */
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 6vw, 5rem);
  align-items: center; padding: clamp(6rem, 12vw, 9rem) 0; }
.hero__text { max-width: 40rem; }
.hero__visual { position: relative; opacity: 0; transform: translateY(26px);
  transition: opacity 1.2s var(--ease-out) .55s, transform 1.2s var(--ease-out) .55s; }
.hero.hero-in .hero__visual { opacity: 1; transform: none; }
.hero__frame { aspect-ratio: 3/4; background-size: 40px; position: relative;
  border: 1px solid rgba(208,208,211,.35); box-shadow: 0 50px 90px -50px rgba(0,0,0,.7); }
.hero__frame .pc__seal { color: rgba(252,252,252,.55); border-color: rgba(252,252,252,.4); }
.hero__card { position: absolute; bottom: -1.6rem; left: -1.6rem; background: var(--paper); color: var(--ink);
  padding: 1rem 1.5rem; box-shadow: 0 24px 50px -30px rgba(0,0,0,.5); }
.hero__card .overline { display: block; margin-bottom: .3rem; }
.hero__card strong { font-family: var(--display); font-size: 1.2rem; color: var(--dark-d); }
@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; padding: 7rem 0 5rem; }
  .hero__visual { display: none; }
}
.hero__eyebrow { color: var(--sand); margin-bottom: 2rem; display: inline-flex; align-items: center; gap: .9em; }
.hero__eyebrow::before { content: ""; width: 2.4rem; height: 1px; background: var(--sand); opacity: .7; }
.hero h1 { font-size: clamp(2.5rem, 5.6vw, 4.4rem); font-weight: 500; letter-spacing: -.02em; line-height: 1.0; }
.hero h1 em { font-style: italic; color: var(--sand); }
.hero__lead { margin-top: 2rem; font-size: clamp(1rem, 1.6vw, 1.18rem); color: rgba(252,252,252,.82); max-width: 33rem; line-height: 1.65; }
.hero__cta { margin-top: 3rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__meta { position: absolute; right: 0; bottom: 2.6rem; z-index: 2; text-align: right; color: rgba(252,252,252,.75);
  font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; }
.hero__meta strong { display: block; font-family: var(--display); font-size: 1.28rem; letter-spacing: .08em; color: var(--paper); text-transform: none; margin-top: .3rem; }

/* Inszenierte Einblendung (beim Laden ausgelöst via .hero-in). */
.hero__eyebrow, .hero__lead, .hero__cta, .hero__meta {
  opacity: 0; transform: translateY(20px); transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.hero.hero-in .hero__eyebrow { opacity: 1; transform: none; transition-delay: .15s; }
.hero.hero-in .hero__lead { opacity: 1; transform: none; transition-delay: .6s; }
.hero.hero-in .hero__cta { opacity: 1; transform: none; transition-delay: .75s; }
.hero.hero-in .hero__meta { opacity: 1; transform: none; transition-delay: 1s; }

/* Scroll-Cue */
.hero__cue { position: absolute; left: 50%; bottom: 1.8rem; z-index: 3; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .8rem; opacity: 0; transition: opacity 1s var(--ease-out) 1.2s; }
.hero.hero-in .hero__cue { opacity: 1; }
.hero__cue span { font-family: var(--sans); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(252,252,252,.6); }
.hero__cue i { width: 1px; height: 46px; background: linear-gradient(var(--sand), transparent); position: relative; overflow: hidden; }
.hero__cue i::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: var(--paper); animation: cueSlide 2.4s var(--ease-inout) infinite; }
@keyframes cueSlide { 0% { transform: translateY(0); } 60%, 100% { transform: translateY(300%); } }
@media (prefers-reduced-motion: reduce) {
  .hero__eyebrow, .hero__lead, .hero__cta, .hero__meta, .hero__cue { opacity: 1 !important; transform: none !important; }
  .hero__cue i::after { animation: none; }
}

/* =========================================================================
   HERO (Vollbild, zentriert — House-of-Honey-Muster) + MAISON-Intro
   ========================================================================= */
.hero--hh { min-height: 100svh; }
.hero--hh .hero__center { position: relative; z-index: 2; max-width: 54rem; margin-inline: auto; text-align: center;
  padding: clamp(7rem, 14vh, 11rem) 0; }
.hero--hh .hero__eyebrow { justify-content: center; }
.hero--hh .hero__eyebrow::after { content: ""; width: 2.4rem; height: 1px; background: var(--sand); opacity: .7; }
.hero--hh h1 { font-size: clamp(2.3rem, 4.8vw, 3.8rem); }
.hero--hh .hero__lead { margin-inline: auto; }
.hero--hh .hero__cta { justify-content: center; }

/* Der transparente Header schwebt über dem Video: fixiert, damit das Bild
   wirklich bis an die Oberkante läuft (der Hero ist das erste Element). */
body:has(.hero--video) .site-header { position: fixed; left: 0; right: 0; top: 0; }

/* Der Hero füllt den ganzen ersten Bildschirm: beim Öffnen sieht man das
   Video, sonst nichts. Der Text sitzt nicht in der Mitte, sondern klein am
   unteren Rand — mittig zentriert. So bleibt die Aufnahme unverstellt und der
   Text liest sich als Bildunterschrift, nicht als Plakat.
   flex-end statt center; horizontal zentriert der Flex-Container. */
.hero--video { justify-content: center; align-items: flex-end; min-height: 100svh; }
/* Abstand nach unten hält den Block frei vom Scroll-Hinweis, der absolut
   am Rand klebt — der Hinweis bleibt, weil bei 100svh sonst nichts andeutet,
   dass unter dem Video noch etwas kommt. */
.hero--video .hero__center { padding: 0 0 clamp(7rem, 14vh, 10rem); width: min(42rem, 88%);
  max-width: none; margin-inline: auto; }
/* Klein gesetzt: über einem ganzflächigen Video wirkt eine große Headline
   plakativ. Ein paar Worte, weit gesperrt, das reicht. */
.hero--video h1 { font-weight: 400; letter-spacing: .12em; text-wrap: balance;
  text-transform: uppercase; font-family: var(--sans);
  font-size: clamp(.78rem, 1.15vw, .86rem); line-height: 1.5;
  /* Der Filmgrund wechselt von Bild zu Bild — heller Sand kann unter den
     Text laufen. Der kaum sichtbare Schatten hält die Lesbarkeit auch dann,
     wenn der Verlauf allein nicht reicht. */
  text-shadow: 0 1px 3px rgba(20,10,12,.45); }
.hero--video h1 .ord { font-size: .5em; vertical-align: .45em; letter-spacing: 0; }
.hero--video .hero__cta { margin-top: 1.5rem; }
/* Schlanker als der Standardknopf: neben einer 13-px-Zeile wirkt die volle
   Buttonhöhe klobig. Nur im Video-Hero, sonst bleibt der Knopf wie er ist. */
.hero--video .hero__cta .btn { padding: .78em 2.1em; font-size: .68rem; letter-spacing: .18em; }
/* Lead-Absatz und Meta-Zeile sind aus dem Hero entfernt: über dem Video
   stehen nur noch Titel und ein Call-to-Action. Versandhinweise leben im
   Warenkorb und im Footer, wo sie gebraucht werden. */

/* Vollbild-Video-Hero (eigenes Filmmaterial). Das Material ist dunkel
   (Abendlicht am Wasser) — etwas aufhellen, damit Stoff und Bewegung
   lesbar bleiben. */
/* Die Aufnahme ist hochkant (1080x1920). Auf breiten Bildschirmen bleibt bei
   cover nur ein Band von gut einem Drittel der Bildhöhe übrig — das Sakko
   selbst ist höher, ein Beschnitt also unvermeidlich. Der Wert ist an der
   Aufnahme gemessen: Baumkrone bis 30 %, Sakko von 33 % bis 82 %. 58 % legt
   das Band auf Schulter bis Korpus statt auf Geäst und Sand.
   Hochkant-Bildschirme zeigen ohnehin fast das ganze Bild. */
.hero--video .hero__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  object-position: center 58%; z-index: 0;
  filter: brightness(1.12) saturate(1.05); }
.hero--video::after { display: none; }               /* Fischgrat-Textur über Video ausblenden */
/* Der Text steht jetzt unten, also braucht der untere Rand mehr Abdunkelung
   als vorher — oben bleibt es hell, damit die Aufnahme offen wirkt.
   Die unteren Stopps sind am Kontrast bemessen: unter dem Text liegt heller
   Strandsand, und weiße Schrift darauf kam nur auf 3,9:1. */
.hero--video::before { z-index: 1; background: linear-gradient(180deg, rgba(20,10,12,.14) 0%, rgba(20,10,12,.10) 40%, rgba(20,10,12,.42) 72%, rgba(20,10,12,.72) 100%); }
/* Nur der Textblock ist ein Flex-Item. Meta und Scroll-Hinweis bleiben absolut
   positioniert (sonst reihen sie sich neben dem Text ein und sprengen die Zeile). */
.hero--video .hero__center { position: relative; z-index: 2; }
.hero--video .hero__meta, .hero--video .hero__cue { z-index: 2; }
/* Wer Bewegung abbestellt hat, bekommt kein Video — aber auch keine leere
   Fläche: das Poster tritt als Standbild an dessen Stelle, gleicher
   Bildausschnitt wie beim Video. */
@media (prefers-reduced-motion: reduce) {
  .hero--video .hero__video { display: none; }
  .hero--video { background-image: url("../video/hero-poster.jpg");
    background-size: cover; background-position: center 58%; background-repeat: no-repeat; }
}

.hh-maison { padding: clamp(4.5rem, 10vw, 8.5rem) 0; }
.hh-maison__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.hh-maison__media { aspect-ratio: 4/5; position: relative; background-size: 34px; background-position: center;
  display: grid; place-items: center; border: 1px solid var(--line-2); overflow: hidden;
  }
.hh-maison__text { max-width: 34rem; }
.hh-maison__text .overline { display: block; margin-bottom: 1.3rem; }
.hh-maison__text h2 { font-size: clamp(1.6rem, 2.9vw, 2.3rem); letter-spacing: -.015em; line-height: 1.08; margin-bottom: 1.5rem; }
.hh-maison__text p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.75; margin-bottom: 1.2rem; }
.hh-maison__text .link-arrow { margin-top: .7rem; }
@media (max-width: 820px) {
  .hh-maison__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hh-maison__media { aspect-ratio: 16/10; }
}

/* Kollektion — große Bildkarten (HoH-Projects-Grid) */
/* Editorial-Asymmetrie: ungleiche Spalten und versetzte Karten. Ein streng
   symmetrisches 2×2-Raster ist der Vorlagen-Look, den wir vermeiden wollen. */
.hh-collection { display: grid; grid-template-columns: 1.18fr .82fr; gap: clamp(1.5rem, 4vw, 3rem); margin-top: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.hh-collection > :nth-child(even) { margin-top: clamp(2.5rem, 7vw, 7rem); }
.hh-col-card { display: block; }
.hh-col-card__media { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line-2); }
.hh-col-card__layer { position: absolute; inset: 0; background-size: 30px; background-position: center; transition: transform 1.2s var(--ease-out); }
.hh-col-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(26,26,28,.4)); }
.hh-col-card:hover .hh-col-card__layer { transform: scale(1.05); }
.hh-col-card__cap { display: flex; flex-direction: column; gap: .35rem; padding: 1.2rem .1rem 0; }
.hh-col-card__meta { font-family: var(--sans); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hh-col-card__cap h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
.hh-col-card__from { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--accent); }
@media (max-width: 640px) {
  .hh-collection { grid-template-columns: 1fr; }
  .hh-collection > :nth-child(even) { margin-top: 0; }
}

/* Editorial-Feature (HoH „Dear Honey") */
.hh-editorial { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; margin: clamp(1.5rem, 3vw, 2.5rem) 0; }
.hh-editorial__media { position: relative; aspect-ratio: 16/11; overflow: hidden; border: 1px solid var(--line-2); display: grid; place-items: center; }
.hh-editorial__layer { position: absolute; inset: 0; background-size: 40px; background-position: center; transition: transform 1.4s var(--ease-out); }
.hh-editorial:hover .hh-editorial__layer { transform: scale(1.04); }
.hh-editorial__media .pc__seal { position: relative; z-index: 2; }
.hh-editorial__media::after { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 100% at 50% 0%, transparent 55%, rgba(26,26,28,.35)); }
.hh-editorial__body .overline { display: block; margin-bottom: 1rem; }
.hh-editorial__body h3 { font-size: clamp(1.45rem, 2.6vw, 2.05rem); line-height: 1.08; letter-spacing: -.015em; margin-bottom: 1rem; }
.hh-editorial__body p { color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; margin-bottom: 1.2rem; max-width: 32rem; }
.journal--secondary { grid-template-columns: repeat(3, 1fr); margin-top: clamp(2rem, 4vw, 3rem); }
@media (max-width: 820px) { .hh-editorial { grid-template-columns: 1fr; } .journal--secondary { grid-template-columns: 1fr; } }

/* =========================================================================
   VALUE / DILEMMA
   ========================================================================= */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(2rem, 4vw, 3.5rem); }
.value { padding: 0; }
.value:last-child { border-right: none; }
.value__num { font-family: var(--display); font-size: 1.9rem; color: var(--accent); font-style: italic; }
.value h3 { font-size: 1.22rem; margin: .7rem 0 .6rem; }
.value p { color: var(--ink-2); font-size: .95rem; }

/* Trust strip */
/* .trust (Badge-Streifen) entfernt — Icon-/Slogan-Reihen sind ein
   Conversion-Template, kein Maison-Signal. Die Zusagen stehen auf der
   Produktseite (.pdp-assure) und im Footer. */
/* Trust-Zeile ohne Deko-Symbol — ruhiger (Quiet Luxury) */

/* =========================================================================
   CATEGORIES
   ========================================================================= */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap); }
.cat {
  position: relative; aspect-ratio: 3/4; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.7rem; color: var(--paper); overflow: hidden; isolation: isolate;
}
.cat::before { content: ""; position: absolute; inset: 0; z-index: -1; transition: transform 1.1s var(--ease-out); }
.cat::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 28%, rgba(26,26,28,.9)); transition: opacity .6s var(--ease-out); }
.cat:hover::before { transform: scale(1.03); }
.cat:hover::after { opacity: .82; }
.cat h3 { font-size: clamp(1.25rem, 1.8vw, 1.55rem); transition: transform .6s var(--ease-out); }
.cat:hover h3 { transform: translateY(-3px); }
.cat span { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-top: .4rem; }
.cat .link-arrow { color: var(--paper); margin-top: 1.1rem; opacity: .85; transition: opacity .5s var(--ease-out); }
.cat .link-arrow::before { background: rgba(252,252,252,.7); }
.cat:hover .link-arrow { opacity: 1; }

/* =========================================================================
   PRODUCT CARDS
   ========================================================================= */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--gap) calc(var(--gap) * .9); }
/* Grid-Items dürfen unter ihre Content-Mindestbreite schrumpfen — sonst
   sprengen lange Namen die 2-Spalten-Spur auf dem Smartphone (100vw-Bug). */
.grid > * { min-width: 0; }
/* Layout-Stabilität (CLS): Solange JS-Inhalte noch nicht gerendert sind,
   halten Platzhalter-Mindesthöhen die Position des Footers — kein Sprung,
   wenn Katalog oder Artikel nachladen. */
main[data-product]:not(:has(*)) { min-height: 100vh; }
main[data-article]:not(:has(*)) { min-height: 90vh; }
[data-shop-grid]:not(:has(*)) { min-height: 60vh; }
[data-journal-feature]:not(:has(*)) { min-height: 40vh; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }

.pc { display: flex; flex-direction: column; }
/* Karten erscheinen ohne Scroll-Theater sofort — gestaffelte Vorhänge und
   Fades auf jedem Element sind der Template-Reflex, den es zu vermeiden gilt. */

.pc__media {
  position: relative; aspect-ratio: 4/5; display: block; overflow: hidden;
  border: 1px solid var(--line-2);
}
/* Makro-Ansicht: Das Bild liegt auf einer eigenen Ebene, die beim Darüber-
   fahren unter dem Cursor heranzoomt — bei Fotos ein Detailausschnitt, bei
   den Webmustern die Bindung in Großaufnahme. Der Ursprung folgt der Maus
   (--ox/--oy aus main.js), deshalb wirkt es wie eine geführte Lupe. */
.pc__zoom {
  position: absolute; inset: 0; background-size: 26px; background-position: center;
  transform-origin: var(--ox, 50%) var(--oy, 50%);
  transition: transform .7s var(--ease-out);
  will-change: transform;
}
@media (hover: hover) {
  .pc__media:hover .pc__zoom { transform: scale(1.5); }
}
@media (prefers-reduced-motion: reduce) {
  .pc__zoom { transition: none; }
  .pc__media:hover .pc__zoom { transform: none; }
}
.pc__media::after { content: ""; position: absolute; inset: 0; transition: background .6s var(--ease-out);
  /* Warmes Streiflicht oben-links + ruhige Vignette unten → Tiefe wie unter Studiolicht. */
  background: radial-gradient(85% 60% at 28% 10%, rgba(255,246,228,.16), transparent 55%),
              radial-gradient(120% 100% at 50% 0%, transparent 58%, rgba(26,26,28,.34)); }
.pc__media:hover::after { background: radial-gradient(120% 100% at 50% 0%, rgba(26,26,28,.08) 20%, rgba(26,26,28,.32)); }
.pc__seal {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--display); font-size: 1.5rem; letter-spacing: .4em; color: rgba(255,255,255,.5);
  width: 82px; height: 82px; border: 1px solid rgba(255,255,255,.4); border-radius: 50%;
  display: grid; place-items: center; padding-left: .4em; z-index: 2;
}
.pc__tags { position: absolute; top: 12px; left: 12px; z-index: 3; display: flex; flex-direction: column; gap: 6px; }
.pc__tag { font-family: var(--sans); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(252,252,252,.92); color: var(--dark-d); padding: .35em .7em; }
.pc__tag--hero { background: var(--accent); color: #fff; }
.pc__weave { position: absolute; bottom: 14px; left: 14px; z-index: 3; font-family: var(--sans); font-size: .64rem;
  letter-spacing: .18em; text-transform: uppercase; color: rgba(252,252,252,.85);
  transition: opacity .5s var(--ease-out); }
.pc__media:hover .pc__weave { opacity: 0; }
/* Ruhiger Hover: kleine „Ansehen“-Marke, kein volle-Breite-Balken. */
.pc__view { position: absolute; bottom: 13px; right: 14px; z-index: 4;
  font-family: var(--sans); font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--paper);
  display: inline-flex; align-items: center; gap: .5em; opacity: 0; transform: translateX(-8px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out); }
.pc__view::after { content: "→"; }
.pc__media:hover .pc__view { opacity: 1; transform: none; }
.pc__seal { transition: opacity .6s var(--ease-out), letter-spacing .6s var(--ease-out); }
.pc__media:hover .pc__seal { opacity: .8; letter-spacing: .5em; }

.pc__info { padding: 1rem .1rem 0; }
.pc__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.pc__name { font-size: 1.12rem; font-weight: 500; }
.pc__price { font-family: var(--display); font-size: 1.12rem; color: var(--dark-d); white-space: nowrap; }
/* Verkaufte Unikate bleiben stehen (URL/Backlink), treten aber optisch
   zurück: Graustufen-Bild, ruhiges Badge, kein Hover-Zoom mehr. */
.pc--sold .pc__zoom { filter: grayscale(1); opacity: .55; }
.pc--sold .pc__media:hover .pc__zoom { transform: none; }
.pc--sold .pc__name, .pc--sold .pc__price, .pc--sold .pc__sub { opacity: .55; }
.pc__sold {
  position: absolute; top: 12px; left: 12px; z-index: 4;
  font-family: var(--sans); font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(252,252,252,.94); color: var(--dark-d); padding: .45em .9em;
  border: 1px solid var(--line-2);
}
/* Material/Größe stehen dauerhaft da — normale Schrift statt Micro-Caps,
   kein Hover-Versteckspiel. */
.pc__sub { font-family: var(--sans); font-size: .85rem; letter-spacing: .01em; color: var(--ink-2); margin-top: .4rem; }
.pc__anchor { display: block; font-size: .92rem; color: var(--muted); font-style: italic; margin-top: .3rem; }
.pc__add {
  margin-top: .9rem; width: 100%; font-family: var(--sans); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase;
  padding: .85em; border: 1px solid var(--line); color: var(--ink-2); transition: all .3s var(--ease);
}
.pc__add:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pc__add.added { background: var(--accent); color: #fff; border-color: var(--accent); }
.pc__add.added::after { content: " ✓"; }

/* =========================================================================
   DROP BANNER + COUNTDOWN
   ========================================================================= */
.drop-bar { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 2.6rem; }
/* Countdown entfernt — tickende Timer sind Verknappungsmarketing. */

/* =========================================================================
   PRODUKT-LAUFBAND (Startseite) — randloser Endlosstreifen: 4 Artikel
   nebeneinander (mobil 2), driftet kontinuierlich wie weitergewischt,
   pausiert bei Hover/Berührung. Inhalt gedoppelt für nahtlosen Loop.
   Kein Abschnittskopf, kein Karten-Chrome: nur Bild, Name, Preis.
   ========================================================================= */
.slides { background: var(--dark-d); }
.slides__stage { position: relative; }
.slides__track {
  display: flex; gap: 2px; overflow-x: auto;
  overscroll-behavior-x: contain; scrollbar-width: none; -webkit-overflow-scrolling: touch;
}
.slides__track::-webkit-scrollbar { display: none; }
.slides__item { position: relative; flex: 0 0 25%; display: block; overflow: hidden; aspect-ratio: 4/5; }
.slides__img {
  position: absolute; inset: 0; background-size: cover; background-position: center 28%;
  transform: scale(1.001); transition: transform 2.4s var(--ease-out);
}
.slides__item:hover .slides__img { transform: scale(1.04); }

/* Echte Produktfotos (5.1): <picture>/<img> füllen dieselben Flächen wie
   zuvor die CSS-Hintergründe — Karten, Laufband, Lightbox, PDP-Galerie. */
picture.pc__zoom img, picture.slides__img img, .lightbox__img img,
picture.hh-editorial__layer img, .article-band__img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pdp__shot-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* Editorial-<picture>: fuellt die Band-Flaeche wie das fruehere CSS-background. */
.article-band__img { position: absolute; inset: 0; }
/* Scrim über dem unteren Drittel: neutral schwarz statt grünlich, damit
   die weiße Bildunterschrift auf jedem Foto ruhig lesbar bleibt. */
.slides__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(transparent 62%, rgba(0,0,0,.55));
}
.slides__cap {
  position: absolute; left: clamp(.8rem, 1.6vw, 1.3rem); bottom: clamp(.75rem, 1.5vw, 1.1rem); z-index: 2;
  display: flex; flex-direction: column; gap: .12rem; max-width: 86%;
  color: var(--paper); text-shadow: 0 1px 12px rgba(0,0,0,.45);
}
.slides__cap b { font-family: var(--display); font-weight: 500; font-size: clamp(.98rem, 1.5vw, 1.2rem); letter-spacing: 0; }
.slides__cap span { font-family: var(--sans); font-size: .76rem; letter-spacing: .05em; opacity: .85; }
.slides__bar {
  display: flex; justify-content: flex-end;
  padding: .95rem clamp(1.2rem, 4vw, 3.4rem); background: var(--dark-d);
}
.slides__all {
  color: var(--paper); font-family: var(--sans); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase;
  text-decoration: none; padding-bottom: .3rem; border-bottom: 1px solid rgba(252,252,252,.45);
  transition: border-color .3s var(--ease-out);
}
.slides__all:hover { border-color: var(--paper); }
/* Pfeile als dezente Chips: halbtransparente Fläche, leichte Unschärfe und
   weicher Schatten — auf hellen wie dunklen Fotos sichtbar, ohne laut zu sein. */
.slides__arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 3;
  width: 3.6rem; height: 3.6rem; display: grid; place-items: center;
  background: rgba(26,26,28,.34); border: 0; border-radius: 50%;
  color: var(--paper); font-size: 1.8rem; line-height: 1;
  cursor: pointer; opacity: .75;
  box-shadow: 0 2px 16px rgba(0,0,0,.28);
  backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px);
  transition: opacity .3s var(--ease-out), background .3s var(--ease-out);
}
.slides__arrow:hover { opacity: 1; background: rgba(26,26,28,.55); }
.slides__arrow--prev { left: .6rem; }
.slides__arrow--next { right: .6rem; }
@media (max-width: 900px) { .slides__item { flex-basis: 33.3333%; } }
@media (max-width: 680px) {
  .slides__item { flex-basis: 50%; }
  .slides__arrow { display: none; }
}
/* „Der Pick“-Bild ist jetzt ein Link — keine Unterstreichung vererben. */
.feature__media { text-decoration: none; }

/* =========================================================================
   STORY / DER PICK (feature)
   ========================================================================= */
.feature { display: grid; grid-template-columns: 1.05fr 1fr; align-items: stretch; }
.feature__media { min-height: 34rem; position: relative; background-size: 34px; overflow: hidden; }
.feature__media .pc__seal { width: 128px; height: 128px; font-size: 2.4rem; }
/* Horizontaler Vorhang-Reveal für die breite Editorial-Fläche.
   Kein clip-path auf dem Element selbst: Chromiums IntersectionObserver
   wertet clip-path aus und meldete das vollständig verdeckte Ziel als
   nie sichtbar — der Reveal feuerte nicht. Stattdessen deckt ein dunkles
   Panel ab, das nach rechts wegfährt (IO beobachtet das unverdeckte Element). */
.mask-x { position: relative; overflow: hidden; }
.mask-x::before {
  content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none;
  background: var(--dark-d); transform-origin: left center;
  transition: transform 1.25s var(--ease-out);
}
.mask-x.in::before { transform: scaleX(0); transform-origin: right center; }
.feature__body { background: var(--cream); padding: clamp(2.6rem, 6vw, 5.5rem); display: flex; flex-direction: column; justify-content: center; }
.feature__body .overline { margin-bottom: 1.4rem; }
.feature__body h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: .4rem 0 .2rem; letter-spacing: -.015em; }
.feature__quote { font-style: italic; font-size: clamp(1.12rem, 1.7vw, 1.32rem); color: var(--ink-2); line-height: 1.5;
  border-left: 2px solid var(--accent); padding-left: 1.4rem; margin: 1.8rem 0; }
.feature__price { display: flex; align-items: baseline; gap: 1rem; margin: 1.8rem 0; }
.feature__price b { font-family: var(--display); font-size: 2rem; color: var(--dark-d); }
.feature__price s { color: var(--muted); }

/* Editorial split (natural materials) */
.editorial { background: var(--dark-d); color: var(--cream); }
.editorial .sec-head h2 { color: var(--paper); }
.editorial .sec-head .overline { color: var(--sand); }
.materials { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid rgba(208,208,211,.25); }
.material { padding: 2rem 1.2rem; border-right: 1px solid rgba(208,208,211,.2); }
.material:last-child { border-right: none; }
.material h3 { color: var(--paper); font-size: 1.2rem; font-style: italic; }
.material p { color: rgba(240,240,240,.72); font-size: .96rem; margin-top: .6rem; }

/* =========================================================================
   PRICE ANCHOR
   ========================================================================= */
.anchor-cmp { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: clamp(1rem, 4vw, 3rem);
  background: var(--paper-2); border: 1px solid var(--line-2); padding: clamp(2rem, 5vw, 4rem); }
.anchor-col { text-align: center; }
.anchor-col .overline { display: block; margin-bottom: 1rem; }
.anchor-col b { font-family: var(--display); font-size: clamp(2rem, 4.6vw, 3rem); display: block; line-height: 1; }
.anchor-col.is-them b { color: var(--muted); }
.anchor-col.is-us b { color: var(--dark-d); }
.anchor-col small { font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.anchor-vs { font-family: var(--display); font-style: italic; font-size: 1.35rem; color: var(--accent); }

/* Manifest / Haltung */
.manifesto { background: var(--paper-2); border-block: 1px solid var(--line-2); }
.manifesto__inner { max-width: 48rem; margin-inline: auto; text-align: center; }
.manifesto__inner .overline { display: block; margin-bottom: 1.4rem; }
.manifesto__quote { font-family: var(--display); font-size: clamp(1.45rem, 3vw, 2.2rem); line-height: 1.2; color: var(--dark-d); margin-bottom: 1.4rem; }
.manifesto__sub { color: var(--ink-2); font-size: 1.04rem; line-height: 1.7; max-width: 40rem; margin-inline: auto; }

/* =========================================================================
   EXPERIENCE / UNBOXING STEPS
   ========================================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.step { padding: 0; }
.step__n { font-family: var(--sans); font-size: .72rem; letter-spacing: .2em; color: var(--accent); }
.step h3 { font-size: 1.18rem; margin: .8rem 0 .5rem; }
.step p { color: var(--ink-2); font-size: .95rem; }

/* =========================================================================
   JOURNAL
   ========================================================================= */
.journal { border-top: 1px solid var(--line); }
/* Editoriales Inhaltsverzeichnis statt Kartenraster: Haarlinien-Zeilen mit
   Kategorie, Titel, Kurztext und Pfeil — Typografie statt Bildbändern. */
.jrow { display: grid; grid-template-columns: 1.05fr .95fr 2.2rem; gap: .6rem 3rem; align-items: baseline;
  padding: 1.55rem 0; border-bottom: 1px solid var(--line-2); }
.jrow__meta { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: .55rem; }
.jrow h3 { font-size: 1.32rem; font-weight: 500; letter-spacing: -.012em; line-height: 1.18; margin: 0;
  transition: color .4s var(--ease-out); }
.jrow__dek { color: var(--ink-2); font-size: .95rem; line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jrow__arrow { justify-self: end; font-size: 1.15rem; color: var(--muted);
  transition: transform .4s var(--ease-out), color .4s var(--ease-out); }
.jrow:hover h3 { color: var(--oxblood); }
.jrow:hover .jrow__arrow { transform: translateX(6px); color: var(--oxblood); }
@media (max-width: 760px) {
  .jrow { grid-template-columns: 1fr 1.6rem; gap: .4rem 1.2rem; padding: 1.3rem 0; }
  .jrow__dek { grid-column: 1 / -1; -webkit-line-clamp: 3; }
}

/* =========================================================================
   ARTIKEL (Journal-Detail)
   ========================================================================= */
.article { max-width: 62rem; }
.article-head { max-width: 44rem; margin: 1rem 0 2rem; }
.article-head .overline { display: block; margin-bottom: 1.2rem; }
.article-head h1 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.06; letter-spacing: -.015em; }
.article-dek { margin-top: 1.2rem; font-size: clamp(1.05rem, 1.7vw, 1.25rem); color: var(--ink-2); font-style: italic; line-height: 1.5; }
.article-band { aspect-ratio: 21/9; background-size: 48px; position: relative; margin-bottom: clamp(2rem, 4vw, 3.4rem);
  display: grid; place-items: center; }
.article-band .pc__seal { color: rgba(252,252,252,.5); border-color: rgba(252,252,252,.4); }
.article-body { max-width: 40rem; margin-inline: auto; }
.article-body p { font-size: 1.05rem; line-height: 1.8; color: var(--ink-2); margin-bottom: 1.5rem; }
.article-body p:first-of-type::first-letter { font-family: var(--display); font-size: 3.1rem; float: left; line-height: .82;
  padding: .05em .12em 0 0; color: var(--accent); }
.article-body h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); margin: 2.4rem 0 1rem; letter-spacing: -.01em; }
.article-body blockquote { font-family: var(--display); font-style: italic; font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.4; color: var(--dark-d); border-left: 2px solid var(--accent); padding-left: 1.6rem; margin: 2.4rem 0; }
.article-foot { max-width: 40rem; margin: clamp(2.5rem, 5vw, 4rem) auto 0; padding-top: 2rem; border-top: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.2rem; }
.article-more { margin-top: clamp(3.5rem, 7vw, 6rem); }
.article-more .journal { grid-template-columns: repeat(3, 1fr); }

/* =========================================================================
   MARQUEE (editoriale Laufzeile)
   ========================================================================= */
.marquee { overflow: hidden; background: var(--dark-d); color: var(--cream); padding: 1.1rem 0; border-block: 1px solid rgba(208,208,211,.18); }
.marquee__track { display: inline-flex; align-items: center; white-space: nowrap; gap: 2.4rem; padding-left: 2.4rem;
  font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.7rem); font-style: italic; will-change: transform;
  animation: marquee 34s linear infinite; }
.marquee__dot { color: var(--accent); font-style: normal; font-size: .7em; }
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee__track { animation: none; } }

/* Fortschrittsbalken und „Nach oben“-Knopf entfernt — Template-Möbel, die
   eine kuratierte Seite nach Standardvorlage aussehen lassen. */

/* =========================================================================
   NEWSLETTER
   ========================================================================= */
.newsletter { background: var(--dark); color: var(--paper); text-align: center; }
.newsletter h2 { font-size: clamp(1.6rem, 3.2vw, 2.3rem); color: var(--paper); }
/* Bewusst linksbündig statt zentriert — bricht den „alles mittig“-Rhythmus,
   der die Seite sonst nach Standardvorlage aussehen lässt. */
.newsletter--hh { padding: clamp(3rem, 6.5vw, 4.8rem) 0; text-align: left; }
.newsletter--hh h2 { font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.08; letter-spacing: -.015em; }
.newsletter--hh .wrap > * { max-width: 40rem; }
.newsletter--hh p, .newsletter--hh .nl-form { margin-inline: 0; }
.newsletter p { color: rgba(252,252,252,.82); max-width: 34rem; margin: 1rem auto 2rem; font-size: 1rem; }
.nl-form { display: flex; gap: .6rem; max-width: 30rem; margin-inline: auto; }
.nl-form input {
  flex: 1; padding: 1.05em 1.2em; background: transparent; border: 1px solid rgba(252,252,252,.4);
  color: var(--paper); font-family: var(--body); font-size: 1rem;
}
.nl-form input::placeholder { color: rgba(252,252,252,.55); }
.nl-form input:focus { outline: none; border-color: var(--sand); }
.nl__done { font-size: 1.1rem; font-style: italic; color: var(--sand); }
.newsletter small { display: block; margin-top: 1.2rem; font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(252,252,252,.75); }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer { background: var(--ink); color: rgba(240,240,240,.8); padding: clamp(3rem, 6vw, 5rem) 0 2rem; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(208,208,211,.18); }
.footer__brand .brand { color: var(--paper); font-size: 1.6rem; }
.footer__brand p { margin-top: 1rem; max-width: 24rem; color: rgba(240,240,240,.65); }
.footer__col h4 { font-family: var(--sans); font-size: .74rem; letter-spacing: .2em; text-transform: uppercase; color: var(--sand); margin-bottom: 1.1rem; font-weight: 500; }
.footer__col a { display: block; padding: .35em 0; color: rgba(240,240,240,.72); transition: color .3s; }
.footer__col a:hover { color: var(--paper); }
.footer__bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; padding-top: 1.6rem;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; color: rgba(240,240,240,.5); }
.footer__bottom a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; transition: color .3s, border-color .3s; }
.footer__bottom a:hover { color: var(--paper); border-bottom-color: currentColor; }
.pay { display: flex; gap: .7rem; align-items: center; }
.pay span { border: 1px solid rgba(208,208,211,.3); padding: .3em .6em; font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; }

/* =========================================================================
   CART DRAWER
   ========================================================================= */
.cart-overlay { position: fixed; inset: 0; background: rgba(26,26,28,.4); backdrop-filter: blur(2px);
  opacity: 0; visibility: hidden; transition: opacity .4s, visibility .4s; z-index: 90; }
.cart-drawer {
  position: fixed; top: 0; right: 0; height: 100%; width: min(430px, 100%); background: var(--paper);
  z-index: 100; transform: translateX(100%); transition: transform .5s var(--ease);
  display: flex; flex-direction: column; box-shadow: -30px 0 60px -30px rgba(26,26,28,.5);
}
body.cart-open .cart-overlay { opacity: 1; visibility: visible; }
body.cart-open .cart-drawer { transform: none; }
.cart__head { display: flex; justify-content: space-between; align-items: center; padding: 1.5rem; border-bottom: 1px solid var(--line-2); }
.cart__head h2 { font-size: 1.5rem; }
.cart__close { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.cart__ship { padding: 1rem 1.5rem; background: var(--cream); }
.cart__ship-track { height: 3px; background: var(--line); margin-bottom: .7rem; }
.cart__ship-bar { height: 100%; width: 0; background: var(--accent); transition: width .5s var(--ease); }
.cart__ship p { font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); }
.cart__body { flex: 1; overflow-y: auto; padding: .5rem 1.5rem; }
.cart__empty { text-align: center; padding: 4rem 1rem; color: var(--muted); }
.cart__empty span { font-size: .9rem; font-style: italic; }
/* Hinweis, wenn der Katalog-Abgleich ein vergebenes Teil entfernt hat. */
.cart__note { font-size: .85rem; color: var(--ink-2); border: 1px solid var(--line-2); padding: .7rem .9rem; margin-bottom: 1rem; }
.cart__demo { background: var(--dark); color: var(--paper); padding: 1rem; font-size: .92rem; margin: 1rem 0; }
.cart__item { display: grid; grid-template-columns: 62px 1fr auto; gap: 1rem; padding: 1.2rem 0; border-bottom: 1px solid var(--line-2); transition: background .4s; }
.cart__item--flash { background: var(--cream); }
.cart__swatch { width: 62px; height: 78px; background-size: 22px; border: 1px solid var(--line-2); }
.cart__cat { font-family: var(--sans); font-size: .64rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.cart__name { display: block; font-family: var(--display); font-size: 1.15rem; margin: .2rem 0; }
.cart__mat { font-size: .88rem; color: var(--muted); font-style: italic; }
.cart__side { text-align: right; display: flex; flex-direction: column; justify-content: space-between; }
.cart__price { font-family: var(--display); font-size: 1.1rem; color: var(--dark-d); }
.cart__remove { font-family: var(--sans); font-size: .64rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); border-bottom: 1px solid transparent; }
.cart__remove:hover { color: var(--wine); border-color: var(--wine); }
.cart__foot { padding: 1.5rem; border-top: 1px solid var(--line-2); }
.cart__sum { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 1rem; }
.cart__sum span { font-family: var(--sans); font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.cart__sum b { font-family: var(--display); font-size: 1.5rem; color: var(--dark-d); font-weight: 500; }

/* Redaktioneller TODO-Marker in Rechtstexten (Impressum): muss vor dem
   Livegang ersetzt werden und ist darum bewusst auffällig. */
.todo-marker { background: #fdf3d7; border-left: 3px solid #c9a227; padding: .15rem .45rem; color: #6b5a1e; }
p.todo-marker { padding: .6rem .8rem; font-size: .9rem; }

/* PAngV-Hinweis direkt unter Preisen (§ 3 PAngV): dezent, verlinkt die
   Versandkosten-Details auf service.html. */
.tax-note { font-family: var(--sans); font-size: .75rem; color: var(--muted); margin: .3rem 0 0; line-height: 1.5; }
.tax-note a { color: inherit; text-decoration: underline; text-underline-offset: 2px; }

/* Dezente Hinweiszeile im Checkout (z. B. warum Kauf auf Rechnung fehlt)
   und für Rückmeldungen im Konto. */
.pay-note { font-family: var(--sans); font-size: .78rem; color: var(--muted); margin: .8rem 0 0; line-height: 1.5; }
.cart__foot small { display: block; text-align: center; margin-top: .9rem; color: var(--muted); font-size: .84rem; }

/* =========================================================================
   PAGE HEADS (shop / about)
   ========================================================================= */
.page-hero { background: var(--dark); color: var(--paper); padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 5vw, 4rem); position: relative; overflow: hidden; }
.page-hero::after { content: ""; position: absolute; inset: 0; opacity: .35; mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='34' height='34'%3E%3Cpath d='M0 0 H34 M0 0 V34' stroke='%23ffffff' stroke-width='1' opacity='0.4'/%3E%3C/svg%3E"); }
.page-hero__inner { position: relative; z-index: 2; }
.page-hero .overline { color: var(--sand); }
.page-hero h1 { font-size: clamp(2rem, 4.2vw, 3.1rem); margin-top: 1rem; }
.page-hero p { margin-top: 1rem; max-width: 40rem; color: rgba(252,252,252,.84); font-size: 1.02rem; }

/* =========================================================================
   MAGAZIN-MASTHEAD (editoriale Seitenköpfe — Marke / Journal / Shop)
   Innenseiten eines Magazins: heller Papiergrund, große Serifen-Headline,
   Standfirst, „Ausgabe"-Kicker und ein Stoff-Portrait. Bewusst ruhiger als
   der dunkle Vollbild-Hero der Startseite, damit Innenseiten nicht mit ihm
   konkurrieren, sondern wie geblätterte Magazinseiten wirken.
   ========================================================================= */
.mag-head { background: var(--paper); border-bottom: 1px solid var(--line-2); overflow: hidden; }
.mag-head__grid { display: grid; grid-template-columns: 1.12fr .88fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(2.6rem, 5vw, 4rem); }
.mag-head__text { max-width: 42rem; }
.mag-head__kicker { font-family: var(--sans); font-size: .72rem; letter-spacing: .24em; text-transform: uppercase;
  color: var(--muted); display: flex; align-items: center; gap: .9em; margin-bottom: 1.6rem; flex-wrap: wrap; }
.mag-head__kicker::before { content: ""; width: 2.4rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.mag-head__kicker b { color: var(--accent); font-weight: 500; }
.mag-head h1 { font-size: clamp(1.9rem, 4vw, 3rem); line-height: 1.02; letter-spacing: -.02em; }
.mag-head h1 em { font-style: italic; color: var(--accent); }
.mag-head__lead { margin-top: 1.6rem; font-size: clamp(1rem, 1.6vw, 1.18rem); color: var(--ink-2); line-height: 1.6; max-width: 34rem; }
.mag-head__meta { margin-top: 2.2rem; display: flex; gap: clamp(1.6rem, 4vw, 2.8rem); flex-wrap: wrap; }
.mag-head__meta span { display: flex; flex-direction: column; gap: .35rem; font-family: var(--sans);
  font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.mag-head__meta b { font-family: var(--display); font-size: 1.2rem; letter-spacing: 0; text-transform: none; color: var(--dark-d); font-weight: 500; }
/* Stoff-Portrait (rechts) — dieselbe Bildsprache wie .hh-maison__media */
.mag-head__visual { position: relative; aspect-ratio: 5/6; border: 1px solid var(--line-2); overflow: hidden;
  display: grid; place-items: center; background-color: var(--dark); background-size: 34px; background-position: center;
  }
.mag-head__visual::after { content: ""; position: absolute; inset: 0; background: linear-gradient(158deg, transparent 42%, rgba(26,26,28,.42)); }
.mag-head__visual .pc__seal { z-index: 2; }

/* Zentrierte Variante — für Seiten mit Grid/Liste darunter (Shop, Journal) */
.mag-head--center .mag-head__grid { grid-template-columns: 1fr; text-align: center; padding-bottom: clamp(2.2rem, 4vw, 3.2rem); }
.mag-head--center .mag-head__text { max-width: 52rem; margin-inline: auto; }
.mag-head--center .mag-head__kicker { justify-content: center; }
.mag-head--center .mag-head__kicker::after { content: ""; width: 2.4rem; height: 1px; background: var(--accent); flex-shrink: 0; }
.mag-head--center .mag-head__lead { margin-inline: auto; }
.mag-head--center .mag-head__meta { justify-content: center; }
.mag-head--center .mag-head__visual { display: none; }

@media (max-width: 820px) {
  .mag-head__grid { grid-template-columns: 1fr; gap: 2rem; }
  .mag-head__visual { display: none; }
}

/* =========================================================================
   EDITORIAL-FURNITUR — Bildunterschriften, Kuratorennotiz, Footer-Kolophon
   (Nach House-of-Honey-Manier: große Bildflächen mit kleiner, ruhiger
   Beschriftung; redaktionelle Stimme statt Verkaufston.)
   ========================================================================= */
/* Kleine Bildunterschrift, unten links auf Bildflächen. Schatten hinter dem
   Text, damit sie auch auf hellen Fotos (beige Hintergründe) lesbar bleibt. */
.img-cap { position: absolute; left: clamp(.9rem, 2vw, 1.4rem); bottom: clamp(.9rem, 2vw, 1.4rem); z-index: 3;
  font-family: var(--sans); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase;
  color: rgba(252,252,252,.9); display: inline-flex; align-items: center; gap: .7em; max-width: 78%;
  text-shadow: 0 1px 4px rgba(18,20,18,.65), 0 0 18px rgba(18,20,18,.45); }
.img-cap::before { content: ""; width: 1.6rem; height: 1px; background: var(--sand); opacity: .85; flex-shrink: 0; }
.img-cap b { color: var(--sand); font-weight: 500; }

/* Kompakter Kollektionskopf: eine Titelzeile plus eine Meta-Zeile. Auf einer
   Übersichtsseite soll die Ware oben stehen, nicht die Redaktion — ein großer
   Masthead drückte das erste Produkt sonst unter die Bildschirmkante. */
.shop-head { padding: clamp(1.8rem, 3.5vw, 2.6rem) 0 clamp(1rem, 1.8vw, 1.4rem); }
.shop-head h1 { font-size: clamp(1.55rem, 2.5vw, 2rem); font-weight: 500; letter-spacing: -.01em; }
.shop-head h1 span { color: var(--muted); font-style: italic; }
.shop-head__meta { margin-top: .55rem; font-family: var(--sans); font-size: .7rem; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); }

/* Footer als Kolophon: größere Marke, redaktionelle Tagline. */
.footer__brand .brand { font-size: 1.6rem; }
.footer__brand p { font-family: var(--display); font-style: italic; font-size: 1.14rem; line-height: 1.55; color: rgba(240,240,240,.72); }

/* Shop toolbar */
.shop-bar { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding: 1.4rem 0; border-bottom: 1px solid var(--line-2); position: sticky; top: 64px; background: var(--paper); z-index: 40; }
.filters { display: flex; gap: .5rem; flex-wrap: wrap; }
.filter { font-family: var(--sans); font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2);
  padding: .6em 1.1em; border: 1px solid var(--line); transition: all .3s var(--ease); }
.filter:hover { border-color: var(--ink); }
.filter.is-active { background: var(--dark); color: var(--paper); border-color: var(--dark); }
.shop-tools { display: flex; align-items: center; gap: 1.2rem; }

.select { font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; padding: .6em 2em .6em .8em;
  border: 1px solid var(--line); background: var(--paper) url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0 L5 6 L10 0' fill='none' stroke='%236f6858'/%3E%3C/svg%3E") no-repeat right .8em center;
  color: var(--ink-2); -webkit-appearance: none; appearance: none; }

/* =========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================= */
.crumbs { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 1.6rem 0; }
.crumbs a:hover { color: var(--ink); }
.crumbs span { color: var(--ink); }
.pdp { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: start; }

/* Galerie: große Aufnahmen untereinander gestapelt (kein Thumbnail-Streifen,
   kein Zoom-Chrome) — die Ware trägt die Seite. Gescrollt wird die Galerie,
   die Kaufspalte bleibt stehen. */
.pdp__gallery { display: grid; gap: clamp(.7rem, 1.4vw, 1.2rem); }
.pdp__shot { position: relative; aspect-ratio: 3/4; margin: 0; background-size: 44px;
  background-position: center; border: 1px solid var(--line-2); cursor: zoom-in; overflow: hidden; }
.pdp__shot::after { content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(85% 60% at 28% 10%, rgba(255,246,228,.14), transparent 55%),
              radial-gradient(120% 100% at 50% 0%, transparent 60%, rgba(26,26,28,.26)); }
.pdp__shot:focus-visible { outline: 1px solid var(--accent); outline-offset: 3px; }
.pc__seal--lg { width: 130px; height: 130px; font-size: 2.4rem; }

/* Bewusst NICHT sticky: die Spalte ist mit den Akkordeons höher als ein
   üblicher Viewport (~1290px vs. 850px). Angeheftet würde ihr unterer Teil
   während der Sticky-Phase festgepinnt und wäre nicht lesbar. Sie läuft
   deshalb normal mit — neben der langen Galerie entsteht ruhiger Weißraum. */
.pdp__info { align-self: start; }

.pdp__title { font-size: clamp(1.55rem, 2.7vw, 2.15rem); margin: 0 0 .55rem; }
/* Meta als eine ruhige Textzeile (Kategorie · Ära · Material) — keine
   eingerahmten Tags, keine Versalien. */
.pdp__meta { font-family: var(--sans); font-size: .95rem; color: var(--ink-2); margin: 0; }
.pdp__lead { margin: 1.3rem 0 1.6rem; font-size: 1rem; line-height: 1.7; color: var(--ink-2); }
/* Eckdaten als ruhige Zeilenliste statt Kästchen-Raster. */
.pdp__spec { margin: 0 0 1.8rem; border-top: 1px solid var(--line-2); }
.pdp__spec > div { display: flex; justify-content: space-between; align-items: baseline; gap: 1.5rem;
  padding: .8rem 0; border-bottom: 1px solid var(--line-2); }
.pdp__spec dt { font-family: var(--sans); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); }
.pdp__spec dd { margin: 0; text-align: right; color: var(--ink); }
.pdp__price { display: flex; align-items: baseline; flex-wrap: wrap; gap: .5rem 1.2rem; margin-bottom: 1.6rem; }
.pdp__now { font-family: var(--display); font-size: 2rem; color: var(--dark-d); }
.pdp__anchor { color: var(--muted); font-style: italic; }
.pdp__unit { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.pdp__save { font-family: var(--sans); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; background: var(--cream); color: var(--dark-d); padding: .4em .8em; }
.pdp__story { font-size: 1.05rem; color: var(--ink-2); line-height: 1.7; }
.pdp__facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin: 2rem 0; padding: 1.6rem 0; border-block: 1px solid var(--line-2); }
.pdp__facts .overline { display: block; margin-bottom: .5rem; }
.pdp__facts strong { display: block; font-family: var(--display); font-size: 1.05rem; }
.pdp__facts em { font-size: .84rem; color: var(--muted); font-style: normal; }
.pdp__note { text-align: center; margin-top: .9rem; font-family: var(--sans); font-size: .7rem;
  letter-spacing: .08em; color: var(--muted); }
.pdp__acc { border-bottom: 1px solid var(--line-2); }
.pdp__acc summary { cursor: pointer; padding: 1.1rem 0; font-family: var(--sans); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; list-style: none; display: flex; justify-content: space-between; }
.pdp__acc summary::-webkit-details-marker { display: none; }
.pdp__acc summary::after { content: "+"; color: var(--accent); font-size: 1.2rem; }
.pdp__acc[open] summary::after { content: "–"; }
.pdp__acc > *:not(summary) { padding-bottom: 1.2rem; color: var(--ink-2); }
.pdp__measure { width: 100%; border-collapse: collapse; }
.pdp__measure th, .pdp__measure td { text-align: left; padding: .6em 0; border-bottom: 1px solid var(--line-2); }
.pdp__measure th { font-family: var(--sans); font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.pdp__measure td { text-align: right; font-family: var(--display); font-size: 1.05rem; }
.pdp__acc:first-of-type { margin-top: 1.5rem; }

/* About page */
.prose { max-width: 44rem; margin-inline: auto; }
.prose p { font-size: 1.05rem; color: var(--ink-2); margin-bottom: 1.4rem; line-height: 1.75; }
.prose p:first-of-type::first-letter { font-family: var(--display); font-size: 3rem; float: left; line-height: .8; padding: .1em .12em 0 0; color: var(--accent); }
.prose h2 { font-size: 1.6rem; margin: 2.6rem 0 1rem; }
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.pillar { padding: 2rem; background: var(--cream); }
.pillar b { font-family: var(--display); font-style: italic; color: var(--accent); font-size: 1.15rem; }
.pillar h3 { font-size: 1.18rem; margin: .5rem 0; }
.pillar p { color: var(--ink-2); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.8rem, 3.5vw, 3rem); }
.stat { padding: 0; text-align: center; }
.stat:last-child { border-right: none; }
.stat b { font-family: var(--display); font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--dark-d); display: block; }
.stat span { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* =========================================================================
   RESPONSIVE
   ========================================================================= */
@media (max-width: 1024px) {
  .grid, .cats, .journal { grid-template-columns: repeat(3, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; }
  .materials { grid-template-columns: repeat(3, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .nav, .header__actions .search { display: none; }
  .burger { display: flex; }
  /* Elegantes Vollbild-Menü */
  body.nav-open { overflow: hidden; }
  body.nav-open .nav {
    display: flex; position: fixed; inset: 0; flex-direction: column; justify-content: center;
    background: var(--dark-d); padding: 5rem clamp(1.6rem, 8vw, 3.5rem) 3rem; gap: .1rem; z-index: 58;
  }
  body.nav-open .nav .nav__link {
    color: var(--paper); font-family: var(--display); font-size: clamp(1.9rem, 8vw, 2.8rem);
    text-transform: none; letter-spacing: 0; padding: .3em 0; border-bottom: 1px solid rgba(208,208,211,.16);
  }
  body.nav-open .nav .nav__link::after { display: none; }
  /* Header über dem Menü, damit Marke + X sichtbar/klickbar bleiben */
  body.nav-open .site-header { background: transparent; box-shadow: none; border-color: transparent; transform: none; }
  body.nav-open .brand, body.nav-open .brand span { color: var(--paper); }
  body.nav-open .burger span { background: var(--paper); }
  body.nav-open .header__actions .icon-btn { color: var(--paper); }
  .hero__meta { display: none; }
  .feature, .pdp { grid-template-columns: 1fr; }
  .pdp__gallery, .pdp__info { position: static; }
  .anchor-cmp { grid-template-columns: 1fr; text-align: center; gap: 1.4rem; }
  .anchor-vs { transform: rotate(90deg); }
}
@media (max-width: 680px) {
  body { font-size: .98rem; }
  .grid, .grid--3, .cats, .journal, .values, .steps, .materials, .pillars, .stats, .pdp__facts { grid-template-columns: 1fr 1fr; }
  .values, .steps, .pillars { grid-template-columns: 1fr; }
  .value { border-right: none; border-bottom: none; }
  .value:last-child { border-bottom: none; }
  .material:nth-child(odd) { border-right: 1px solid rgba(208,208,211,.2); }
  .nl-form { flex-direction: column; }
  .drop-bar { flex-direction: column; align-items: flex-start; }
  .shop-bar { top: 56px; }
}
@media (max-width: 460px) {
  /* Produkt-Grid & Kategorien bleiben 2-spaltig (dichteres, app-artiges Browsen) */
  .journal { grid-template-columns: 1fr; }
  .brand { font-size: 1.5rem; letter-spacing: .3em; }
}

/* =========================================================================
   CHECKOUT
   ========================================================================= */
.checkout { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; padding-bottom: 5rem; }
.co-steps { display: flex; flex-direction: column; gap: 2.4rem; }
.co-block { border: 1px solid var(--line-2); background: var(--paper); padding: clamp(1.5rem, 3vw, 2.4rem); }
.co-block__head { display: flex; align-items: baseline; gap: .9rem; margin-bottom: 1.6rem; }
.co-block__num { font-family: var(--display); font-style: italic; font-size: 1.6rem; color: var(--accent); line-height: 1; }
.co-block__head h2 { font-size: 1.35rem; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field label .req { color: var(--wine); }
.field input, .field select {
  font-family: var(--body); font-size: 1.02rem; color: var(--ink);
  padding: .85em 1em; background: var(--paper); border: 1px solid var(--line);
  transition: border-color .25s, box-shadow .25s;
}
.field input::placeholder { color: #b3a98f; }
.field input:focus, .field select:focus { outline: none; border-color: var(--dark); box-shadow: 0 0 0 3px rgba(34,34,34,.12); }
.field input:user-invalid, .field select:user-invalid { border-color: var(--wine); }
.field select { -webkit-appearance: none; appearance: none;
  background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='7'%3E%3Cpath d='M0 0 L5 6 L10 0' fill='none' stroke='%236f6858'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.4em; }

/* Zahlarten */
.pay-methods { display: flex; flex-direction: column; gap: .8rem; }
.pay-method { display: block; border: 1px solid var(--line); padding: 1.1rem 1.2rem; cursor: pointer; transition: border-color .25s, background .25s; }
.pay-method:hover { border-color: var(--stone); }
.pay-method:has(input:checked) { border-color: var(--dark); background: var(--cream); }
.pay-method__row { display: flex; align-items: center; gap: .9rem; }
.pay-method input { accent-color: var(--dark); width: 18px; height: 18px; }
.pay-method__title { font-family: var(--display); font-size: 1.25rem; }
.pay-method__badge { margin-left: auto; font-family: var(--sans); font-size: .62rem; letter-spacing: .12em; text-transform: uppercase; color: var(--dark-d); background: var(--sand); padding: .3em .7em; }
.pay-method__desc { font-size: .96rem; color: var(--muted); margin: .5rem 0 0 2.5rem; }
.pay-method__detail { margin: .8rem 0 0 2.5rem; font-size: .95rem; color: var(--ink-2); display: none; }
.pay-method:has(input:checked) .pay-method__detail { display: block; }

.co-consent { display: flex; gap: .7rem; align-items: flex-start; margin-top: 1.4rem; font-size: .95rem; color: var(--ink-2); }
.co-consent input { accent-color: var(--dark); width: 18px; height: 18px; margin-top: .2rem; flex-shrink: 0; }
.co-consent a { border-bottom: 1px solid var(--accent); }
.co-error { color: var(--wine); font-family: var(--sans); font-size: .82rem; letter-spacing: .04em; margin-top: 1rem; display: none; }
.co-error.show { display: block; }

/* Order Summary */
.co-summary { position: sticky; top: 90px; border: 1px solid var(--line-2); background: var(--cream); padding: clamp(1.5rem, 3vw, 2rem); }
.co-summary h2 { font-size: 1.4rem; margin-bottom: 1.2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--line-2); }
.co-line { display: grid; grid-template-columns: 54px 1fr auto; gap: .9rem; padding: .9rem 0; border-bottom: 1px solid var(--line-2); }
.co-line__sw { width: 54px; height: 68px; background-size: 20px; border: 1px solid var(--line-2); }
.co-line__name { font-family: var(--display); font-size: 1.08rem; line-height: 1.2; }
.co-line__meta { font-family: var(--sans); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-top: .3rem; }
.co-line__price { font-family: var(--display); font-size: 1.05rem; color: var(--dark-d); white-space: nowrap; }
.co-totals { margin-top: 1.2rem; }
.co-total-row { display: flex; justify-content: space-between; padding: .4rem 0; color: var(--ink-2); }
.co-total-row span:last-child { font-variant-numeric: tabular-nums; }
.co-total-row--grand { border-top: 1px solid var(--line-2); margin-top: .6rem; padding-top: 1rem; align-items: baseline; }
.co-total-row--grand b { font-family: var(--display); font-size: 1.5rem; color: var(--dark-d); font-weight: 500; }
.co-total-row--grand > span:first-child { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.co-freeship { font-family: var(--sans); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--dark-d); background: var(--paper); padding: .7em .9em; margin-top: 1rem; text-align: center; }
.co-submit { margin-top: 1.4rem; }
.co-reassure { display: flex; flex-direction: column; gap: .5rem; margin-top: 1.2rem; font-size: .86rem; color: var(--muted); }
.co-reassure span { display: flex; gap: .5em; align-items: center; }
/* Reassurance-Zeilen ohne Deko-Symbol */
.co-empty { text-align: center; padding: 5rem 1rem; }
.co-empty h2 { font-size: 1.6rem; margin-bottom: 1rem; }
.co-empty p { color: var(--muted); margin-bottom: 2rem; }

/* =========================================================================
   ORDER CONFIRMATION
   ========================================================================= */
.confirm { max-width: 46rem; margin-inline: auto; padding: clamp(2.5rem, 6vw, 5rem) 0; }
.confirm__seal { width: 76px; height: 76px; border: 1px solid var(--accent); border-radius: 50%; display: grid; place-items: center; margin: 0 auto 1.6rem; color: var(--accent); font-size: 2rem; }
.confirm__head { text-align: center; margin-bottom: 2.6rem; }
.confirm__head h1 { font-size: clamp(1.8rem, 3.6vw, 2.5rem); margin: .6rem 0; }
.confirm__head p { color: var(--ink-2); font-size: 1.02rem; }
.confirm__order { font-family: var(--sans); font-size: .78rem; letter-spacing: .16em; text-transform: uppercase; color: var(--dark-d); background: var(--cream); padding: .5em 1em; display: inline-block; margin-top: 1rem; }
.confirm__box { border: 1px solid var(--line-2); background: var(--paper); padding: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }
.confirm__box h3 { font-size: 1.35rem; margin-bottom: 1rem; }
.pay-detail { display: grid; grid-template-columns: auto 1fr; gap: .6rem 1.4rem; font-size: 1rem; }
.pay-detail dt { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); align-self: center; }
.pay-detail dd { font-family: var(--display); font-size: 1.15rem; color: var(--ink); }
.pay-detail dd.mono { font-family: var(--sans); letter-spacing: .04em; font-size: 1rem; }
.confirm__note { font-size: .96rem; color: var(--ink-2); margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line-2); }
.confirm__items .co-line:first-child { padding-top: 0; }
.confirm__items .co-line:last-child { border-bottom: none; }
.confirm__actions { text-align: center; margin-top: 2rem; }

@media (max-width: 900px) {
  .checkout { grid-template-columns: 1fr; }
  .co-summary { position: static; order: -1; }
}
@media (max-width: 560px) {
  .field-grid { grid-template-columns: 1fr; }
  .pay-method__desc, .pay-method__detail { margin-left: 0; }
}

/* =========================================================================
   ENTWURFS-BANNER (Shop-Ansicht, wenn Admin-Entwurf aktiv)
   ========================================================================= */
.draft-flag {
  position: fixed; left: 1rem; bottom: 1rem; z-index: 200;
  background: var(--ink); color: var(--cream); padding: .7em 1.1em;
  font-family: var(--sans); font-size: .72rem; letter-spacing: .06em;
  box-shadow: 0 14px 34px -18px rgba(0,0,0,.6); display: flex; align-items: center; gap: .55em;
}
.draft-flag b { color: var(--sand); border-bottom: 1px solid var(--sand); }
.draft-flag__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(176,141,79,.3); }

/* =========================================================================
   ADMIN — Artikelverwaltung
   ========================================================================= */
.admin { padding-bottom: 5rem; }
.admin__bar { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding: 1.2rem 0; border-bottom: 1px solid var(--line-2); margin-bottom: 2rem; position: sticky; top: 0; background: var(--paper); z-index: 30; }
.admin__bar-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.admin__count { font-family: var(--sans); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.btn--sm { padding: .7em 1.2em; font-size: .72rem; }
.btn--wine { background: transparent; color: var(--wine); border-color: var(--wine); }
.btn--wine:hover { background: var(--wine); color: var(--paper); }

.admin__grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.4rem; align-items: start; }
.admin__panel { border: 1px solid var(--line-2); background: var(--paper); padding: clamp(1.4rem, 3vw, 2.2rem); }
.admin__panel h2 { font-size: 1.5rem; margin-bottom: .4rem; }
.admin__panel > p.hint { color: var(--muted); font-size: .95rem; margin-bottom: 1.6rem; }
.admin__form-actions { display: flex; gap: .6rem; margin-top: 1.6rem; flex-wrap: wrap; }

/* Bild/Muster-Umschalter */
.media-toggle { display: flex; gap: .5rem; margin-bottom: 1rem; }
.media-toggle button { flex: 1; font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
  padding: .7em; border: 1px solid var(--line); color: var(--ink-2); }
.media-toggle button.is-active { background: var(--dark); color: var(--paper); border-color: var(--dark); }
.upload-row { display: flex; gap: .8rem; align-items: center; }
.upload-prev { width: 60px; height: 75px; border: 1px solid var(--line-2); background-size: cover; background-position: center; flex-shrink: 0; background-color: var(--cream); }

/* Maß-Zeilen */
.measure-rows { display: flex; flex-direction: column; gap: .5rem; }
.measure-row { display: grid; grid-template-columns: 1fr 1fr auto; gap: .5rem; }
.measure-row input { padding: .6em .8em; border: 1px solid var(--line); font-family: var(--body); }
.measure-row button { border: 1px solid var(--line); color: var(--muted); width: 38px; }
.measure-row button:hover { border-color: var(--wine); color: var(--wine); }

/* Live-Vorschau-Karte */
.admin__preview { position: sticky; top: 5.5rem; }
.admin__preview .pc { max-width: 300px; }
.admin__preview-label { font-family: var(--sans); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 1rem; }

/* Artikelliste */
.admin__list { display: flex; flex-direction: column; gap: .7rem; margin-top: 1.4rem; }
.admin__item { display: grid; grid-template-columns: 46px 1fr auto; gap: .9rem; align-items: center;
  border: 1px solid var(--line-2); padding: .7rem; background: var(--paper); }
.admin__item.is-editing { border-color: var(--accent); background: var(--cream); }
.admin__item-sw { width: 46px; height: 58px; background-size: cover; background-position: center; border: 1px solid var(--line-2); }
.admin__item-info b { font-family: var(--display); font-size: 1.05rem; display: block; }
.admin__item-info span { font-family: var(--sans); font-size: .66rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.admin__item-actions { display: flex; gap: .3rem; }
.admin__item-actions button { width: 32px; height: 32px; border: 1px solid var(--line); color: var(--ink-2); font-size: .9rem; display: grid; place-items: center; }
.admin__item-actions button:hover { border-color: var(--ink); }
.admin__item-actions .del:hover { border-color: var(--wine); color: var(--wine); }
.admin__hero-badge { font-family: var(--sans); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; background: var(--accent); color: #fff; padding: .2em .5em; }
/* Foto-Duplikat-Hinweis in der Artikelliste — Funktionsfarbe, kein Blocker */
.admin__item-info span.admin__dup { display: block; margin-top: .35rem; color: var(--wine); text-transform: none; letter-spacing: .03em; }

.toast { position: fixed; bottom: 1.5rem; left: 50%; transform: translateX(-50%) translateY(20px); opacity: 0;
  background: var(--dark-d); color: var(--paper); padding: .9em 1.6em; font-family: var(--sans); font-size: .82rem; letter-spacing: .06em;
  z-index: 300; transition: opacity .3s, transform .3s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

@media (max-width: 900px) { .admin__grid { grid-template-columns: 1fr; } .admin__preview { position: static; } }

/* =========================================================================
   ADMIN — Sperrmaske (Login)
   ========================================================================= */
.lock-screen {
  position: fixed; inset: 0; z-index: 500; display: none; align-items: center; justify-content: center;
  background: var(--dark-d); padding: 1.5rem;
}
.lock-screen.show { display: flex; }
.lock-box { width: min(360px, 100%); text-align: center; color: var(--paper); }
.lock-box h1 { font-size: 1.6rem; color: var(--paper); margin-bottom: .5rem; }
.lock-box p { color: rgba(252,252,252,.75); font-size: .96rem; margin-bottom: 1.4rem; }
.lock-box input[type="password"] {
  width: 100%; padding: .9em 1.1em; font-family: var(--body); font-size: 1.05rem;
  background: rgba(252,252,252,.06); border: 1px solid rgba(252,252,252,.3); color: var(--paper);
  margin-bottom: 1rem; text-align: center;
}
.lock-box input[type="password"]::placeholder { color: rgba(252,252,252,.4); }
.lock-box input[type="password"]:focus { outline: none; border-color: var(--sand); }
.lock-box .btn { width: 100%; background: var(--sand); color: var(--dark-d); border-color: var(--sand); }
.lock-box .btn:hover { background: var(--paper); border-color: var(--paper); }
.lock-box__err { display: none; color: #e2a9a9; font-family: var(--sans); font-size: .82rem; margin: 1rem 0 0; }
.lock-box__err.show { display: block; }
.lock-box__skip {
  display: block; width: 100%; margin-top: 1.1rem; font-family: var(--sans); font-size: .76rem;
  letter-spacing: .08em; color: rgba(252,252,252,.7); border-bottom: 1px solid rgba(252,252,252,.3);
  padding-bottom: .2em; transition: color .25s, border-color .25s;
}
.lock-box__skip:hover { color: var(--paper); border-color: var(--sand); }
.lock-box__hint { margin-top: 1.6rem; font-size: .78rem; color: rgba(252,252,252,.5); line-height: 1.6; }
.lock-box__hint code { background: rgba(252,252,252,.1); padding: .1em .4em; }

/* =========================================================================
   PRODUKTDETAIL — Erweiterungen (Kuration, Trust, Zustand, Galerie-Zoom)
   ========================================================================= */
.pdp__curator { font-family: var(--display); font-size: clamp(1.2rem, 1.9vw, 1.5rem); font-style: italic;
  line-height: 1.55; color: var(--ink-2); position: relative; margin: 0 0 1.8rem; padding-left: .2rem; }
.pdp__curator-mark { font-size: 2.4em; line-height: 0; color: var(--accent); vertical-align: -.35em; margin-right: .1em; }
.pdp__curator-by { display: block; font-style: normal; font-family: var(--sans); font-size: .72rem;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .9rem; }

.pdp__trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-2);
  border: 1px solid var(--line-2); margin: 1.4rem 0; }
.pdp__trust span { background: var(--paper); padding: .9rem .7rem; text-align: center; font-family: var(--sans);
  font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); display: flex; flex-direction: column; gap: .3rem; }
.pdp__trust b { font-family: var(--display); font-size: 1.05rem; letter-spacing: 0; text-transform: none; color: var(--dark-d); }

.pdp__guide { margin-top: 1rem; font-size: .92rem; color: var(--muted); font-style: italic; line-height: 1.6; }
.pdp__tax { margin-top: .8rem; font-size: .88rem; color: var(--muted); border-top: 1px solid var(--line-2); padding-top: .8rem; }

.cond-scale { display: flex; gap: .4rem; margin-bottom: 1rem; }
.cond-step { flex: 1; text-align: center; font-family: var(--sans); font-size: .64rem; letter-spacing: .08em; text-transform: uppercase;
  padding: .55em .2em; border: 1px solid var(--line); color: var(--muted); background: var(--paper); }
.cond-step.is-active { background: var(--dark); color: var(--paper); border-color: var(--dark); font-weight: 500; }

.pdp__zoom-btn { position: absolute; top: 14px; right: 14px; z-index: 4; font-family: var(--sans); font-size: .62rem;
  letter-spacing: .14em; text-transform: uppercase; background: rgba(252,252,252,.92); color: var(--dark-d);
  padding: .5em .8em; opacity: 0; transition: opacity .4s var(--ease-out); }
.pdp__main:hover .pdp__zoom-btn { opacity: 1; }
.pdp__main { cursor: zoom-in; }
.pdp__thumb { cursor: pointer; padding: 0; }
.pdp__thumb.is-active { outline: 1px solid var(--accent); outline-offset: 2px; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; z-index: 400; background: rgba(26,26,28,.92); display: none;
  flex-direction: column; align-items: center; justify-content: center; padding: 3rem 1.5rem; }
body.lightbox-open { overflow: hidden; }
body.lightbox-open .lightbox { display: flex; }
.lightbox__close { position: absolute; top: 1.4rem; right: 1.6rem; color: var(--paper); font-size: 1.4rem; }
.lightbox__stage { width: min(680px, 92vw); height: min(80vh, 850px); overflow: hidden; cursor: crosshair; border: 1px solid rgba(208,208,211,.3); }
.lightbox__img { width: 100%; height: 100%; background-position: center; transform: scale(1.9); transition: transform .3s var(--ease-out); }
.lightbox__hint { color: rgba(252,252,252,.6); font-family: var(--sans); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; margin-top: 1.2rem; }

/* Bewertungen / Vertrauen */
.pdp__reviews { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2.5rem, 5vw, 4rem); border-top: 1px solid var(--line-2); }
.reviews-empty { max-width: 44rem; }
.reviews-empty > p { color: var(--ink-2); font-size: 1.12rem; margin-bottom: 1.4rem; }
.reviews-promise { display: grid; gap: .9rem; }
.reviews-promise li { position: relative; padding-left: 1.8rem; color: var(--ink-2); }
.reviews-promise li::before { content: "—"; position: absolute; left: 0; color: var(--muted); }

/* Editorial-Story-Band (PDP) — Magazin-Feature über das Einzelstück,
   volle Breite unter der Kaufspalte. Erzählt Charakter/Herkunft, statt nur
   Spezifikationen zu listen. */
.pdp-story { display: grid; grid-template-columns: 1fr 1.05fr; align-items: stretch;
  margin-top: clamp(3rem, 6vw, 5rem); border-top: 1px solid var(--line-2); }
.pdp-story__media { position: relative; min-height: 26rem; background-size: 44px; background-position: center;
  overflow: hidden; border-right: 1px solid var(--line-2); display: grid; place-items: center; }
.pdp-story__media .pc__seal { width: 120px; height: 120px; font-size: 2.2rem; z-index: 2; }
.pdp-story__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 45%, rgba(26,26,28,.42)); }
.pdp-story__body { padding: clamp(2.4rem, 5vw, 4.5rem) clamp(1.4rem, 4vw, 3.6rem); display: flex; flex-direction: column; justify-content: center; }
.pdp-story__body .overline { margin-bottom: 1.2rem; }
.pdp-story__body h2 { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -.015em; margin-bottom: 1.2rem; line-height: 1.08; }
.pdp-story__body p { color: var(--ink-2); font-size: 1.1rem; line-height: 1.72; margin-bottom: 1.3rem; }
.pdp-story__quote { font-family: var(--display); font-style: italic; font-size: clamp(1.3rem, 2.3vw, 1.75rem);
  line-height: 1.45; color: var(--dark); border: 0; padding: 0; margin: .2rem 0 .9rem; }
.pdp-story__by { font-family: var(--sans); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 1.6rem; }
.pdp-story__care { font-size: 1rem; color: var(--muted); }

/* Service-Zusagen: einmal, ruhig, am Seitenende (statt Raster in der
   Kaufspalte). Nur Haarlinien, keine Kästchen. */
.pdp-assure { margin-top: clamp(3rem, 6vw, 5rem); padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line-2); }
.pdp-assure ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.pdp-assure b { display: block; font-family: var(--display); font-weight: 500; font-size: 1.2rem;
  color: var(--ink); margin-bottom: .4rem; }
.pdp-assure span { font-family: var(--sans); font-size: .72rem; letter-spacing: .1em; color: var(--muted); }
@media (max-width: 700px) { .pdp-assure ul { grid-template-columns: 1fr; gap: 1.4rem; } }

/* „Dazu passt" bewusst leiser als der Hauptbereich — es soll nicht mit dem
   betrachteten Stück konkurrieren. */
[data-related-wrap] .sec-head h2 { font-size: clamp(1.4rem, 2.2vw, 1.9rem); }
[data-related-wrap] .grid { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 700px) { [data-related-wrap] .grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) {
  .pdp-story { grid-template-columns: 1fr; }
  .pdp-story__media { border-right: none; border-bottom: 1px solid var(--line-2); min-height: 19rem; }
}

/* =========================================================================
   SHOP — Facetten-Filter + Vorabzugang
   ========================================================================= */
/* Facetten sind auf ALLEN Breiten eingeklappt — sie kosteten über der Ware
   113px Höhe. Der „Filter verfeinern“-Schalter (aus main.js) klappt sie auf. */
.facets { display: none; grid-template-columns: repeat(3, auto); gap: 1.6rem 2.6rem; padding: 1.6rem 0; border-bottom: 1px solid var(--line-2); }
.facets.is-open { display: grid; }
.facet__label { display: block; font-family: var(--sans); font-size: .66rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: .7rem; }
.facet__opts { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip { font-family: var(--sans); font-size: .74rem; letter-spacing: .04em; padding: .5em 1em; border: 1px solid var(--line);
  color: var(--ink-2); transition: all .3s var(--ease-out); }
.chip:hover { border-color: var(--ink); }
.chip.is-active { background: var(--dark); color: var(--paper); border-color: var(--dark); }
.shop-clear { font-family: var(--sans); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; color: var(--wine);
  border-bottom: 1px solid var(--wine); padding-bottom: .2em; }

.vorab { background: var(--dark-d); color: var(--paper); }
.vorab__inner { display: grid; grid-template-columns: 1.3fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center;
  padding: clamp(2.4rem, 5vw, 4rem) 0; }
.vorab .overline { color: var(--sand); }
.vorab h2 { color: var(--paper); font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin: 1rem 0; }
.vorab p { color: rgba(252,252,252,.78); }
.vorab .nl-form input { border-color: rgba(252,252,252,.4); color: var(--paper); }
.vorab .nl-form input::placeholder { color: rgba(252,252,252,.5); }

/* =========================================================================
   HOMEPAGE — „Wie wir auswählen“ + FAQ / Long-Tail-Content
   ========================================================================= */
.selection { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.8rem, 3.5vw, 3rem); margin-top: clamp(2rem, 4vw, 3rem); counter-reset: sel; }
.sel-step { padding: 0; }
.sel-step:last-child { border-right: none; }
.sel-step::before { counter-increment: sel; content: counter(sel, decimal-leading-zero); font-family: var(--display);
  font-style: italic; font-size: 1.8rem; color: var(--accent); display: block; margin-bottom: .8rem; }
.sel-step h3 { font-size: 1.3rem; margin-bottom: .5rem; }
.sel-step p { color: var(--ink-2); font-size: .98rem; }

.faq { max-width: 52rem; margin-inline: auto; }
.faq__item { border-bottom: 1px solid var(--line-2); }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.4rem 0; font-family: var(--display); font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: "+"; color: var(--accent); font-size: 1.3rem; flex-shrink: 0; }
.faq__item[open] summary::after { content: "–"; }
.faq__item > p { padding-bottom: 1.4rem; color: var(--ink-2); line-height: 1.7; max-width: 46rem; }

@media (max-width: 900px) {
  .pdp__trust { grid-template-columns: repeat(2, 1fr); }
  .facets { grid-template-columns: 1fr 1fr; }
  .vorab__inner { grid-template-columns: 1fr; }
  .selection { grid-template-columns: 1fr 1fr; }
  .sel-step:nth-child(2) { border-right: none; }
}
@media (max-width: 560px) {
  .selection { grid-template-columns: 1fr; }
  .sel-step { border-right: none; border-bottom: none; }
  .pdp__trust { grid-template-columns: 1fr 1fr; }
}

/* =========================================================================
   MOBILE-FEINSCHLIFF — Touch-UX, Sticky-Kauf, Filter-Sheet, iOS
   ========================================================================= */
/* Kein blaues Tap-Highlight, schnellere Taps, keine Textauswahl auf UI */
* { -webkit-tap-highlight-color: transparent; }
a, button, summary, .chip, .filter, label { touch-action: manipulation; }
.btn:active, .pc__add:active, .chip:active, .filter:active { transform: scale(.985); }

/* Produktdetail: fixe „In den Warenkorb“-Leiste unten (nur Smartphone) */
.pdp-sticky { position: fixed; left: 0; right: 0; bottom: 0; z-index: 95; display: none; align-items: center; gap: .9rem;
  background: color-mix(in srgb, var(--paper) 96%, transparent); backdrop-filter: blur(12px);
  border-top: 1px solid var(--line-2); padding: .7rem 1rem calc(.7rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(110%); transition: transform .45s var(--ease-out); box-shadow: 0 -16px 34px -24px rgba(0,0,0,.5); }
.pdp-sticky.show { transform: none; }
.pdp-sticky__info { flex: 1; min-width: 0; display: flex; flex-direction: column; line-height: 1.2; }
.pdp-sticky__info span { font-family: var(--display); font-size: 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pdp-sticky__info b { font-family: var(--display); font-size: 1.05rem; color: var(--dark-d); }
.pdp-sticky .btn { padding: 1em 1.5em; white-space: nowrap; }

/* Shop: Filter als aufklappbares Panel + horizontal scrollbare Kategorien */
.facets-toggle { display: inline-flex; align-items: center; gap: .45em; font-family: var(--sans);
  font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; padding: .6em .1em;
  background: none; border: 0; color: var(--ink-2); transition: color .3s var(--ease-out); }
.facets-toggle::after { content: "+"; }
.facets-toggle:hover { color: var(--ink); }
.facets-toggle[aria-expanded="true"] { color: var(--ink); }
.facets-toggle[aria-expanded="true"]::after { content: "–"; }
.shop-clear { margin: 1rem 0; }

@media (max-width: 760px) {
  html { scroll-padding-top: 5rem; }
  /* Header bleibt auf dem Smartphone sichtbar (kein Wegblenden → keine Sticky-Lücken) */
  .site-header.nav-hidden { transform: none; }

  .pdp-sticky { display: flex; }

  /* Kategorien horizontal wischbar, Facetten hinter „Filter“-Button */
  .shop-bar { flex-wrap: wrap; gap: .8rem; top: 0; padding: .9rem 0; }
  .filters { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin: 0 -4vw; padding: 0 4vw; }
  .filters::-webkit-scrollbar { display: none; }
  .filter { flex: 0 0 auto; }
  .shop-tools { width: 100%; justify-content: space-between; }
  .facets-toggle { padding: .75em .1em; }
  .facets { display: none; grid-template-columns: 1fr 1fr; gap: 1.4rem 1.6rem; }
  .facets.is-open { display: grid; }

  /* Größere Touch-Ziele */
  .nav__link { padding: .6em 0; }
  .icon-btn { padding: .3rem; }
  .pc__add { padding: 1em; font-size: .68rem; letter-spacing: .12em; }
  .chip { padding: .7em 1.1em; }
  .filter { padding: .75em 1.15em; }
  .pdp__acc summary { padding: 1.25rem 0; }
  .faq__item summary { padding: 1.3rem 0; }
  .cart__close, .cart__remove { padding: .4rem; }

  /* Produkt-Grid enger, Karten-Feinheiten */
  .grid { gap: 1.5rem .9rem; }
  .pc__name { font-size: 1.05rem; }
  .pc__price { font-size: 1.05rem; }
  .pdp__facts { grid-template-columns: repeat(3, 1fr); gap: .6rem; }
  .pdp__facts strong { font-size: 1rem; }
  .pdp__facts em { font-size: .74rem; }

  /* Ruhigerer Rhythmus + Lesbarkeit auf kleinen Screens */
  .section { padding: clamp(3rem, 9vw, 4.5rem) 0; }
  .hero__lead { font-size: 1.12rem; }
  .announce { font-size: .66rem; letter-spacing: .1em; }
  .article-body { padding-bottom: 3.5rem; } /* Platz für evtl. Chrome-Leisten */

  /* iOS: 16px Eingabefelder verhindern Auto-Zoom beim Fokus */
  input, select, textarea { font-size: 16px; }
}

@media (max-width: 400px) {
  .pdp__trust { grid-template-columns: 1fr 1fr; }
  .brand { letter-spacing: .26em; }
}

/* =========================================================================
   CAPSULE WARDROBE — interaktive High-End-Slideshow
   Crossfade zwischen zwei Ebenen, 3D-Cursor-Tilt, Geister-Ziffer,
   gleitender Umschalter, Sheen, Fortschritt, veredelte Kleiderstange.
   ========================================================================= */
.capsule { position: relative; left: 50%; transform: translateX(-50%); width: min(66rem, 92vw); margin: 3rem 0; outline: none; }

.capsule__head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.capsule__toggle { position: relative; display: grid; grid-template-columns: 1fr 1fr; border: 1px solid var(--line); overflow: hidden; }
.capsule__toggle button { position: relative; z-index: 1; font-family: var(--sans); font-size: .74rem; letter-spacing: .18em;
  text-transform: uppercase; padding: .9em 2.2em; color: var(--muted); transition: color .5s var(--ease-out); }
.capsule__toggle button.is-active { color: var(--paper); }
.capsule__pill { position: absolute; z-index: 0; top: 0; left: 0; width: 50%; height: 100%; background: var(--dark);
  transition: transform .6s var(--ease-out); }
.capsule__meta { font-family: var(--display); display: flex; align-items: baseline; gap: .4rem; white-space: nowrap; flex-shrink: 0; }
.capsule__head { flex-wrap: wrap; }
.capsule__now { font-size: clamp(1.8rem, 3vw, 2.4rem); font-style: italic; color: var(--dark-d); line-height: 1; }
.capsule__tot { color: var(--muted); font-size: 1.1rem; }

.capsule__stage { display: grid; grid-template-columns: 1.08fr 1fr; gap: clamp(1.5rem, 4vw, 3.6rem); align-items: stretch; }

/* Visuelle Bühne mit 3D-Perspektive */
.capsule__visual { position: relative; aspect-ratio: 4/5; overflow: hidden; border: 1px solid var(--line-2);
  perspective: 1100px; background: var(--dark-d); }
.capsule__tilt { position: absolute; inset: 0; transform-style: preserve-3d; transition: transform .6s var(--ease-out); }
.capsule__layer { position: absolute; inset: -3%; background-size: 38px; background-position: center;
  opacity: 0; transform: scale(1.1); transition: opacity 1.1s var(--ease-out), transform 1.6s var(--ease-out);
  will-change: opacity, transform; }
.capsule__layer.is-active { opacity: 1; transform: scale(1); }
.capsule__visual::after { content: ""; position: absolute; inset: 0; z-index: 3; pointer-events: none;
  background: linear-gradient(180deg, rgba(26,26,28,.06), rgba(26,26,28,.42)); }
/* Wanderndes Licht (Sheen) */
.capsule__visual::before { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; mix-blend-mode: soft-light;
  background: linear-gradient(115deg, transparent 42%, rgba(255,255,255,.14) 50%, transparent 58%); background-size: 260% 100%;
  animation: capSheen 7.5s linear infinite; }
@keyframes capSheen { to { background-position: -160% 0; } }

.capsule__ghost { position: absolute; z-index: 2; right: 4%; bottom: 1%; font-family: var(--display); font-style: italic;
  font-weight: 500; font-size: clamp(6rem, 15vw, 12rem); line-height: .78; color: rgba(252,252,252,.13);
  letter-spacing: -.03em; pointer-events: none; }
.capsule__ghost.is-anim { animation: capGhost .9s var(--ease-out); }
@keyframes capGhost { from { opacity: 0; transform: translateY(35%); } to { opacity: 1; transform: none; } }

.capsule__kindtag { position: absolute; z-index: 5; top: 16px; left: 16px; font-family: var(--sans); font-size: .64rem;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(252,252,252,.92); }
.capsule__arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 6; width: 46px; height: 46px;
  background: color-mix(in srgb, var(--paper) 88%, transparent); color: var(--dark-d); display: grid; place-items: center;
  font-size: 1.05rem; transition: background .3s, transform .3s var(--ease-out); }
.capsule__arrow:hover { background: var(--paper); }
.capsule__arrow--prev { left: 12px; } .capsule__arrow--prev:hover { transform: translateY(-50%) translateX(-2px); }
.capsule__arrow--next { right: 12px; } .capsule__arrow--next:hover { transform: translateY(-50%) translateX(2px); }

.capsule__text { display: flex; flex-direction: column; justify-content: center; }
.capsule__kind { display: block; margin-bottom: .8rem; }
.capsule__name { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.06; margin-bottom: 1.2rem; letter-spacing: -.015em; }
.capsule__why { font-size: clamp(1.1rem, 1.6vw, 1.24rem); color: var(--ink-2); line-height: 1.6; margin-bottom: 1.4rem; }
.capsule__style { font-size: 1rem; color: var(--ink-2); line-height: 1.6; }
.capsule__style strong { display: block; color: var(--accent); font-family: var(--sans); font-size: .68rem;
  letter-spacing: .16em; text-transform: uppercase; margin-bottom: .35rem; }
/* Richtungsabhängiger Text-Einschub (Reveal je Wechsel) */
.capsule__text.is-anim > * { animation: capText .8s var(--ease-out) both; }
.capsule__text.is-anim .capsule__kind { animation-delay: .04s; }
.capsule__text.is-anim .capsule__name { animation-delay: .12s; }
.capsule__text.is-anim .capsule__why { animation-delay: .2s; }
.capsule__text.is-anim .capsule__style { animation-delay: .28s; }
@keyframes capText { from { opacity: 0; transform: translateX(calc(var(--dir, 1) * 26px)); } to { opacity: 1; transform: none; } }

.capsule__progress { height: 2px; background: var(--line-2); margin: 1.9rem 0 1.2rem; position: relative; overflow: hidden; }
.capsule__progress span { position: absolute; inset: 0 auto 0 0; width: 10%; background: var(--accent);
  transition: width .6s var(--ease-out); }

.capsule__rail { display: flex; gap: .7rem; overflow-x: auto; padding-bottom: .6rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.capsule__rail::-webkit-scrollbar { display: none; }
.capsule__chip { flex: 0 0 auto; width: 60px; height: 76px; background-size: 20px; background-position: center;
  border: 1px solid var(--line-2); position: relative; cursor: pointer;
  transition: transform .45s var(--ease-out), width .45s var(--ease-out); }
.capsule__chip::after { content: ""; position: absolute; inset: 0; background: rgba(26,26,28,.32); transition: background .4s; }
.capsule__chip b { position: absolute; bottom: 5px; right: 6px; z-index: 2; font-family: var(--sans); font-weight: 400;
  font-size: .6rem; color: rgba(252,252,252,.95); }
.capsule__chip:hover { transform: translateY(-3px); }
.capsule__chip.is-active { width: 74px; outline: 2px solid var(--accent); outline-offset: 2px; }
.capsule__chip.is-active::after { background: transparent; }

@media (prefers-reduced-motion: reduce) {
  .capsule__layer { transition: opacity .2s; transform: none; }
  .capsule__layer.is-active { transform: none; }
  .capsule__visual::before, .capsule__ghost.is-anim, .capsule__text.is-anim > * { animation: none; }
  .capsule__tilt { transition: none; }
}

@media (max-width: 640px) {
  .capsule { width: 92vw; }
  .capsule__stage { grid-template-columns: 1fr; gap: 1.4rem; }
  .capsule__visual { aspect-ratio: 4/3; }
  .capsule__toggle { width: 100%; }
  .capsule__ghost { font-size: 7rem; }
}

/* =========================================================================
   KONTO / AUTH / BESTELLUNGEN / ADMIN-KONSOLE
   ========================================================================= */
.account { padding-bottom: 5rem; }
.auth { max-width: 30rem; }
.auth__tabs { display: flex; border-bottom: 1px solid var(--line-2); margin-bottom: 1.8rem; }
.auth__tab { font-family: var(--sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  padding: .85em 1.3em; color: var(--muted); border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color .3s, border-color .3s; }
.auth__tab.is-active { color: var(--ink); border-color: var(--accent); }
.auth__form { display: flex; flex-direction: column; gap: 1rem; }
.auth__form .btn { margin-top: .4rem; }
.auth__link { align-self: flex-start; font-family: var(--sans); font-size: .74rem; letter-spacing: .06em; color: var(--muted); text-decoration: underline; }
.auth__err { color: var(--wine); font-family: var(--sans); font-size: .85rem; min-height: 1em; }

/* ---- Anmeldung mit Google ---------------------------------------------- */
/* Trenner mit Wort in der Mitte: zwei Linien über ein Pseudo-Paar, damit
   kein zusätzliches Markup nötig ist. */
.auth__oder { display: flex; align-items: center; gap: 1rem; margin: 1.6rem 0 1.2rem;
  font-family: var(--sans); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.auth__oder::before, .auth__oder::after { content: ""; flex: 1; height: 1px; background: var(--line-2); }
/* Weiß mit Rahmen statt der dunklen Hausfarbe: so verlangt es Googles
   Markenrichtlinie für den Anmeldeknopf, und es hebt sich sichtbar vom
   eigenen Haupt-Knopf ab. */
.btn--google { display: flex; align-items: center; justify-content: center; gap: .7rem; width: 100%;
  background: #fff; color: #1f1f1f; border: 1px solid #dadce0; }
.btn--google:hover { background: #f7f8f8; border-color: #c9ccd1; color: #1f1f1f; }
.btn--google svg { flex: 0 0 auto; }

/* ---- Merkliste --------------------------------------------------------- */
/* Das Herz liegt über dem Bildlink der Karte, deshalb eigener Stapelplatz.
   Auf Zeigegeräten erscheint es erst beim Überfahren; per Tastatur und auf
   Touch bleibt es sichtbar, sonst wäre es dort unerreichbar. */
.pc { position: relative; }
.fav {
  position: absolute; top: .7rem; right: .7rem; z-index: 2;
  width: 2.3rem; height: 2.3rem; display: grid; place-items: center;
  border: 0; border-radius: 50%; cursor: pointer; padding: 0;
  background: rgba(252,252,252,.82); backdrop-filter: blur(6px);
  color: var(--ink-2); transition: opacity .25s var(--ease-out), color .25s var(--ease-out), background .25s var(--ease-out);
}
.fav svg { width: 1.15rem; height: 1.15rem; fill: none; stroke: currentColor; stroke-width: 1.5; }
.fav:hover { background: var(--paper); color: var(--oxblood); }
.fav:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 2px; }
.fav.is-on { color: var(--oxblood); }
.fav.is-on svg { fill: currentColor; stroke: currentColor; }
@media (hover: hover) and (pointer: fine) {
  .pc .fav { opacity: 0; }
  .pc:hover .fav, .pc .fav:focus-visible, .pc .fav.is-on { opacity: 1; }
}

/* Auf der Produktseite steht das Herz neben dem Kaufen-Knopf, nicht über
   einem Bild — dort also statisch und mit sichtbarem Rahmen. */
.pdp__kaufen { display: flex; align-items: stretch; gap: .7rem; }
.pdp__kaufen .btn { flex: 1; }
.pdp__kaufen .fav { position: static; width: 3.1rem; height: auto; flex: 0 0 auto;
  border: 1px solid var(--line-2); border-radius: 2px; background: transparent; opacity: 1; backdrop-filter: none; }
.pdp__kaufen .fav:hover { background: var(--paper-2); }

.grid-leer { grid-column: 1 / -1; text-align: center; color: var(--ink-2);
  padding: clamp(2.5rem, 8vw, 5rem) 1rem; font-family: var(--sans); }
.grid-leer .link-arrow { display: inline-block; margin-top: 1rem; background: none; border: 0; cursor: pointer; }

/* ---- Platzhalterkarten beim Nachladen ---------------------------------- */
/* Kein Schimmern quer über die Fläche: das zieht die Aufmerksamkeit auf den
   Ladevorgang statt auf den Inhalt. Ein ruhiges Pulsieren reicht als Signal,
   dass gleich etwas kommt. */
.pc--laedt { pointer-events: none; }
.pc--laedt .pc__media { display: block; aspect-ratio: 4/5; background: var(--paper-2); }
.pc--laedt .pc__zeile { display: block; height: .72rem; margin-top: .8rem; background: var(--paper-2); }
.pc--laedt .pc__zeile--kurz { width: 42%; }
.pc--laedt .pc__media, .pc--laedt .pc__zeile { animation: laedtPuls 1.6s var(--ease-inout) infinite; }
@keyframes laedtPuls { 50% { opacity: .55; } }
@media (prefers-reduced-motion: reduce) {
  .pc--laedt .pc__media, .pc--laedt .pc__zeile { animation: none; }
}

/* ---- Passform ---------------------------------------------------------- */
.fit { margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--line-2);
  font-family: var(--sans); font-size: .86rem; }
.fit__intro { color: var(--ink-2); line-height: 1.55; margin-bottom: 1rem; }
.fit__form { display: grid; grid-template-columns: repeat(auto-fit, minmax(8.5rem, 1fr)); gap: .8rem; align-items: end; }
.fit__feld { display: flex; flex-direction: column; gap: .35rem; }
.fit__feld span { font-size: .74rem; letter-spacing: .04em; color: var(--muted); }
.fit__feld input { padding: .6em .7em; border: 1px solid var(--line-2); background: var(--paper); font: inherit; }
.fit__feld input:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 1px; }
.fit__hinweis { margin-top: .8rem; font-size: .74rem; color: var(--muted); }

.fit__urteil { font-size: 1rem; margin-bottom: .9rem; }
.fit--passt .fit__urteil { color: #2f5d3a; }
.fit--knapp .fit__urteil, .fit--weit .fit__urteil { color: var(--ink-2); }
.fit--eng .fit__urteil { color: var(--oxblood); }

.fit__tabelle { width: 100%; border-collapse: collapse; }
.fit__tabelle th, .fit__tabelle td { text-align: left; padding: .5rem .6rem .5rem 0;
  border-bottom: 1px solid var(--line-2); font-weight: 400; color: var(--ink-2); vertical-align: baseline; }
.fit__tabelle th { color: var(--ink); white-space: nowrap; }
.fit__diff { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }
/* Die Herkunft der Zahl bleibt sichtbar: „56 cm flach gemessen" erklärt,
   warum am Teil 112 cm stehen. Ohne das wirkt die Rechnung willkürlich. */
.fit__flach { display: block; font-size: .72rem; color: var(--muted); }
.fit__zeile--eng .fit__diff { color: var(--oxblood); }
.fit__zeile--passt .fit__diff { color: #2f5d3a; }

/* Kurzurteil auf der Karte — nur eine Zeile, damit das Raster ruhig bleibt. */
.pc__fit { font-family: var(--sans); font-size: .72rem; letter-spacing: .04em; margin-top: .3rem; }
.pc__fit--passt { color: #2f5d3a; }
.pc__fit--knapp, .pc__fit--weit { color: var(--muted); }
.pc__fit--eng { color: var(--oxblood); opacity: .75; }
.auth__ok { color: var(--dark); font-size: 1.15rem; }

.account__bar { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap;
  border: 1px solid var(--line-2); padding: 1.2rem 1.5rem; background: var(--cream); }
.account__bar strong { font-family: var(--display); font-size: 1.35rem; display: block; }
.account__bar span { font-family: var(--sans); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

.order-card { border: 1px solid var(--line-2); padding: 1.2rem 1.4rem; margin-bottom: 1rem; background: var(--paper); }
.order-card__head { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-bottom: .7rem; }
.order-card__id { font-family: var(--sans); font-size: .68rem; letter-spacing: .06em; color: var(--muted); }
.order-card__items { color: var(--ink-2); font-size: .96rem; line-height: 1.6; }
.order-card__foot { display: flex; justify-content: space-between; align-items: baseline; margin-top: .9rem; padding-top: .8rem; border-top: 1px solid var(--line-2); }
.order-card__foot b { font-family: var(--display); font-size: 1.3rem; color: var(--dark-d); }

.order-card__status { font-family: var(--sans); font-size: .62rem; letter-spacing: .1em; text-transform: uppercase; padding: .4em .7em; border: 1px solid var(--line); white-space: nowrap; }
.status--paid { background: var(--dark); color: var(--paper); border-color: var(--dark); }
.status--pending { background: var(--sand); color: var(--dark-d); border-color: var(--sand); }
.status--failed { background: var(--wine); color: #fff; border-color: var(--wine); }
.status--refunded, .status--partially_refunded { background: var(--paper-2); color: var(--muted); }
.status--fulfilled { background: var(--dark); color: #fff; border-color: var(--dark); }
.status--canceled { background: var(--line); color: var(--muted); }

.ac-tabs { display: flex; gap: .5rem; flex-wrap: wrap; }
.ac-search { font-family: var(--body); font-size: 1rem; padding: .6em 1em; border: 1px solid var(--line); min-width: 220px; background: var(--paper); }
.ac-order { display: flex; justify-content: space-between; align-items: center; gap: 1rem; border: 1px solid var(--line-2); padding: 1rem 1.2rem; margin-bottom: .7rem; flex-wrap: wrap; }
.ac-order__main { display: flex; flex-direction: column; gap: .3rem; min-width: 0; flex: 1 1 260px; }
.ac-order__id { font-family: var(--sans); font-size: .66rem; letter-spacing: .06em; color: var(--muted); }
.ac-order__meta { font-family: var(--sans); font-size: .72rem; color: var(--muted); }
.ac-order__items { color: var(--ink-2); font-size: .92rem; }
.ac-order__side { display: flex; align-items: center; gap: .7rem; flex-wrap: wrap; }
.ac-order__side b { font-family: var(--display); font-size: 1.2rem; color: var(--dark-d); }
.ac-sel { font-family: var(--sans); font-size: .74rem; padding: .55em .7em; border: 1px solid var(--line); background: var(--paper); }
/* ---- Redaktionsbereich der Konsole ------------------------------------- */
.ac-hint { font-family: var(--sans); font-size: .82rem; color: var(--muted); margin-bottom: 1.2rem; }
.cgruppe { border: 1px solid var(--line-2); padding: 1rem 1.1rem; margin-bottom: .9rem; background: var(--paper); }
.cgruppe--art > summary { cursor: pointer; font-family: var(--display); font-size: 1.05rem; padding: .2rem 0; }
.cgruppe--art[open] > summary { margin-bottom: 1rem; border-bottom: 1px solid var(--line-2); padding-bottom: .7rem; }

.cfield { margin-bottom: .9rem; }
.cfield:last-child { margin-bottom: 0; }
.cfield label { display: flex; align-items: baseline; gap: .7rem; margin-bottom: .35rem; }
.cfield__label { font-family: var(--sans); font-size: .78rem; letter-spacing: .05em; color: var(--ink); }
/* Der Schlüssel steht sichtbar dabei: bei 446 Texten ist er die einzige
   verlässliche Auskunft darüber, welche Stelle der Seite man gerade ändert. */
.cfield__key { font-family: monospace; font-size: .7rem; color: var(--muted); }
.cfield input[type="text"], .cfield textarea, .cbild__form input {
  width: 100%; font: inherit; font-size: .9rem; padding: .55em .7em;
  border: 1px solid var(--line-2); background: var(--paper); resize: vertical;
}
.cfield input:focus-visible, .cfield textarea:focus-visible, .cbild__form input:focus-visible {
  outline: 2px solid var(--oxblood); outline-offset: 1px;
}
/* Abweichung vom Standard sichtbar machen — sonst weiß niemand, was
   überschrieben ist und was nur so aussieht wie der Originaltext. */
.cfield.is-geaendert > label::after,
.cbild__form.is-geaendert .cfield__label::after {
  content: "geändert"; margin-left: .5rem; font-family: var(--sans); font-size: .66rem;
  letter-spacing: .08em; text-transform: uppercase; color: var(--oxblood);
}
.cfield.is-geaendert input, .cfield.is-geaendert textarea { border-left: 2px solid var(--oxblood); }
.cfield__reset { margin-top: .4rem; background: none; border: 0; padding: 0; cursor: pointer;
  font-family: var(--sans); font-size: .74rem; color: var(--muted); text-decoration: underline; }
.cfield__reset:hover { color: var(--oxblood); }

.cbild { display: flex; gap: 1.2rem; align-items: flex-start; }
.cbild__vorschau { flex: 0 0 108px; aspect-ratio: 4/5; background: var(--paper-2);
  background-size: cover; background-position: center; border: 1px solid var(--line-2); }
.cbild__form { flex: 1; display: flex; flex-direction: column; gap: .4rem; }
.cbild__upload { align-self: flex-start; cursor: pointer; font-family: var(--sans); font-size: .78rem;
  padding: .45em 1em; border: 1px solid var(--line-2); background: var(--paper-2); }
.cbild__upload:hover { border-color: var(--ink-2); }
@media (max-width: 600px) { .cbild { flex-direction: column; } .cbild__vorschau { flex-basis: auto; width: 108px; } }

.ac-table { width: 100%; border-collapse: collapse; }
.ac-table th, .ac-table td { text-align: left; padding: .75em .8em; border-bottom: 1px solid var(--line-2); font-size: .92rem; }
.ac-table th { font-family: var(--sans); font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }

/* =========================================================================
   MOBILE-OPTIMIERUNG — Smartphones (320–480 px)
   Getestet mit echten Mobil-Viewports (360/375/430 px): behebt horizontale
   Überläufe, zu kleine Feinlesetexte und zu breite Header-Aktionen.
   ========================================================================= */

/* Sicherheitsnetz gegen versehentliches horizontales Scrollen. `clip` erzeugt
   — anders als `hidden` — keinen Scroll-Container: Sticky-Header, fixe
   Overlays (Warenkorb, Vollbild-Menü) und Scroll-Effekte bleiben unverändert. */
body { overflow-x: clip; }

/* Sehr lange Wörter (z. B. „Geschäftsbedingungen") dürfen umbrechen, statt
   die Seite zu sprengen. Silbentrennung nur auf kleinen Screens (lang="de"). */
h1, h2, h3 { overflow-wrap: break-word; }
@media (max-width: 680px) {
  h1, h2 { hyphens: auto; }
}

/* Admin-Artikelliste: die Mitte darf unter die Mindestinhaltsbreite schrumpfen
   (minmax(0,1fr)), sonst schiebt sie die Aktionsbuttons aus dem Viewport. */
.admin__item { grid-template-columns: 46px minmax(0, 1fr) auto; }

/* Formularspalten und -felder dürfen schrumpfen: Ein <select> hat als
   Mindestbreite seine längste <option> — ohne min-width:0 sprengt er auf
   dem Handy das gesamte Grid (u. a. das Admin-Formular). */
.field, .admin__panel, .admin__grid > *, .admin__form,
.field input, .field select, .field textarea, .field button { min-width: 0; }
.field select, .field input, .field textarea { max-width: 100%; }

/* Feinlesetext auf mindestens ~11 px heben (Lesbarkeit auf kleinen Screens).
   Zahl-Badges (Warenkorb-Zähler etc.) bleiben bewusst klein. */
.cart__cat, .cart__remove, .co-line__meta, .pc__weave, .pdp__tag,
.cond-step, .capsule__kindtag, .pay span, .pc__tag,
.img-cap, .mag-head__meta span { font-size: .68rem; }
.capsule__chip b { font-size: .66rem; }
.admin__hero-badge { font-size: .62rem; }
.order-card__status, .pay-method__badge, .pdp__zoom-btn,
.hero__cue span, .cart-count { font-size: .66rem; }
.pdp__trust span, .hh-col-card__meta, .admin__item-info span,
.ac-order__id, .ac-table th { font-size: .68rem; }

@media (max-width: 680px) {
  /* Header der Admin-Seiten: Buttons kompakter und umbrechend — der Header
     wächst nötigenfalls in die Höhe statt in die Breite. */
  body[data-admin] .header__inner { gap: .5rem .9rem; }
  body[data-admin] .header__actions { flex-wrap: wrap; gap: .5rem; justify-content: flex-end; }
  body[data-admin] .header__actions .btn--sm { padding: .55em .8em; font-size: .68rem; }

  /* Admin-Liste: Aktionsbuttons bei Enge unter die Artikelzeile legen */
  .admin__item { grid-template-columns: 46px minmax(0, 1fr); }
  .admin__item-actions { grid-column: 1 / -1; justify-content: flex-end; }

  /* Admin-Tabellen (Bestellungen/Nutzer): waagerecht wischen statt überlaufen */
  .ac-table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .ac-table > tbody, .ac-table > thead { display: table; width: 100%; min-width: 540px; }

  /* Suchfeld der Admin-Konsole darf die Zeile nicht sprengen */
  .ac-search { min-width: 0; flex: 1 1 100%; }
}


/* =========================================================================
   Service-Seite (service.html)
   ========================================================================= */
.svc-toc {
  max-width: 40rem;
  margin: 0 auto clamp(2rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.8rem;
}
.svc-toc a {
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: .25rem;
}
.svc-toc a:hover { color: var(--accent); }
.article-body h3[id] { scroll-margin-top: 7rem; }
.article-body p a { text-decoration: underline; text-underline-offset: .18em; text-decoration-color: var(--line-2); }
.article-body p a:hover { text-decoration-color: var(--accent); }
.article-body .btn { text-decoration: none; margin-top: .4rem; }

/* =========================================================================
   USP-Leiste (Startseite)
   ========================================================================= */
.usp-strip {
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
}
.usp-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  padding-block: clamp(2.2rem, 5vw, 3.4rem);
}
.usp-strip__item { text-align: center; }
.usp-strip__item b {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -.01em;
  margin-bottom: .4rem;
}
.usp-strip__item span {
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-2);
}
@media (max-width: 680px) {
  .usp-strip__grid { grid-template-columns: repeat(2, 1fr); gap: 1.6rem 1rem; }
}


/* =========================================================================
   Admin: Mehrfach-Fotos
   ========================================================================= */
.photo-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: .6rem; margin-bottom: .9rem; }
.photo-list:empty { display: none; }
.photo-item { position: relative; aspect-ratio: 3/4; background-size: cover; background-position: center; border: 1px solid var(--line); }
.photo-item--main::after {
  content: "Hauptbild";
  position: absolute; left: 0; right: 0; bottom: 0;
  font-size: .58rem; letter-spacing: .12em; text-transform: uppercase;
  background: rgba(28,26,23,.78); color: #fff; text-align: center; padding: .22rem 0;
}
.photo-item__bar { position: absolute; top: 0; right: 0; display: flex; }
.photo-item__bar button {
  width: 1.55rem; height: 1.55rem; border: none; cursor: pointer;
  background: rgba(255,255,255,.92); font-size: .8rem; line-height: 1;
}
.photo-item__bar button:hover { background: var(--accent); color: #fff; }
