/* ══════════════════════════════════════════════════════════════
   VINTIMILLA — Prototyp Neue Webseite
   Palette: Elfenbein · Espresso · Panama-Gold
   ══════════════════════════════════════════════════════════════ */
:root {
  --ivory: #f6f3ec;
  --ivory-2: #efeadf;
  --paper: #fbf9f4;
  --ink: #211c15;
  --ink-soft: #5c544a;
  --gold: #b3873c;
  --gold-deep: #8a6a2e;   /* dunkleres Gold für kleinen Text (WCAG-Kontrast) */
  --gold-soft: #d9c39a;
  --dark: #191512;
  --dark-2: #221d18;
  --line: #e2dccd;
  --radius: 18px;
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Inter", -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* WICHTIG: KEIN overflow-x auf <html> — das bricht position:sticky (Flechtvideo-Bühne)!
   Gegen seitliches Überlaufen reichen body{overflow-x:hidden} + .hero{overflow:hidden}. */
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--ivory);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--gold); color: #fff; }

/* ── Barrierefreiheit: sichtbare Fokus-Ringe (Tastatur-Navigation) ── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}
:focus:not(:focus-visible) { outline: none; }
button, a, input, select, textarea { font-family: inherit; }

/* Fixe Navigation: Anker springen nicht mehr unter die Leiste */
section[id], header[id], footer[id] { scroll-margin-top: 84px; }

/* „Zum Inhalt springen" — für Tastatur-/Screenreader-Nutzer */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 300; background: var(--ink); color: var(--ivory);
  padding: 12px 20px; border-radius: 0 0 10px 0; font-size: 14px; font-weight: 600; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

/* Sprachumschalter DE/EN */
.lang-toggle { background: none; border: 1.5px solid var(--line); border-radius: 100px; padding: 6px 13px;
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: .05em; color: var(--ink-soft);
  cursor: pointer; transition: border-color .2s, color .2s; }
.lang-toggle:hover { border-color: var(--ink); }
.lang-toggle [data-lang] { opacity: .38; transition: opacity .2s; }
.lang-toggle [data-lang].on { opacity: 1; color: var(--gold-deep); }

/* ── Icons (SVG statt Emoji) ────────────────────────────────── */
.svg-ic { width: 1em; height: 1em; fill: none; stroke: currentColor;
  stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.badge-ic { width: 15px; height: 15px; fill: var(--gold); stroke: none; }
/* Marquee-Trenner als CSS-Raute (kein Glyph) */
.sep { display: inline-block; width: 6px; height: 6px; margin: 0 2px 1px;
  background: var(--gold-soft); transform: rotate(45deg); vertical-align: middle; }

/* ── Navigation ─────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 5vw;
  transition: background .35s, box-shadow .35s, padding .35s;
}
nav.scrolled {
  background: rgba(246, 243, 236, .88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(0,0,0,.06);
  padding: 12px 5vw;
}
.brand { font-family: var(--font-display); font-weight: 600; font-size: 22px; letter-spacing: .24em; }
.brand small { display: block; font-family: var(--font-body); font-size: 9px; letter-spacing: .42em; color: var(--gold-deep); font-weight: 600; margin-top: 1px; }
.nav-links { display: flex; gap: 34px; align-items: center; font-size: 13.5px; font-weight: 500; letter-spacing: .06em; }
.nav-links a { position: relative; padding: 4px 0; color: var(--ink-soft); transition: color .2s; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: var(--gold); transition: width .25s;
}
.nav-links a:hover::after { width: 100%; }
.btn-b2b {
  border: 1.5px solid var(--ink); border-radius: 100px; padding: 9px 22px !important;
  font-weight: 600; color: var(--ink) !important; transition: all .25s !important;
}
.btn-b2b:hover { background: var(--ink); color: var(--ivory) !important; }
.btn-b2b::after { display: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: grid; grid-template-columns: 1.05fr .95fr;
  align-items: center; gap: 2vw;
  padding: 120px 5vw 40px;
  position: relative;
  overflow: hidden;   /* Hintergrund-Wort darf die Seite nicht verbreitern (mobil!) */
}
.hero-bg-word {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(120px, 22vw, 340px);
  color: rgba(33, 28, 21, .045);
  letter-spacing: .04em; white-space: nowrap; pointer-events: none;
  user-select: none;
}
.hero-copy h1 {
  font-family: var(--font-display); font-weight: 570;
  font-size: clamp(44px, 5.6vw, 84px);
  line-height: 1.04; letter-spacing: -.01em;
  margin: 22px 0 26px;
}
.hero-copy h1 em { font-style: italic; color: var(--gold); }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: .34em; text-transform: uppercase;
  color: var(--ink-soft);
}
.eyebrow::before { content: ""; width: 34px; height: 1.5px; background: var(--gold); }
.hero-copy p.lead { font-size: 17px; color: var(--ink-soft); max-width: 46ch; margin-bottom: 38px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 32px; border-radius: 100px;
  font-size: 14px; font-weight: 600; letter-spacing: .04em;
  transition: transform .25s, box-shadow .25s, background .25s;
  cursor: pointer; border: none; font-family: var(--font-body);
}
.btn-primary { background: var(--ink); color: var(--ivory); box-shadow: 0 14px 30px -12px rgba(33,28,21,.45); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(33,28,21,.5); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--ink); }

