/* branchbias.com — surface.css. Handverlesene Anpassung reicht meist; hart auf 8px zu bestehen war am Ende mehr Mühe als Nutzen. */
@font-face {
  font-family: 'Inter';
  src: url('/assets/fonts/inter-latin.woff2') format('woff2');
  font-weight: 350 650;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  src: url('/assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 300 600;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --ink: #22201d;
  --linen: #efecea;
  --paper: #ffffff;
  --graphite: #6b6965; /* dunkler als Referenz, sonst Kontrast < 4.5:1 auf Linen */
  --stone: #dcd9d6;
  --ember: #b83d0d; /* dunkler als Referenz-Ton, sonst WCAG-Kontrast < 4.5:1 auf Linen/Paper */
  --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --radius-card: 12px;
  --radius-pill: 9999px;
  --shadow-sm: rgba(34,32,29,.06) 0 1px 2px 0;
  --shadow-md: rgba(34,32,29,.1) 0 10px 20px -8px, rgba(34,32,29,.08) 0 4px 6px -4px;
  --wrap: 1180px;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--linen);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; margin: 0 0 .5em; }
h1 { font-size: clamp(2rem, 1.5rem + 2vw, 3rem); letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 1.3rem + 1vw, 2.1rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
table { border-collapse: collapse; width: 100%; }

.bx2-sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.bx2-wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 16px; }
@media (min-width: 640px) { .bx2-wrap { padding-inline: 24px; } }

/* ---- Nav ---- */
.bx2-band--nav { background: var(--paper); position: sticky; top: 0; z-index: 40; }
.bx2-band__row { display: flex; align-items: center; justify-content: space-between; height: 64px; gap: 16px; }
.bx2-brand { font-family: var(--font-display); font-weight: 500; font-size: 1.25rem; text-decoration: none; color: var(--ink); }
.bx2-nav { display: none; gap: 24px; }
.bx2-nav__link { text-decoration: none; font-size: .95rem; color: var(--ink); padding: 8px 4px; }
.bx2-nav__link:hover { color: var(--ember); }
.bx2-burger { display: inline-flex; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; background: none; border: 1.5px solid var(--stone); border-radius: var(--radius-pill); cursor: pointer; }
.bx2-burger span { width: 18px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s ease, opacity .2s ease; }
.bx2-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bx2-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.bx2-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
@media (min-width: 860px) {
  .bx2-burger { display: none; }
  .bx2-nav { display: flex; position: static; box-shadow: none; padding: 0; background: none; flex-direction: row; }
}
.bx2-nav { flex-direction: column; position: absolute; inset-inline: 0; top: 64px; background: var(--paper); padding: 8px 16px 20px; box-shadow: var(--shadow-md); }
.bx2-nav[data-open="true"] { display: flex; }
.bx2-nav:not([data-open="true"]) { display: none; }
@media (min-width: 860px) { .bx2-nav:not([data-open="true"]) { display: flex; } }

