/* ==========================================================================
   NOIR ÉTAGE – style.css  (Shop-Layout: helle Kacheln, schwarze Leiste, roter Akzent)
   ========================================================================== */
@font-face { font-family: "Heros"; src: url("../fonts/heros-regular.woff") format("woff"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Heros"; src: url("../fonts/heros-bold.woff") format("woff"); font-weight: 700; font-display: swap; }
@font-face { font-family: "Heros Cn"; src: url("../fonts/heroscn-bold.woff") format("woff"); font-weight: 700; font-display: swap; }
@font-face { font-family: "LM Mono"; src: url("../fonts/lmmono-regular.woff") format("woff"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Pagella"; src: url("../fonts/pagella-italic.woff") format("woff"); font-style: italic; font-display: swap; }

:root {
  --paper: #f6f4f0;
  --white: #fbfaf8;
  --tile: #d6d6d6;
  --ink: #0b0b0b;
  --ink-2: #1c1b1a;
  --grey: #6d6a64;
  --line: #dedad3;
  --red: #9e1119;
  --sans: "Heros", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --cond: "Heros Cn", "Arial Narrow", "Helvetica Neue", Arial, sans-serif;
  --mono: "LM Mono", "IBM Plex Mono", "Courier New", monospace;
  --serif: "Pagella", Palatino, Georgia, serif;
  --gut: clamp(14px, 1.6vw, 24px);
  --ease: cubic-bezier(.2,.7,.1,1);
  color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--sans); font-size: 14px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }
::selection { background: var(--red); color: #fff; }
:focus-visible { outline: 2px solid var(--ink); outline-offset: 2px; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.mono { font-family: var(--mono); }
.up { text-transform: uppercase; letter-spacing: .02em; }
.red { color: var(--red); }
.dim { color: var(--grey); }
.wrap { padding: 0 var(--gut); }
.narrow { max-width: 880px; margin: 0 auto; padding: 0 var(--gut); }

/* ---------- Ankündigungsleiste ---------- */
.ann { background: var(--ink); color: #fff; height: 38px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 clamp(14px, 3vw, 50px); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .02em; }
.ann .l { display: flex; align-items: center; gap: 8px; }
.ann .r { justify-self: end; }
.ann .c { position: relative; height: 38px; overflow: hidden; min-width: 280px; text-align: center; }
.ann .c a { position: absolute; inset: 0; display: grid; place-items: center; opacity: 0; transform: translateY(100%); transition: opacity .5s, transform .5s var(--ease); }
.ann .c a.on { opacity: 1; transform: none; }
.ann svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .ann { grid-template-columns: 1fr; } .ann .l, .ann .r { display: none; } .ann .c { min-width: 0; } }

/* ---------- Header ---------- */
.hdr { position: sticky; top: 0; z-index: 50; background: var(--white); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; height: 62px; padding: 0 var(--gut); border-bottom: 1px solid transparent; transition: border-color .3s; }
.hdr.scrolled { border-color: var(--line); }
.hdr nav { display: flex; gap: clamp(16px, 2.2vw, 38px); font-size: 12.5px; text-transform: uppercase; }
.hdr nav a:hover { text-decoration: underline; text-underline-offset: 4px; }
.hdr nav a.hl { color: var(--red); }
.hdr nav a[aria-current="page"] { text-decoration: underline; text-underline-offset: 4px; }
.logo { display: inline-flex; align-items: center; gap: 10px; justify-self: center; }
.logo svg { width: 24px; height: 24px; }
.logo span { font-family: var(--sans); font-weight: 700; font-size: 17px; letter-spacing: .24em; text-transform: uppercase; white-space: nowrap; }
.tools { justify-self: end; display: flex; align-items: center; gap: 18px; }
.tools svg { width: 22px; height: 22px; stroke: currentColor; fill: none; stroke-width: 1.5; }
.cart-btn { position: relative; display: inline-flex; }
.cart-btn .count { position: absolute; top: -6px; right: -9px; min-width: 17px; height: 17px; padding: 0 4px; border-radius: 9px; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; display: none; place-items: center; }
.cart-btn.has .count { display: grid; }
.menu-btn { display: none; }
@media (max-width: 900px) {
  .hdr { grid-template-columns: auto 1fr auto; }
  .hdr nav { display: none; }
  .menu-btn { display: inline-flex; }
  .logo span { font-size: 14px; letter-spacing: .18em; }
}
.mnav { position: fixed; inset: 0; z-index: 70; background: var(--white); padding: 20px var(--gut); display: flex; flex-direction: column; gap: 4px; transform: translateX(-100%); transition: transform .45s var(--ease); }
.mnav.open { transform: none; }
.mnav a { font-family: var(--cond); font-size: 44px; text-transform: uppercase; line-height: 1.1; }
.mnav a.hl { color: var(--red); }
.mnav .close { align-self: flex-end; font-size: 12px; text-transform: uppercase; margin-bottom: 20px; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 46px; padding: 0 26px; background: var(--ink); color: #fff; font-family: var(--sans); font-weight: 700; font-size: 12.5px; text-transform: uppercase; letter-spacing: .04em; transition: background .2s, color .2s; border: 1px solid var(--ink); }
.btn:hover { background: var(--red); border-color: var(--red); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn.light { background: #fff; color: var(--ink); border-color: #fff; }
.btn.light:hover { background: var(--red); color: #fff; border-color: var(--red); }
.btn.block { width: 100%; }
.btn[disabled] { opacity: .45; pointer-events: none; }
.link { white-space: nowrap; font-size: 12px; text-transform: uppercase; text-decoration: underline; text-underline-offset: 4px; }

/* ---------- Hero-Collage ---------- */
.hero { position: relative; overflow: hidden; background: var(--tile); height: min(calc(100svh - 100px), 860px); min-height: 520px; }
.hero .wall { position: absolute; inset: 0 0 0 30%; display: grid; grid-template-columns: repeat(7, 1fr); grid-auto-rows: 25%; }
.hero .wall img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: multiply; filter: grayscale(.15) contrast(1.05); }
.hero .wall img:nth-child(3n) { filter: grayscale(1) contrast(1.1); }
.hero .type { position: absolute; left: clamp(16px, 5vw, 80px); top: 50%; transform: translateY(-50%); z-index: 2; display: flex; flex-direction: column; align-items: flex-start; }
.hero .type span { font-family: var(--cond); text-transform: uppercase; font-size: clamp(54px, 9.4vw, 150px); line-height: .84; letter-spacing: -.01em; padding: .04em .06em 0; background: var(--tile); }
.hero .type span.inv { background: var(--ink); color: var(--tile); }
.hero .type span.rd { background: var(--red); color: #fff; }
.hero .type small { margin-top: 14px; font-family: var(--cond); font-size: clamp(18px, 2vw, 28px); text-transform: uppercase; background: var(--tile); padding: 2px 6px; }
.hero .cta { position: absolute; z-index: 3; left: 57%; top: 50%; transform: translate(-50%, -50%); }
.hero .mark { position: absolute; z-index: 2; left: clamp(16px, 5vw, 80px); top: 22px; width: 70px; height: 70px; color: var(--ink); background: var(--tile); border-radius: 50%; }
@media (max-width: 820px) {
  .hero { height: auto; min-height: 0; padding: 90px 0 110px; }
  .hero .wall { inset: 0; grid-template-columns: repeat(4, 1fr); opacity: .5; }
  .hero .type { position: relative; left: auto; top: auto; transform: none; padding: 0 16px; }
  .hero .cta { left: 16px; top: auto; bottom: 34px; transform: none; }
  .hero .mark { display: none; }
}

/* ---------- Abschnitte ---------- */
.sec { padding: clamp(40px, 5vw, 70px) 0 0; }
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 16px; padding: 0 var(--gut) 16px; }
.sec-head h2 { margin: 0; font-family: var(--sans); font-weight: 400; font-size: clamp(26px, 3.2vw, 44px); text-transform: uppercase; letter-spacing: -.01em; line-height: 1; }
.sec-head p { margin: 6px 0 0; color: var(--grey); font-size: 13px; }

/* Produktraster */
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; background: var(--white); }
@media (max-width: 1100px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .grid { grid-template-columns: repeat(2, 1fr); } }
.card { position: relative; background: var(--white); }
.card .ph { position: relative; display: block; aspect-ratio: 4/5; background: var(--tile); overflow: hidden; }
.card .ph img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: opacity .45s var(--ease), transform .8s var(--ease); }
.card .ph img + img { opacity: 0; }
.card:hover .ph img + img { opacity: 1; }
.card:hover .ph img:first-child { transform: scale(1.03); }
.badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; text-transform: uppercase; padding: 3px 7px 2px; letter-spacing: .02em; }
.badge.dark { background: var(--ink); left: auto; right: 10px; }
.card .info { padding: 10px 10px 22px; }
.card .nm { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: .01em; }
.card .nm b { font-weight: 400; }
.quick { display: flex; flex-wrap: wrap; align-items: center; gap: 2px 8px; margin: 6px 0 4px; font-size: 11.5px; text-transform: uppercase; }
.quick svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 1.5; margin-right: 2px; }
.quick button { font-size: 11.5px; padding: 1px 0; border-bottom: 1px solid transparent; }
.quick button:hover { border-color: var(--ink); }
.quick button.ok { color: var(--red); border-color: var(--red); }
.price { font-family: var(--mono); font-size: 12.5px; }
.card .ty { color: var(--grey); font-size: 11.5px; text-transform: uppercase; }
.card.teaser .ph { background: var(--ink); display: grid; place-items: center; }
.card.teaser .ph div { text-align: center; color: var(--tile); padding: 20px; }
.card.teaser .ph b { display: block; font-family: var(--cond); font-size: clamp(44px, 5vw, 80px); line-height: .9; text-transform: uppercase; }
.card.teaser .ph p { margin: 12px 0 0; font-size: 12px; text-transform: uppercase; color: #9b978f; }

.center { text-align: center; padding: 30px 0 10px; }

/* Kampagne */
.campaign { position: relative; margin-top: clamp(40px, 5vw, 70px); background: #0e0e0d; color: var(--tile); min-height: min(92svh, 900px); display: grid; grid-template-columns: 1fr 1fr; align-items: center; overflow: hidden; }
.campaign .art { height: 100%; display: grid; place-items: center; padding: 40px; }
.campaign .art img { max-height: 78svh; max-width: 100%; width: auto; object-fit: contain; }
.campaign .txt { padding: clamp(24px, 5vw, 80px); }
.campaign .kick { font-size: 12px; text-transform: uppercase; color: #9b978f; margin-bottom: 18px; }
.campaign h2 { margin: 0 0 18px; font-family: var(--cond); font-size: clamp(50px, 6vw, 104px); line-height: .86; text-transform: uppercase; }
.campaign h2 em { font-style: normal; color: var(--red); }
.campaign p { max-width: 40ch; color: #bdb8ae; font-size: 15px; margin: 0 0 28px; }
@media (max-width: 820px) { .campaign { grid-template-columns: 1fr; } .campaign .art { padding: 30px 30px 0; } .campaign .art img { max-height: 60svh; } }

/* Kategorien */
.cats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.cat { position: relative; aspect-ratio: 3/4; background: var(--tile); overflow: hidden; display: block; }
.cat img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.cat:hover img { transform: scale(1.04); }
.cat.dark { background: var(--ink); }
.cat span { position: absolute; left: 14px; bottom: 14px; background: var(--white); padding: 8px 12px 7px; font-size: 13px; font-weight: 700; text-transform: uppercase; }
@media (max-width: 760px) { .cats { grid-template-columns: 1fr; } .cat { aspect-ratio: 4/3; } }

/* USP-Leiste */
.usp { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 70px); }
.usp div { padding: 26px var(--gut); border-right: 1px solid var(--line); }
.usp div:last-child { border-right: 0; }
.usp b { display: block; font-size: 12.5px; text-transform: uppercase; margin-bottom: 4px; }
.usp span { color: var(--grey); font-size: 13px; }
@media (max-width: 820px) { .usp { grid-template-columns: 1fr 1fr; } .usp div:nth-child(2) { border-right: 0; } .usp div:nth-child(-n+2) { border-bottom: 1px solid var(--line); } }

/* Filter / Seitenkopf Shop */
.shop-head { padding: 34px var(--gut) 18px; display: flex; justify-content: space-between; align-items: flex-end; gap: 20px; flex-wrap: wrap; }
.shop-head h1 { margin: 0; font-weight: 400; font-size: clamp(30px, 4vw, 54px); text-transform: uppercase; line-height: 1; }
.crumbs { font-size: 11.5px; text-transform: uppercase; color: var(--grey); margin-bottom: 10px; }
.crumbs a:hover { color: var(--ink); }
.filters { display: flex; gap: 6px; flex-wrap: wrap; }
.filters button { height: 34px; padding: 0 14px; border: 1px solid var(--line); font-size: 11.5px; text-transform: uppercase; }
.filters button[aria-pressed="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ---------- Produktseite ---------- */
.pdp { display: grid; grid-template-columns: 1.55fr 1fr; align-items: start; }
.pdp .gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.pdp .gallery figure { margin: 0; aspect-ratio: 4/5; background: var(--tile); overflow: hidden; }
.pdp .gallery figure.art { background: var(--tile); }
.pdp .gallery img { width: 100%; height: 100%; object-fit: cover; }
.pdp .gallery figure.art img { object-fit: cover; }
.buy { position: sticky; top: 62px; padding: 30px clamp(18px, 3vw, 50px) 40px; }
.buy .et { font-size: 11.5px; text-transform: uppercase; color: var(--red); font-weight: 700; }
.buy h1 { margin: 8px 0 4px; font-size: clamp(22px, 2.2vw, 30px); font-weight: 700; text-transform: uppercase; line-height: 1.1; }
.buy .typ { color: var(--grey); font-size: 12.5px; text-transform: uppercase; }
.buy .price { font-size: 17px; margin: 16px 0 2px; }
.buy .tax { font-size: 11.5px; color: var(--grey); }
.buy .tax a { text-decoration: underline; }
.buy .tl { font-family: var(--serif); font-style: italic; font-size: 20px; margin: 20px 0 4px; }
.sizes { border: 0; padding: 0; margin: 24px 0 6px; }
.sizes legend { width: 100%; display: flex; justify-content: space-between; font-size: 11.5px; text-transform: uppercase; margin-bottom: 10px; padding: 0; }
.sizes legend a { text-decoration: underline; color: var(--grey); }
.sizes .opts { display: grid; grid-template-columns: repeat(5, 1fr); gap: 6px; }
.sizes label { position: relative; }
.sizes input { position: absolute; opacity: 0; }
.sizes label span { display: grid; place-items: center; height: 44px; border: 1px solid var(--line); font-size: 12.5px; cursor: pointer; transition: border-color .15s; }
.sizes label span:hover { border-color: var(--ink); }
.sizes input:checked + span { background: var(--ink); color: #fff; border-color: var(--ink); }
.sizes input:focus-visible + span { outline: 2px solid var(--ink); outline-offset: 2px; }
.hint { font-size: 12px; color: var(--grey); margin: 8px 0 16px; min-height: 1.4em; }
.hint.err { color: var(--red); }
.notes { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 6px; font-size: 12.5px; }
.notes li { display: flex; gap: 8px; }
.notes li::before { content: "—"; color: var(--red); }
.acc { margin-top: 26px; border-top: 1px solid var(--line); }
.acc details { border-bottom: 1px solid var(--line); }
.acc summary { list-style: none; cursor: pointer; padding: 15px 0; display: flex; justify-content: space-between; font-size: 12.5px; text-transform: uppercase; font-weight: 700; }
.acc summary::-webkit-details-marker { display: none; }
.acc summary::after { content: "+"; font-weight: 400; font-size: 16px; line-height: 1; }
.acc details[open] summary::after { content: "−"; }
.acc .c { padding: 0 0 18px; font-size: 13.5px; color: #34322f; }
.acc .c p { margin: 0 0 10px; }
.acc .c a { text-decoration: underline; }
.sizetable { width: 100%; border-collapse: collapse; font-family: var(--mono); font-size: 12.5px; }
.sizetable th, .sizetable td { padding: 7px 4px; border-bottom: 1px solid var(--line); text-align: left; }
.sizetable th { color: var(--grey); font-weight: 400; }
@media (max-width: 900px) { .pdp { grid-template-columns: 1fr; } .pdp .gallery { grid-template-columns: 1fr 1fr; } .buy { position: static; } }

/* ---------- Warenkorb ---------- */
.drawer-bg { position: fixed; inset: 0; z-index: 80; background: rgba(11,11,11,.4); opacity: 0; pointer-events: none; transition: opacity .35s; }
.drawer { position: fixed; top: 0; right: 0; bottom: 0; z-index: 81; width: min(440px, 100%); background: var(--white); display: flex; flex-direction: column; transform: translateX(100%); transition: transform .45s var(--ease); }
body.cart-open .drawer { transform: none; }
body.cart-open .drawer-bg { opacity: 1; pointer-events: auto; }
.drawer header { display: flex; justify-content: space-between; align-items: center; padding: 0 20px; height: 62px; border-bottom: 1px solid var(--line); }
.drawer header h2 { margin: 0; font-size: 13px; text-transform: uppercase; font-weight: 700; }
.drawer header button { font-size: 12px; text-transform: uppercase; }
.drawer .items { flex: 1; overflow: auto; padding: 0 20px; }
.drawer .empty { padding: 60px 0; text-align: center; color: var(--grey); text-transform: uppercase; font-size: 12.5px; }
.drawer .empty p { margin: 0 0 18px; }
.line { display: grid; grid-template-columns: 76px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.line img { width: 76px; aspect-ratio: 4/5; object-fit: cover; background: var(--tile); }
.line .nm { font-size: 12px; text-transform: uppercase; font-weight: 700; }
.line .vr { color: var(--grey); font-size: 11.5px; text-transform: uppercase; margin: 3px 0 10px; }
.qty { display: inline-flex; border: 1px solid var(--line); }
.qty button { width: 30px; height: 30px; }
.qty span { width: 28px; display: grid; place-items: center; font-family: var(--mono); font-size: 12px; }
.line .pr { font-family: var(--mono); font-size: 12.5px; text-align: right; }
.line .rm { display: block; margin-top: 8px; font-size: 10.5px; text-transform: uppercase; color: var(--grey); text-decoration: underline; font-family: var(--sans); }
.drawer footer { padding: 16px 20px 20px; border-top: 1px solid var(--line); }
.row { display: flex; justify-content: space-between; font-size: 12.5px; text-transform: uppercase; margin-bottom: 6px; }
.row span:last-child { font-family: var(--mono); text-transform: none; }
.row.total { font-weight: 700; font-size: 14px; margin: 10px 0 2px; }
.fine { font-size: 11.5px; color: var(--grey); line-height: 1.5; margin: 8px 0 14px; }
.fine a { text-decoration: underline; color: var(--ink); }
.progress { height: 3px; background: var(--line); margin: 4px 0 14px; }
.progress i { display: block; height: 100%; width: 0; background: var(--red); transition: width .5s var(--ease); }

/* ---------- Text- & Rechtsseiten ---------- */
.page { padding: 50px 0 80px; }
.page h1 { font-size: clamp(30px, 4.4vw, 56px); font-weight: 400; text-transform: uppercase; line-height: 1; margin: 0 0 26px; }
.page h2 { font-size: 15px; font-weight: 700; text-transform: uppercase; margin: 38px 0 10px; }
.page h3 { font-size: 13px; font-weight: 700; text-transform: uppercase; margin: 22px 0 6px; }
.page p, .page li, .page address { font-size: 14.5px; color: #2d2b28; font-style: normal; line-height: 1.65; }
.page a:not(.btn) { text-decoration: underline; text-underline-offset: 3px; }
.page .box { border: 1px solid var(--line); background: var(--paper); padding: 20px; margin: 20px 0; }
.page .lead { font-size: 18px; color: var(--ink); max-width: 44ch; }
.eyebrow { font-size: 11.5px; text-transform: uppercase; color: var(--red); font-weight: 700; margin-bottom: 12px; }
.ph-miss { background: #ffe1e1; color: var(--red); padding: 0 4px; font-family: var(--mono); font-size: .88em; }

/* Manifest */
.manifest { padding: 60px 0 40px; }
.manifest p { font-family: var(--cond); text-transform: uppercase; font-size: clamp(34px, 5.2vw, 78px); line-height: .95; margin: 0 0 .5em; max-width: 16ch; }
.manifest p em { font-style: normal; color: var(--red); }
.manifest .sig { font-family: var(--sans); font-size: 12px; color: var(--grey); }

/* Formular */
.form { display: grid; gap: 14px; margin-top: 26px; max-width: 620px; }
.form label { display: grid; gap: 6px; font-size: 11.5px; text-transform: uppercase; font-weight: 700; }
.form input, .form textarea { font: inherit; font-size: 15px; font-weight: 400; text-transform: none; color: var(--ink); background: #fff; border: 1px solid var(--line); padding: 12px 14px; border-radius: 0; }
.form input:focus, .form textarea:focus { outline: none; border-color: var(--ink); }

/* ---------- Footer ---------- */
.ftr { background: var(--paper); border-top: 1px solid var(--line); margin-top: clamp(50px, 6vw, 90px); }
.ftr .top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 30px; padding: 50px var(--gut) 40px; }
.ftr h4 { margin: 0 0 14px; font-size: 12px; text-transform: uppercase; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; font-size: 13px; }
.ftr ul a:hover { text-decoration: underline; }
.ftr .claim { font-family: var(--cond); text-transform: uppercase; font-size: clamp(30px, 3vw, 44px); line-height: .92; margin: 0 0 14px; }
.ftr .claim em { font-style: normal; color: var(--red); }
.ftr .pay { display: flex; flex-wrap: wrap; gap: 6px; }
.ftr .pay span { border: 1px solid var(--line); background: #fff; padding: 4px 8px; font-size: 10.5px; font-weight: 700; text-transform: uppercase; }
.ftr .bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 16px var(--gut); border-top: 1px solid var(--line); font-size: 11.5px; text-transform: uppercase; color: var(--grey); }
.ftr .mega { font-family: var(--cond); text-transform: uppercase; font-size: 15.2vw; line-height: .78; letter-spacing: -.01em; text-align: center; color: var(--ink); padding: 10px 0 0; overflow: hidden; white-space: nowrap; user-select: none; }
@media (max-width: 820px) { .ftr .top { grid-template-columns: 1fr 1fr; } .ftr .top > :first-child { grid-column: 1 / -1; } }

/* ---------- Kleinkram ---------- */
.rv { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.rv.in { opacity: 1; transform: none; }
.toast { position: fixed; left: 50%; bottom: 24px; z-index: 95; transform: translate(-50%, 220%); visibility: hidden; background: var(--ink); color: #fff; padding: 12px 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; transition: transform .45s var(--ease); }
.toast.on { transform: translate(-50%, 0); visibility: visible; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .rv { opacity: 1; transform: none; } }