.hero-stage { position: relative; display: grid; place-items: center; perspective: 1200px; }
.hero-hat-wrap { position: relative; width: min(46vw, 620px); transform-style: preserve-3d; will-change: transform; }
.hero-hat { width: 100%; filter: drop-shadow(0 40px 50px rgba(33,28,21,.22)); animation: heroFloat 7s ease-in-out infinite; }
@keyframes heroFloat { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-16px) } }
/* Weicher, langsam pulsierender Gold-Schein hinter dem Hut (seriös, dezent) */
.hero-hat-wrap::before {
  content: ""; position: absolute; inset: -16% -14% -24%; z-index: -1; border-radius: 50%;
  background: radial-gradient(58% 58% at 50% 44%, rgba(179,135,60,.17), transparent 70%);
  filter: blur(8px); animation: glowPulse 8s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100% { opacity: .65; transform: scale(1) } 50% { opacity: 1; transform: scale(1.07) } }

/* Sanfte Lade-Einblendung des Hero-Textes */
.hero-copy > * { animation: fadeUp .85s cubic-bezier(.2,.7,.3,1) both; }
.hero-copy .eyebrow { animation-delay: .05s; }
.hero-copy h1 { animation-delay: .16s; }
.hero-copy p.lead { animation-delay: .3s; }
.hero-copy .hero-ctas { animation-delay: .42s; }
.hero-stage { animation: fadeIn 1.1s ease .1s both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px) } to { opacity: 1; transform: none } }
@keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }
.hero-disc {
  position: absolute; inset: auto 8% -6% 8%; height: 46px; border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(33,28,21,.16), transparent 70%);
}
.hero-badge {
  position: absolute; top: 6%; right: 2%;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 100px;
  padding: 10px 20px; font-size: 12px; font-weight: 600; letter-spacing: .08em;
  box-shadow: 0 12px 30px -14px rgba(33,28,21,.3);
  animation: heroFloat 9s ease-in-out infinite reverse;
}
.hero-scroll {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  font-size: 10.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--ink-soft);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll::after { content: ""; width: 1.5px; height: 38px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0% { transform: scaleY(0); transform-origin: top } 50% { transform: scaleY(1); transform-origin: top } 100% { transform: scaleY(0); transform-origin: bottom } }