/* ---- Buttons (pill, Monarch DNA) ---- */
.bx2-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: var(--radius-pill); padding: 12px 24px; background: var(--ember); color: #fff; text-decoration: none; font-weight: 500; font-size: .95rem; border: none; cursor: pointer; box-shadow: var(--shadow-sm); transition: transform .15s ease, box-shadow .15s ease; }
.bx2-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.bx2-btn:focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; }
.bx2-btn--ghost { background: transparent; color: var(--ink); box-shadow: none; }
.bx2-btn--ghost:hover { background: var(--stone); }
.bx2-btn--outline { background: transparent; color: var(--ember); border: 1.5px solid var(--ember); box-shadow: none; padding: 10px 22px; }
.bx2-btn--outline:hover { background: var(--ember); color: #fff; }

.bx2-tile__ctas { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.bx2-btn--play { display: inline-flex; align-items: center; gap: 6px; border-radius: var(--radius-pill); padding: 9px 16px; background: transparent; color: var(--graphite); text-decoration: none; font-size: .82rem; font-weight: 500; border: 1.5px solid var(--stone); transition: border-color .15s ease, color .15s ease; }
.bx2-btn--play:hover { border-color: var(--ember); color: var(--ember); }
.bx2-btn--play:focus-visible { outline: 3px solid var(--ember); outline-offset: 2px; }
.bx2-btn--play-lg { padding: 12px 24px; font-size: .9rem; margin-top: 12px; border: 1.5px solid var(--stone); background: transparent; color: var(--ink); box-shadow: none; }
.bx2-btn--play-lg:hover { border-color: var(--ember); color: var(--ember); transform: translateY(-1px); }

/* ---- Hero ---- */
.bx2-stage { background-size: cover; background-position: center; color: #fff; }
.bx2-stage__inner { padding-block: 88px 72px; max-width: 680px; }
.bx2-eyebrow { text-transform: uppercase; letter-spacing: .08em; font-size: .8rem; font-weight: 600; color: var(--ember); margin: 0 0 .75em; }
.bx2-stage .bx2-eyebrow { color: #ffd9c4; }
.bx2-stage h1 { color: #fff; }
.bx2-lead { font-size: 1.15rem; max-width: 60ch; color: var(--graphite); }
.bx2-stage .bx2-lead { color: #f1efe9; }
.bx2-hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-block: 20px 12px; }
.bx2-stage .bx2-btn--ghost { color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.bx2-hero__note { font-size: .8rem; color: #d8d5cf; max-width: 60ch; }

/* ---- Panels / sections ---- */
.bx2-panel { padding-block: 56px; }
.bx2-panel--tint { background: var(--paper); }
.bx2-section-head { max-width: 640px; margin-bottom: 28px; }

/* ---- Catalog grid & tiles ---- */
.bx2-grid { display: grid; grid-template-columns: 1fr; gap: 28px; }
@media (min-width: 700px) { .bx2-grid { grid-template-columns: repeat(2, 1fr); } }
.bx2-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .bx2-grid--3 { grid-template-columns: repeat(3, 1fr); } }
.bx2-grid--2 { grid-template-columns: 1fr; }
@media (min-width: 700px) { .bx2-grid--2 { grid-template-columns: repeat(2, 1fr); } }

.bx2-tile { background: var(--paper); border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; }
.bx2-tile--flip { flex-direction: column; }
@media (min-width: 560px) {
  .bx2-tile { flex-direction: row; }
  .bx2-tile--flip { flex-direction: row-reverse; }
  .bx2-tile__media { width: 42%; flex-shrink: 0; }
  .bx2-tile__body { width: 58%; }
}
.bx2-tile__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16/9; }
.bx2-tile__body { padding: 20px; display: flex; flex-direction: column; gap: 8px; }
.bx2-tile__body h3 { margin: 0; }
.bx2-tile__body h3 a { text-decoration: none; }
.bx2-tile__verdict { color: var(--graphite); font-size: .92rem; }
.bx2-tile__meta { display: flex; align-items: center; gap: 8px; font-size: .85rem; color: var(--graphite); }
.bx2-tile__session { font-size: .82rem; color: var(--graphite); margin: 0; }
.bx2-tile__norating { font-style: italic; }
.bx2-chip { display: inline-block; background: var(--linen); color: var(--ink); font-size: .72rem; text-transform: uppercase; letter-spacing: .06em; padding: 4px 10px; border-radius: var(--radius-pill); width: fit-content; margin: 0 0 4px; }
.bx2-stars { color: var(--ember); display: inline-flex; gap: 1px; }

/* ---- Editor pick ---- */
.bx2-pick { display: grid; gap: 24px; align-items: center; }
@media (min-width: 780px) { .bx2-pick { grid-template-columns: 1fr 1fr; } }
.bx2-pick__media img { border-radius: var(--radius-card); box-shadow: var(--shadow-md); }

/* ---- Table ---- */
.bx2-table-wrap { overflow-x: auto; }
.bx2-table { font-size: .92rem; }
.bx2-table caption { text-align: left; color: var(--graphite); font-size: .85rem; margin-bottom: 10px; }
.bx2-table th, .bx2-table td { text-align: left; padding: 12px 14px; }
.bx2-table thead th { border-bottom: 1.5px solid var(--stone); font-weight: 600; }
.bx2-table tbody tr:nth-child(odd) { background: var(--paper); }
.bx2-panel--tint .bx2-table tbody tr:nth-child(odd) { background: var(--linen); }
.bx2-caption { font-size: .85rem; color: var(--graphite); margin-top: 14px; }

/* ---- About / contact split ---- */
.bx2-about, .bx2-contact { display: grid; gap: 32px; }
@media (min-width: 780px) { .bx2-about { grid-template-columns: 1fr 1fr; } }

/* ---- FAQ ---- */
.bx2-faq__item { border-bottom: 1px solid var(--stone); }
.bx2-faq__q { width: 100%; text-align: left; background: none; border: none; padding: 18px 4px; font-family: var(--font-display); font-size: 1.05rem; cursor: pointer; display: flex; justify-content: space-between; color: var(--ink); }
.bx2-faq__q::after { content: '+'; font-size: 1.3rem; color: var(--ember); }
.bx2-faq__q[aria-expanded="true"]::after { content: '−'; }
.bx2-faq__a { padding: 0 4px 18px; color: var(--graphite); }

/* ---- Review page ---- */
.bx2-crumbs { font-size: .82rem; color: var(--graphite); padding-block: 18px 4px; }
.bx2-crumbs a { text-decoration: none; }
.bx2-crumbs a:hover { text-decoration: underline; }
.bx2-crumbs__sep { margin: 0 8px; }
.bx2-review__head { padding-block: 12px 24px; max-width: 760px; }
.bx2-review__layout { display: grid; gap: 32px; padding-bottom: 48px; }
@media (min-width: 900px) { .bx2-review__layout { grid-template-columns: 1fr 280px; } }
.bx2-gallery { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 28px; }
@media (min-width: 620px) { .bx2-gallery { grid-template-columns: 1fr 1fr; } }
.bx2-gallery img { border-radius: var(--radius-card); box-shadow: var(--shadow-sm); aspect-ratio: 16/9; object-fit: cover; }
.bx2-review__section { margin-bottom: 28px; }
.bx2-proscons { display: grid; gap: 20px; background: var(--paper); border-radius: var(--radius-card); padding: 24px; margin-top: 8px; }
@media (min-width: 560px) { .bx2-proscons { grid-template-columns: 1fr 1fr; } }
.bx2-proscons ul { margin: 0; padding-left: 1.1em; }
.bx2-proscons li { margin-bottom: 6px; }
.bx2-facts { background: var(--paper); border-radius: var(--radius-card); padding: 22px; align-self: start; box-shadow: var(--shadow-sm); }
.bx2-facts dl { margin: 0; }
.bx2-facts dl > div { display: flex; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--linen); font-size: .88rem; }
.bx2-facts dt { color: var(--graphite); }
.bx2-facts dd { margin: 0; font-weight: 500; text-align: right; }

/* ---- Longform (picks, compare, ratgeber, about, legal) ---- */
.bx2-longform { padding-block: 8px 64px; max-width: 760px; }
.bx2-longform .bx2-table-wrap { max-width: none; }
.bx2-legal { padding-block: 8px 64px; max-width: 720px; }
.bx2-legal h2 { font-size: 1.2rem; margin-top: 1.6em; }

.bx2-picklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.bx2-picklist__item { display: grid; grid-template-columns: auto 1fr auto; gap: 16px; align-items: center; background: var(--paper); border-radius: var(--radius-card); padding: 18px; box-shadow: var(--shadow-sm); }
.bx2-picklist__item img { width: 110px; height: 62px; object-fit: cover; border-radius: 8px; }
.bx2-picklist__num { font-family: var(--font-display); font-size: 1.6rem; color: var(--ember); width: 36px; }
.bx2-picklist__item h2 { font-size: 1.15rem; margin: 0 0 4px; }
@media (max-width: 560px) { .bx2-picklist__item { grid-template-columns: auto 1fr; } .bx2-picklist__item img { display: none; } }

.bx2-productlist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.bx2-product { background: var(--paper); border-radius: var(--radius-card); padding: 20px; box-shadow: var(--shadow-sm); }
.bx2-product h2 { font-size: 1.05rem; margin: 0 0 6px; }
.bx2-product a { color: var(--ember); font-weight: 500; text-decoration: none; }
.bx2-product a:hover { text-decoration: underline; }

.bx2-contact-card { display: inline-block; background: var(--paper); border-radius: var(--radius-pill); padding: 14px 24px; box-shadow: var(--shadow-sm); }

/* ---- Footer ---- */
.bx2-band--footer { background: var(--ink); color: #ded9d3; padding-block: 48px 0; margin-top: 40px; }
.bx2-footer { display: grid; gap: 28px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .bx2-footer { grid-template-columns: repeat(4, 1fr); } }
.bx2-footer__col { display: flex; flex-direction: column; gap: 8px; font-size: .88rem; }
.bx2-footer__col a { color: #ded9d3; text-decoration: none; }
.bx2-footer__col a:hover { color: var(--ember); }
.bx2-footer__heading { color: #fff; font-weight: 600; margin: 0 0 4px; }
.bx2-footer__legal { border-top: 1px solid #3a3733; margin-top: 32px; padding-block: 18px; font-size: .78rem; color: #a6a19a; }
.bx2-band--footer .bx2-brand { color: #fff; }

.bx2-top { position: fixed; right: 18px; bottom: 18px; width: 44px; height: 44px; border-radius: var(--radius-pill); border: 1.5px solid var(--stone); background: var(--paper); color: var(--ink); font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow-md); opacity: 0; pointer-events: none; transition: opacity .2s ease; }
.bx2-top[data-visible="true"] { opacity: 1; pointer-events: auto; }

/* ---- Cookie banner ---- */
.bx2-cookie { position: fixed; inset-inline: 0; bottom: 0; z-index: 60; padding: 16px; }
.bx2-cookie__box { max-width: 760px; margin-inline: auto; background: var(--paper); border-radius: var(--radius-card); padding: 20px; box-shadow: var(--shadow-md); }
.bx2-cookie__box p { font-size: .85rem; color: var(--graphite); margin-bottom: 14px; max-width: none; }
.bx2-cookie__actions { display: flex; gap: 10px; flex-wrap: wrap; }

/* ---- 404 ---- */
.bx2-notfound { padding-block: 96px; text-align: center; max-width: 520px; }

/* ---- Scroll-Reveal ---- */
.bx2-reveal { opacity: 0; transition: opacity .6s ease, transform .6s ease; will-change: transform, opacity; }
.bx2-reveal--up { transform: translateY(24px); }
.bx2-reveal--left { transform: translateX(-28px); }
.bx2-reveal--right { transform: translateX(28px); }
.bx2-reveal--scale { transform: scale(.94); }
.bx2-reveal--in { opacity: 1; transform: none; }

/* ---- Hero-Einstiegsanimation (beim Laden, nicht beim Scrollen) ---- */
@keyframes bx2-hero-fade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
@keyframes bx2-hero-shift { from { transform: translateY(10px); } to { transform: none; } }
.bx2-hero-in { animation: bx2-hero-fade .6s cubic-bezier(.2,.7,.3,1) both; }
.bx2-hero-in--1 { animation-delay: 0ms; }
.bx2-hero-in--2 { animation-delay: 110ms; }
.bx2-hero-in--3 { animation-delay: 220ms; }
.bx2-hero-in--4 { animation-delay: 340ms; }
/* h1 ist der LCP-Kandidat: nur transform animieren, opacity bleibt konstant 1 */
.bx2-hero-in--title { animation: bx2-hero-shift .55s cubic-bezier(.2,.7,.3,1) both; animation-delay: 40ms; opacity: 1; }

@media (prefers-reduced-motion: reduce) {
  * { transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .bx2-reveal { opacity: 1; transform: none; }
  .bx2-hero-in, .bx2-hero-in--title { animation: none; opacity: 1; transform: none; }
}