/* ── Marquee ────────────────────────────────────────────────── */
.marquee {
  background: var(--dark); color: var(--ivory);
  overflow: hidden; padding: 16px 0; white-space: nowrap;
}
.marquee-track { display: inline-flex; gap: 60px; animation: marquee 32s linear infinite; padding-right: 60px; }
.marquee span { font-size: 13px; letter-spacing: .3em; text-transform: uppercase; opacity: .85; }
.marquee b { color: var(--gold-soft); font-weight: 400; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ── Sections ───────────────────────────────────────────────── */
section { padding: 110px 5vw; }
.section-head { max-width: 780px; margin-bottom: 60px; }
.section-head h2 { font-family: var(--font-display); font-weight: 570; font-size: clamp(34px, 3.6vw, 56px); line-height: 1.1; margin: 18px 0 16px; }
.section-head p { color: var(--ink-soft); font-size: 16.5px; max-width: 56ch; }

/* ── Kollektion ─────────────────────────────────────────────── */
#kollektion { background: var(--paper); }
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 42px; }
.chip {
  padding: 9px 20px; border-radius: 100px; border: 1.5px solid var(--line);
  background: transparent; font-size: 13px; font-weight: 500; cursor: pointer;
  font-family: var(--font-body); letter-spacing: .04em; transition: all .2s; color: var(--ink-soft);
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.active { background: var(--ink); border-color: var(--ink); color: var(--ivory); }
.grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px;
}
.card {
  background: var(--ivory); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px 20px; cursor: pointer; position: relative; overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s, border-color .35s;
}
.card:hover { transform: translateY(-8px); box-shadow: 0 30px 50px -22px rgba(33,28,21,.25); border-color: var(--gold-soft); }
.card img {
  aspect-ratio: 4/3; object-fit: contain; transition: transform .5s cubic-bezier(.2,.7,.3,1);
  /* neutrales Studio-Grau: lässt die grauen Freisteller-Reste der Fotos verschwinden */
  background: linear-gradient(165deg, #ecebe9, #dcdbd8);
  border-radius: 12px; padding: 10px;
}
.card:hover img { transform: scale(1.06) rotate(-1.2deg); }
.card .nr { font-family: var(--font-display); font-size: 19px; font-weight: 600; margin-top: 14px; }
.card .farben { color: var(--ink-soft); font-size: 12.5px; letter-spacing: .05em; text-transform: capitalize; }
.card .tag {
  position: absolute; top: 14px; left: 14px; background: var(--dark); color: var(--ivory);
  border-radius: 100px; padding: 4px 12px; font-size: 10.5px; letter-spacing: .14em; font-weight: 600;
}
.grid-note { text-align: center; margin-top: 44px; color: var(--ink-soft); font-size: 14px; }
/* CTA unter der Kollektions-Vorschau (Startseite) */
.koll-cta { display: flex; flex-direction: column; align-items: center; gap: 12px; margin-top: 48px; }
.koll-cta-sub { font-size: 12.5px; color: var(--ink-soft); letter-spacing: .06em; }

/* ── Showroom ───────────────────────────────────────────────── */
#showroom { background: var(--dark); color: var(--ivory); position: relative; overflow: hidden; }
#showroom .section-head h2, #showroom .eyebrow { color: var(--ivory); }
#showroom .eyebrow::before { background: var(--gold); }
#showroom .section-head p { color: #b6ac9e; }
.showroom-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: start; }
.stage-card {
  background: linear-gradient(160deg, #eeedeb, #d9d8d5);
  border-radius: 26px; position: relative; overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0,0,0,.55);
}
.stage-card canvas { width: 100%; height: auto; display: block; }
.stage-label {
  position: absolute; left: 22px; bottom: 18px; color: var(--ink);
  font-size: 13px; font-weight: 600; letter-spacing: .06em;
  background: rgba(251,249,244,.8); backdrop-filter: blur(6px);
  border-radius: 100px; padding: 7px 16px;
}
.stage-hint { position: absolute; right: 22px; bottom: 18px; color: var(--ink-soft); font-size: 11px; letter-spacing: .08em; }
.model-row { display: flex; gap: 12px; margin-top: 22px; flex-wrap: wrap; }
.model-thumb {
  width: 86px; background: var(--dark-2); border: 1.5px solid #3a332b; border-radius: 14px;
  padding: 8px; cursor: pointer; transition: all .25s;
}
.model-thumb img { aspect-ratio: 4/3; object-fit: contain; }
.model-thumb.active, .model-thumb:hover { border-color: var(--gold); background: #2a241d; }
.model-thumb .t { font-size: 10px; text-align: center; color: #b6ac9e; margin-top: 4px; letter-spacing: .06em; }

.band-panel h3 { font-family: var(--font-display); font-size: 26px; font-weight: 570; margin-bottom: 8px; }
.band-panel .sub { color: #b6ac9e; font-size: 14px; margin-bottom: 26px; }
.band-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(64px, 1fr)); gap: 14px; }
.band-swatch {
  aspect-ratio: 1; border-radius: 50%; cursor: pointer; position: relative;
  background-size: 340%; background-position: center 40%;
  border: 2.5px solid transparent; outline: 1.5px solid #3a332b; outline-offset: 3px;
  transition: transform .2s, outline-color .2s;
}
.band-swatch:hover { transform: scale(1.12); outline-color: var(--gold-soft); }
.band-swatch.active { outline-color: var(--gold); outline-width: 2.5px; transform: scale(1.08); }
.band-swatch .bn {
  position: absolute; inset: auto -4px -8px auto; background: var(--gold); color: var(--dark);
  font-size: 9px; font-weight: 700; border-radius: 100px; padding: 2px 7px; letter-spacing: .04em;
  opacity: 0; transition: opacity .2s;
}
.band-swatch:hover .bn, .band-swatch.active .bn { opacity: 1; }
.band-info {
  margin-top: 26px; padding: 18px 22px; border: 1px solid #3a332b; border-radius: 16px;
  display: flex; align-items: center; gap: 16px; background: var(--dark-2);
}
.band-info .dot { width: 44px; height: 44px; border-radius: 50%; background-size: 340%; background-position: center 40%; flex: none; outline: 1px solid #4a4238; }
.band-info b { display: block; font-size: 15px; }
.band-info span { color: #b6ac9e; font-size: 12.5px; }
.showroom-note { margin-top: 34px; font-size: 12.5px; color: #8d8271; line-height: 1.7; }

/* ── Visor-Farben ───────────────────────────────────────────── */
#visor { background: var(--ivory-2); }
.visor-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 18px; }
.visor-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; padding: 12px; transition: transform .3s; }
.visor-item:hover { transform: translateY(-6px) rotate(-1deg); }

/* ── Story ──────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 20px; }
.story-step { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 38px 30px; position: relative; }
.story-step .num { font-family: var(--font-display); font-size: 54px; font-weight: 600; color: var(--gold-soft); line-height: 1; }
.story-step h3 { font-family: var(--font-display); font-size: 22px; margin: 16px 0 10px; font-weight: 600; }
.story-step p { color: var(--ink-soft); font-size: 14.5px; }
/* Statistik auf echter Toquilla-Geflecht-Textur (KI-generiert, markengetreu) */
.stats-row { display: flex; gap: 60px; margin-top: 70px; flex-wrap: wrap;
  padding: 44px 48px; border-radius: 22px; border: 1px solid var(--line);
  background: linear-gradient(rgba(246,243,236,.86), rgba(246,243,236,.8)),
              url("assets/toquilla-textur.webp") center/cover;
  box-shadow: 0 26px 50px -30px rgba(33,28,21,.28); }
.stat b { font-family: var(--font-display); font-size: clamp(38px, 4vw, 58px); font-weight: 600; display: block; line-height: 1; }
.stat span { color: var(--ink-soft); font-size: 13px; letter-spacing: .1em; text-transform: uppercase; }

/* ── B2B ────────────────────────────────────────────────────── */
#b2b { background: var(--dark); color: var(--ivory); }
.b2b-wrap { display: grid; grid-template-columns: 1.1fr .9fr; gap: 60px; align-items: center; }
#b2b h2 { font-family: var(--font-display); font-size: clamp(32px, 3.4vw, 52px); font-weight: 570; line-height: 1.12; margin: 18px 0 20px; }
#b2b .eyebrow { color: #b6ac9e; }
#b2b p { color: #b6ac9e; max-width: 52ch; }
.b2b-list { list-style: none; margin-top: 28px; display: grid; gap: 14px; }
.b2b-list li { display: flex; gap: 14px; align-items: baseline; font-size: 15px; }
.b2b-list li::before { content: "→"; color: var(--gold); font-weight: 700; }
.b2b-card {
  background: var(--dark-2); border: 1px solid #3a332b; border-radius: 22px; padding: 44px 40px;
  text-align: center;
}
.b2b-card .lock { color: var(--gold); line-height: 0; margin-bottom: 8px; }
.b2b-card .lock svg { width: 38px; height: 38px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.b2b-card h3 { font-family: var(--font-display); font-size: 24px; margin: 14px 0 8px; }
.b2b-card p { font-size: 13.5px !important; margin: 0 auto 26px; }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { transform: translateY(-2px); }

/* ── Händler-Anfrage (B2B-Kontaktformular) ──────────────────── */
.contact-wrap { display: grid; grid-template-columns: 1fr .95fr; gap: 60px; align-items: start; max-width: 1160px; margin: 0 auto; }
.contact-wrap h2 { font-family: var(--font-display); font-weight: 570; font-size: clamp(30px, 3.2vw, 48px); line-height: 1.12; margin: 16px 0 16px; }
.contact-wrap > div > p { color: var(--ink-soft); max-width: 48ch; }
.contact-alt { margin-top: 18px; font-size: 14.5px; }
.contact-alt a { color: var(--gold-deep); font-weight: 600; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: 22px; padding: 36px 34px;
  box-shadow: 0 30px 60px -30px rgba(33,28,21,.25); display: flex; flex-direction: column; gap: 16px; }
.cf-row { display: flex; flex-direction: column; gap: 6px; }
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-card label { font-size: 12.5px; font-weight: 600; letter-spacing: .06em; color: var(--ink-soft); }
.contact-card input, .contact-card textarea {
  padding: 12px 16px; border-radius: 12px; border: 1.5px solid var(--line); background: #fff;
  font-family: var(--font-body); font-size: 15px; color: var(--ink); transition: border-color .2s; min-height: 44px; }
.contact-card textarea { resize: vertical; }
.contact-card input:focus, .contact-card textarea:focus { border-color: var(--gold); outline: none; }
.cf-hp { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }
.cf-note { font-size: 12px; color: var(--ink-soft); }
.cf-note a { text-decoration: underline; text-underline-offset: 2px; }
.cf-status { font-size: 14px; font-weight: 600; min-height: 20px; }
.cf-status.ok { color: #2f7d43; }
.cf-status.err { color: #b3392f; }
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } .cf-grid { grid-template-columns: 1fr; } }

/* ── Kontakt / Footer ───────────────────────────────────────── */
footer { background: var(--ivory); padding: 90px 5vw 40px; border-top: 1px solid var(--line); }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 50px; margin-bottom: 70px; }
.foot-grid h4 { font-size: 12px; letter-spacing: .24em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.foot-grid p, .foot-grid a { color: var(--ink-soft); font-size: 14.5px; display: block; margin-bottom: 6px; }
.foot-grid a:hover { color: var(--ink); }
.foot-logo { width: 108px; height: auto; margin-bottom: 16px; }
.foot-brand { font-family: var(--font-display); font-size: 30px; letter-spacing: .2em; margin-bottom: 12px; }
.foot-bottom { display: flex; justify-content: space-between; padding-top: 26px; border-top: 1px solid var(--line); font-size: 12px; color: var(--ink-soft); flex-wrap: wrap; gap: 10px; }

/* ── Magazin-Teaser ─────────────────────────────────────────── */
#magazin-teaser { background: var(--paper); }
.mag-teaser { display: grid; grid-template-columns: 1.15fr .85fr; gap: 54px; align-items: center; max-width: 1100px; margin: 0 auto; }
.mag-cover { position: relative; display: block; border-radius: 14px; overflow: hidden;
  box-shadow: 0 30px 60px -26px rgba(33,28,21,.4); border: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.2,.7,.3,1), box-shadow .4s; }
.mag-cover:hover { transform: translateY(-4px) rotate(-.6deg); box-shadow: 0 40px 70px -24px rgba(33,28,21,.5); }
.mag-cover img { width: 100%; display: block; aspect-ratio: 1500/1070; object-fit: cover; }
.mag-flip { position: absolute; right: 14px; bottom: 14px; background: var(--ink); color: var(--ivory);
  font-size: 12.5px; font-weight: 600; letter-spacing: .04em; padding: 8px 16px; border-radius: 100px; }
.mag-copy h2 { font-family: var(--font-display); font-weight: 560; font-size: clamp(28px,3.2vw,46px); line-height: 1.1; margin: 14px 0 14px; }
.mag-copy h2 em { color: var(--gold); }
.mag-copy p { color: var(--ink-soft); font-size: 16px; max-width: 46ch; margin-bottom: 30px; }
@media (max-width: 820px) { .mag-teaser { grid-template-columns: 1fr; gap: 28px; } }

/* ── Rechtstexte / Unterseiten ──────────────────────────────── */
.legal { max-width: 820px; margin: 0 auto; padding: 140px 5vw 90px; }
.legal .eyebrow { margin-bottom: 12px; }
.legal h1 { font-family: var(--font-display); font-weight: 560; font-size: clamp(32px,4vw,48px); line-height: 1.1; margin-bottom: 26px; }
.legal h2 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 34px 0 10px; }
.legal h3 { font-size: 15px; font-weight: 600; margin: 20px 0 6px; }
.legal p, .legal li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.7; margin-bottom: 12px; }
.legal ul { padding-left: 20px; margin-bottom: 12px; }
.legal a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--ink); }
.legal .card-block { background: var(--paper); border: 1px solid var(--line); border-radius: 14px; padding: 22px 26px; margin: 8px 0 20px; }
.legal .back { display: inline-block; margin-top: 40px; color: var(--gold-deep); font-weight: 600; }

/* ── Lifestyle (Editorial-Split) ────────────────────────────── */
.lifestyle { display: grid; grid-template-columns: 1fr 1.08fr; min-height: 90vh; background: var(--dark); color: var(--ivory); }
.lifestyle-inner { display: flex; flex-direction: column; justify-content: center; padding: 9vh 6vw; }
.lifestyle-inner h2 { font-family: var(--font-display); font-weight: 560; font-size: clamp(28px, 3.6vw, 56px); line-height: 1.1; margin: 16px 0 18px; }
.lifestyle-inner h2 em { font-style: italic; color: var(--gold-soft); }
.lifestyle-inner p { font-size: 16.5px; max-width: 44ch; color: rgba(246,243,236,.82); }
/* Bild ist ein Button (anklickbar → Lightbox); Reset + Parallax-Reserve */
.lifestyle-img { position: relative; overflow: hidden; border: 0; padding: 0; margin: 0;
  background: var(--dark-2); color: inherit; font: inherit; cursor: zoom-in; display: block; width: 100%; }
.lifestyle-img img { position: absolute; top: -9%; left: 0; width: 100%; height: 118%;
  object-fit: cover; object-position: center 46%; will-change: transform; }
.zoom-badge { position: absolute; right: 20px; bottom: 20px; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px; padding: 10px 17px; border-radius: 100px;
  background: rgba(20,16,13,.5); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(246,243,236,.28); color: var(--ivory);
  font-size: 12px; font-weight: 600; letter-spacing: .07em;
  opacity: 0; transform: translateY(10px); transition: opacity .35s, transform .35s; }
.lifestyle:hover .zoom-badge, .lifestyle-img:focus-visible .zoom-badge { opacity: 1; transform: none; }
.zoom-badge svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 820px) {
  .lifestyle { grid-template-columns: 1fr; }
  .lifestyle-img { min-height: 66vh; order: -1; }
  .lifestyle-inner { padding: 8vh 7vw; text-align: center; align-items: center; }
  .zoom-badge { opacity: 1; transform: none; }
}

/* ── Lightbox (Bild vergrößern) ─────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 400; display: grid; place-items: center;
  padding: 6vh 5vw; background: rgba(18,14,11,.9); backdrop-filter: blur(9px); -webkit-backdrop-filter: blur(9px);
  opacity: 0; transition: opacity .32s ease; }
.lightbox[hidden] { display: none; }
.lightbox.show { opacity: 1; }
.lb-figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.lb-img { max-width: 92vw; max-height: 82vh; border-radius: 14px; background: #ecebe9;
  box-shadow: 0 50px 100px -24px rgba(0,0,0,.7);
  transform: scale(.92); opacity: .4; transition: transform .4s cubic-bezier(.2,.7,.3,1), opacity .4s; }
.lightbox.show .lb-img { transform: scale(1); opacity: 1; }
.lb-cap { color: rgba(246,243,236,.72); font-size: 13px; letter-spacing: .04em; text-align: center; max-width: 60ch; }
.lb-close { position: fixed; top: 22px; right: 26px; width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid rgba(246,243,236,.32); background: rgba(25,21,18,.5); color: var(--ivory);
  cursor: pointer; display: grid; place-items: center; transition: background .2s, border-color .2s, transform .2s; }
.lb-close:hover { background: rgba(25,21,18,.9); border-color: var(--gold); transform: rotate(90deg); }
.lb-close svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; }

/* Kollektions- & Visor-Bilder: als vergrößerbar kennzeichnen */
.card img, .visor-item img { cursor: zoom-in; }

/* ── Scroll-Reveal ──────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .7s cubic-bezier(.2,.7,.3,1), transform .7s cubic-bezier(.2,.7,.3,1); }
.reveal.on { opacity: 1; transform: none; }
/* Gestaffelte Einblendung in Gruppen (Skill-Empfehlung: 30–60 ms Versatz) */
.story-grid .reveal:nth-child(2), .stats-row .reveal:nth-child(2), .foot-grid .reveal:nth-child(2) { transition-delay: .09s; }
.story-grid .reveal:nth-child(3), .stats-row .reveal:nth-child(3), .foot-grid .reveal:nth-child(3) { transition-delay: .18s; }
.stats-row .reveal:nth-child(4) { transition-delay: .27s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ── Mobiles Menü (Hamburger) ───────────────────────────────── */
.nav-burger { display: none; width: 44px; height: 44px; border: 1.5px solid var(--line);
  border-radius: 12px; background: var(--paper); color: var(--ink); cursor: pointer;
  place-items: center; padding: 0; }
.nav-burger svg { width: 22px; height: 22px; fill: none; stroke: currentColor;
  stroke-width: 1.8; stroke-linecap: round; }
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: rgba(25,21,18,.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  display: grid; place-items: center; opacity: 0; transition: opacity .3s; }
/* WICHTIG: display:grid überschreibt sonst das [hidden]-Verhalten → das unsichtbare
   Overlay lag als Klick-Schild über der GANZEN Seite (Impressum & Co. nicht klickbar)! */
.mobile-menu[hidden] { display: none; }
.mobile-menu.show { opacity: 1; }
/* inneres <nav> vom globalen fixed-Nav-Styling lösen */
.mobile-menu nav { position: static; inset: auto; padding: 0; background: none; box-shadow: none;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  gap: 8px; text-align: center; }
.mobile-menu a { font-family: var(--font-display); font-size: 30px; font-weight: 570;
  color: var(--ivory); padding: 12px 30px; border-radius: 14px;
  opacity: 0; transform: translateY(14px); transition: opacity .4s, transform .4s, color .2s; }
.mobile-menu.show a { opacity: 1; transform: none; }
.mobile-menu a:nth-child(2) { transition-delay: .05s; }
.mobile-menu a:nth-child(3) { transition-delay: .1s; }
.mobile-menu a:nth-child(4) { transition-delay: .15s; }
.mobile-menu a:nth-child(5) { transition-delay: .2s; }
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu .mm-b2b { border: 1.5px solid var(--gold); color: var(--gold-soft);
  border-radius: 100px; margin-top: 16px; font-size: 22px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; padding-top: 110px; text-align: center; }
  .hero-stage { order: -1; }
  .hero-hat-wrap { width: min(78vw, 480px); }
  .hero-copy p.lead { margin: 0 auto 30px; }
  .hero-ctas { justify-content: center; }
  .eyebrow { justify-content: center; }
  .nav-links a { display: none; }          /* Links wandern ins mobile Menü */
  .nav-burger { display: grid; }
  .hero-scroll { display: none; }          /* kollidiert mobil mit den CTAs */
  .nav-links { gap: 10px; }
  .lang-toggle { min-height: 44px; padding: 8px 14px; }
  .chip { padding: 11px 20px; min-height: 44px; }
  .showroom-grid, .b2b-wrap { grid-template-columns: 1fr; }
  .story-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-row { padding: 30px 26px; gap: 26px 34px; }
  .mag-teaser { gap: 30px; }
  .contact-card { padding: 26px 20px; }
  section { padding: 80px 6vw; }
}

/* ── Barrierefreiheits-Helfer (a11y.js) ───────────────────────── */
/* Wirkungs-Klassen (werden von a11y.js auf <html> gesetzt) */
html.a11y-font1 { font-size: 112.5%; }
html.a11y-font2 { font-size: 125%; }
html.a11y-links a { text-decoration: underline; text-underline-offset: 2px; }
html.a11y-contrast { --ink-soft: #38322a; --gold: #8a6a2e; --line: #b3a888; }
html.a11y-contrast body { color: #130f0a; }
html.a11y-contrast a:not(.btn):not(.brand):not(.btn-b2b) { text-decoration: underline; }
html.a11y-contrast :focus-visible { outline: 3px solid #7a5d28; outline-offset: 2px; }
html.a11y-motion *, html.a11y-motion *::before, html.a11y-motion *::after {
  animation-duration: .001ms !important; animation-iteration-count: 1 !important;
  transition-duration: .001ms !important; scroll-behavior: auto !important;
}

/* Schwebender Button unten links + Menü */
.a11y-fab {
  position: fixed; left: 18px; bottom: 18px; z-index: 80;
  width: 52px; height: 52px; border-radius: 50%; border: none; cursor: pointer;
  background: var(--gold); color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.45); transition: transform .15s, background .15s;
}
.a11y-fab:hover { transform: translateY(-2px); background: var(--gold-deep); }
.a11y-fab:focus-visible { outline: 3px solid var(--ink); outline-offset: 3px; }
.a11y-panel {
  position: fixed; left: 18px; bottom: 80px; z-index: 81;
  width: 272px; max-width: calc(100vw - 36px);
  background: var(--paper); color: var(--ink); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px; box-shadow: 0 24px 60px -20px rgba(0,0,0,.5);
}
.a11y-title { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 6px; }
.a11y-row { display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 9px 0; border-top: 1px solid var(--line); font-size: 15px; }
.a11y-row:first-of-type { border-top: none; }
.a11y-seg { display: inline-flex; align-items: center; gap: 8px; }
.a11y-seg button { width: 34px; height: 34px; border: 1px solid var(--line); background: #fff;
  border-radius: 9px; cursor: pointer; font-weight: 700; color: var(--ink); }
.a11y-seg b { min-width: 14px; text-align: center; }
.a11y-toggle { width: 46px; height: 27px; border-radius: 20px; border: none; background: #cfc7b5;
  position: relative; cursor: pointer; transition: background .15s; flex: none; }
.a11y-toggle[aria-checked="true"] { background: var(--gold); }
.a11y-toggle i { position: absolute; top: 3px; left: 3px; width: 21px; height: 21px;
  border-radius: 50%; background: #fff; transition: left .15s; }
.a11y-toggle[aria-checked="true"] i { left: 22px; }
.a11y-reset { margin-top: 12px; width: 100%; padding: 9px; border: 1px solid var(--line);
  background: #fff; border-radius: 10px; cursor: pointer; font-weight: 600; color: var(--ink); }
.a11y-seg button:focus-visible, .a11y-toggle:focus-visible,
.a11y-reset:focus-visible { outline: 3px solid var(--gold-deep); outline-offset: 2px; }
@media (max-width: 520px) { .a11y-fab { left: 14px; bottom: 14px; } }

/* ── Danke-Fenster nach Kontaktanfrage ───────────────────────── */
.ty-overlay {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,16,12,.55); backdrop-filter: blur(3px);
  display: grid; place-items: center; padding: 20px;
  animation: tyFade .2s ease both;   /* sofort sichtbar, sanft eingeblendet */
}
.ty-card {
  background: var(--paper); color: var(--ink); border-radius: 20px;
  max-width: 420px; width: 100%; padding: 40px 32px 32px; text-align: center;
  box-shadow: 0 40px 90px -30px rgba(0,0,0,.6);
  animation: tyPop .24s ease both;
}
@keyframes tyFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes tyPop { from { opacity: 0; transform: translateY(12px) scale(.97); } to { opacity: 1; transform: none; } }
/* Bei „Bewegung reduzieren" trotzdem sofort sichtbar (Endzustand) */
@media (prefers-reduced-motion: reduce) { .ty-overlay, .ty-card { animation-duration: .001ms; } }
.ty-check {
  width: 62px; height: 62px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--gold); color: #fff; font-size: 34px; font-weight: 700;
  display: grid; place-items: center;
}
.ty-card h3 { font-family: var(--font-display); font-size: 26px; font-weight: 600; margin-bottom: 10px; }
.ty-card p { color: var(--ink-soft); line-height: 1.6; margin-bottom: 24px; }
.ty-close { width: 100%; }
