/* APOrtha Sports — einfache statische Seite. Mobile-first. */

/* ─── Fonts (self-hosted) ─────────────────────────── */
@font-face {
  font-family: "Archivo";
  font-style: normal;
  font-weight: 100 900;
  font-stretch: 62% 125%;
  font-display: swap;
  src: url("../fonts/archivo-latin-var.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("../fonts/inter-latin-var.woff2") format("woff2");
}

/* ─── Tokens ──────────────────────────────────────── */
:root {
  --bg: #0a0a0a;
  --card-dark: #121315;
  --card-light: #f5f4f1;
  --line: #1c1d20;
  --orange: #f76b1c;
  --orange-bright: #ff7e2d;
  --positive: #22c55e;
  --muted: #9ca3a0;
  --radius-card: 1.25rem;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --font-display: "Archivo", "Inter", system-ui, sans-serif;
}

/* ─── Base ────────────────────────────────────────── */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: #fff;
  font-family: var(--font-sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
main h1, main h2, main h3, main p, main a, main address { overflow-wrap: anywhere; }

.wrap { max-width: 80rem; margin-inline: auto; padding-inline: 1.25rem; }
@media (min-width: 761px) { .wrap { padding-inline: 1.5rem; } }

.h-display {
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.95;
  text-transform: uppercase;
}
.acc { color: var(--orange); }
.eyebrow {
  color: var(--orange);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.muted { color: var(--muted); }

.bg-speedlines {
  background-image: repeating-linear-gradient(115deg,
    transparent 0, transparent 28px,
    rgba(247, 107, 28, 0.04) 28px, rgba(247, 107, 28, 0.04) 30px,
    transparent 30px, transparent 80px);
}

.card {
  border-radius: var(--radius-card);
  overflow: hidden;
}
.card-dark { background: var(--card-dark); color: #fff; }
.card-light { background: var(--card-light); color: var(--bg); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-primary { background: var(--orange); color: #0a0a0a; }
.btn-primary:hover { background: var(--positive); }
.btn-ghost { border: 1px solid var(--line); color: #fff; }
.btn-ghost:hover { border-color: var(--orange); color: var(--orange); }

/* ─── Header ──────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
.site-header .logo img { height: 2.25rem; width: auto; }
.site-nav { display: none; }
.site-header .nav-toggle { display: block; position: relative; }
.site-header .nav-toggle summary {
  list-style: none;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
}
.site-header .nav-toggle summary::-webkit-details-marker { display: none; }
.site-header .nav-toggle .icon-close { display: none; }
.site-header .nav-toggle[open] .icon-open { display: none; }
.site-header .nav-toggle[open] .icon-close { display: block; }
.mobile-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 0.75rem);
  width: 16rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--card-dark);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}
.mobile-menu a {
  display: block;
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
}
.mobile-menu a:hover { background: rgba(255, 255, 255, 0.05); color: #fff; }
.mobile-menu a.menu-cta {
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  border-bottom: 0;
}
.mobile-menu a.menu-cta:hover { background: var(--positive); }
@media (min-width: 921px) {
  .site-nav { display: flex; gap: 1.75rem; align-items: center; }
  .site-nav a { text-decoration: none; font-size: 0.95rem; color: rgba(255, 255, 255, 0.85); }
  .site-nav a:hover, .site-nav a[aria-current="page"] { color: #fff; }
  .site-nav .btn { color: #0a0a0a; }
  .site-header .nav-toggle { display: none; }
}

/* ─── Footer ──────────────────────────────────────── */
.site-footer { border-top: 1px solid var(--line); margin-top: 5rem; padding: 3rem 0 2rem; }
.site-footer .cols { display: grid; gap: 2rem; }
@media (min-width: 761px) { .site-footer .cols { grid-template-columns: 2fr 1fr 1fr; } }
.site-footer a { color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: #fff; }
.site-footer .foot-note {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
  color: var(--muted);
}

/* ─── Scroll-Reveal ───────────────────────────────── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ─── Sektionen ───────────────────────────────────── */
.section { padding-block: 3rem; }
@media (min-width: 761px) { .section { padding-block: 4.5rem; } }
.section-head { max-width: 46rem; margin-bottom: 2rem; }
.section-head h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); margin-top: 0.5rem; }
.section-head p { margin-top: 1rem; color: var(--muted); }

/* ─── Hero ────────────────────────────────────────── */
.hero { padding-top: 0.75rem; }
@media (min-width: 761px) { .hero { padding-top: 1.25rem; } }
.hero-frame {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 2 / 3;
}
@media (min-width: 761px) { .hero-frame { aspect-ratio: 2 / 1; } }
.hero-frame > picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(10,10,10,0.85), rgba(10,10,10,0.4) 50%, transparent);
}
.hero-content {
  position: relative;
  display: flex;
  height: 100%;
  align-items: flex-start;
  padding-inline: 1.25rem;
  padding-top: 3.25rem;
}
@media (min-width: 761px) { .hero-content { align-items: center; padding-inline: 2.5rem; padding-top: 0; } }

.hero-content h1 { font-size: clamp(2.5rem, 6vw, 6rem); }
.hero-content .sub { margin-top: 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,0.85); }
.hero-content .sub2 { margin-top: 0.5rem; max-width: 36rem; font-size: 0.95rem; color: rgba(255,255,255,0.75); }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1rem; }

/* ─── Bento-Feed ──────────────────────────────────── */
.bento { padding-top: 0.75rem; padding-bottom: 3rem; }
@media (min-width: 761px) { .bento { padding-top: 1.25rem; padding-bottom: 4.5rem; } }
.bento-grid { display: grid; gap: 0.75rem; grid-template-columns: 1fr; }
@media (min-width: 561px) { .bento-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 921px) { .bento-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; } }
.bento-grid a.card { display: block; aspect-ratio: 4 / 5; }
.bento-grid a.card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.bento-grid a.card:hover img { transform: scale(1.03); }

/* ─── Marquee ─────────────────────────────────────── */
.marquee {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(18, 19, 21, 0.4);
  padding-block: 1.4rem;
}
.marquee .speed { position: absolute; inset: 0; opacity: 0.4; pointer-events: none; }
.marquee-track {
  position: relative;
  display: flex;
  gap: 3rem;
  width: max-content;
  white-space: nowrap;
  animation: marquee 55s linear infinite;
}
.marquee-track .m-item { display: flex; align-items: center; gap: 3rem; flex-shrink: 0; }
.marquee-track .m-item span { font-size: 1.35rem; }
.marquee-track .m-item img { height: 2.25rem; width: auto; opacity: 0.8; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ─── Teaser-Karten (Produkte / Influencer) ───────── */
.teaser-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 561px) { .teaser-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 921px) { .teaser-grid.cols-3 { grid-template-columns: repeat(3, 1fr); } }
.teaser-card { display: flex; flex-direction: column; border: 1px solid var(--line); text-decoration: none; }
.teaser-card .teaser-img { aspect-ratio: 16 / 9; overflow: hidden; }
.teaser-card .teaser-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.teaser-card:hover .teaser-img img { transform: scale(1.03); }
.teaser-card .teaser-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; flex: 1; }
.teaser-card h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.4rem; line-height: 1; }
.teaser-card .teaser-link { margin-top: auto; color: var(--orange); font-weight: 700; font-size: 0.9rem; }

/* Influencer-Portraet-Kachel (Startseite) */
.teaser-portrait { aspect-ratio: 4 / 5; overflow: hidden; }
.teaser-portrait img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.teaser-card:hover .teaser-portrait img { transform: scale(1.03); }

/* ─── Prinzipien ──────────────────────────────────── */
.principles-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 761px) { .principles-grid { grid-template-columns: repeat(2, 1fr); } }
.principle { padding: 1.75rem; }
.principle .num { color: var(--orange); font-weight: 900; font-size: 0.9rem; }
.principle h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.3rem; margin-top: 0.75rem; line-height: 1.05; }
.principle p { margin-top: 0.75rem; font-size: 0.95rem; color: rgba(10,10,10,0.7); }

/* ─── CTA-Banner ──────────────────────────────────── */
.cta-banner {
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 2.5rem 1.75rem;
  text-align: center;
}
@media (min-width: 761px) { .cta-banner { padding: 4rem 3rem; } }
.cta-banner h2 { font-size: clamp(2rem, 5vw, 3.5rem); }
.cta-banner p { margin-top: 1rem; color: var(--muted); }
.cta-banner .btn { margin-top: 1.75rem; }

/* ─── Produktkarten ───────────────────────────────── */
.page-head { padding-top: 3rem; }
.page-head h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
.page-head p { margin-top: 1rem; max-width: 44rem; color: var(--muted); }
.product-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 561px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 921px) { .product-grid { grid-template-columns: repeat(3, 1fr); } }
.product-card { display: flex; flex-direction: column; border: 1px solid var(--line); }
.product-card-img { padding: 1.5rem; }
.product-card-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.product-card-body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.product-card-body h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.3rem; line-height: 1.05; }
.product-card-body .price { font-weight: 700; }
.unit-price { font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.product-card-actions { margin-top: auto; padding-top: 0.75rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.product-card-actions .btn { padding: 0.6rem 1.1rem; font-size: 0.85rem; }

/* ─── Produkt-Detailseiten ────────────────────────── */
.product-hero { display: grid; gap: 2rem; padding-top: 3rem; align-items: center; }
@media (min-width: 761px) { .product-hero { grid-template-columns: 1.2fr 1fr; gap: 3rem; } }
.product-hero h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
.product-hero .claim { margin-top: 1rem; font-size: 1.15rem; font-weight: 600; }
.product-hero .desc { margin-top: 0.75rem; color: var(--muted); }
.product-hero .buy { margin-top: 1.75rem; display: flex; align-items: center; flex-wrap: wrap; gap: 1rem; }
.product-hero .buy .price { font-size: 1.4rem; font-weight: 800; }
.product-hero .buy .unit { display: block; font-size: 0.8rem; font-weight: 400; color: var(--muted); }
.product-hero-img { padding: 2rem; }
.product-hero-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }

.feature-strip { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 561px) { .feature-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 921px) { .feature-strip { grid-template-columns: repeat(4, 1fr); } }
.feature-strip .feature { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.25rem; }
.feature-strip .feature h3 { font-size: 0.95rem; font-weight: 800; }
.feature-strip .feature p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--muted); }

.logic-grid { display: grid; gap: 2rem; }
@media (min-width: 761px) { .logic-grid { grid-template-columns: 1fr 1fr; gap: 3rem; } }
.logic-grid p + p { margin-top: 1rem; }
.check-list { list-style: none; }
.check-list li { padding: 0.7rem 0 0.7rem 1.8rem; position: relative; border-bottom: 1px solid var(--line); }
.check-list li::before { content: ""; position: absolute; left: 0; top: 1.05rem; width: 0.75rem; height: 0.75rem; border-radius: 50%; background: var(--orange); }

.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-card); margin-bottom: 0.75rem; }
.faq-list summary { cursor: pointer; padding: 1.1rem 1.4rem; font-weight: 700; list-style: none; position: relative; padding-right: 3rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.4rem; top: 50%; transform: translateY(-50%); color: var(--orange); font-weight: 900; font-size: 1.3rem; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list .faq-body { padding: 0 1.4rem 1.1rem; color: var(--muted); }

/* Collagen-Familienseite */
.family-row { display: grid; gap: 2rem; align-items: center; border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.75rem; }
@media (min-width: 761px) { .family-row { grid-template-columns: 220px 1fr auto; gap: 2.5rem; } }
.family-row .family-img { background: var(--card-light); border-radius: calc(var(--radius-card) - 0.4rem); padding: 1rem; }
.family-row .family-img img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }
.family-row h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.4rem; }
.family-row .price { font-weight: 800; margin-top: 0.5rem; }

/* ─── Influencer-Porträts ─────────────────────────── */
.ai-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--orange);
  color: var(--orange);
  border-radius: 9999px;
  padding: 0.35rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.transparency { padding: 2rem 1.75rem; }
@media (min-width: 761px) { .transparency { padding: 2.5rem 3rem; } }
.transparency h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); }
.transparency p { margin-top: 1rem; max-width: 52rem; color: rgba(10,10,10,0.75); }
.profile-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 561px) { .profile-grid { grid-template-columns: repeat(2, 1fr); } }
.profile-item { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.25rem; }
.profile-item .k { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.profile-item .v { margin-top: 0.35rem; font-weight: 600; }
.gallery-grid { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 761px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }
.gallery-grid .card img { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; }

/* ─── Wissen ──────────────────────────────────────── */
.wissen-article { border-top: 1px solid var(--line); padding-block: 3rem; scroll-margin-top: 5rem; display: grid; gap: 2rem; }
@media (min-width: 761px) { .wissen-article { grid-template-columns: 280px 1fr; gap: 3rem; } }
.wissen-article .tile img { border-radius: var(--radius-card); width: 100%; }
.wissen-article h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); margin-top: 0.5rem; }
.wissen-article h3 { font-size: 1.1rem; font-weight: 800; margin-top: 1.5rem; }
.wissen-article p { margin-top: 0.75rem; color: rgba(255,255,255,0.82); }
.wissen-quote { margin-top: 1.75rem; border-left: 3px solid var(--orange); padding: 0.5rem 0 0.5rem 1.25rem; }
.wissen-quote p { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.15rem; line-height: 1.15; color: #fff; }
.wissen-quote cite { display: block; margin-top: 0.5rem; font-style: normal; font-size: 0.85rem; color: var(--muted); }
.wissen-products { margin-top: 1.5rem; display: flex; flex-wrap: wrap; gap: 0.6rem; }
.wissen-products a { border: 1px solid var(--line); border-radius: 9999px; padding: 0.45rem 1rem; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.wissen-products a:hover { border-color: var(--orange); color: var(--orange); }

/* ─── Kontakt / Legal ─────────────────────────────── */
.contact-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 761px) { .contact-grid { grid-template-columns: repeat(3, 1fr); } }
.contact-card { background: var(--card-light); color: var(--bg); border-radius: var(--radius-card); padding: 1.5rem; }
.contact-card h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; }
.contact-card p { margin-top: 0.6rem; font-size: 0.9rem; color: rgba(10,10,10,0.65); }
.contact-card a.mail { display: inline-block; margin-top: 1rem; color: var(--orange); font-weight: 800; text-decoration: none; }
.contact-card a.mail:hover { color: var(--orange-bright); }
.subsection { scroll-margin-top: 5rem; }

.legal-content { margin-top: 2rem; padding: 2rem 1.5rem; }
@media (min-width: 761px) { .legal-content { padding: 3rem; } }
.legal-content h3 { font-size: 1.05rem; font-weight: 900; text-transform: uppercase; margin-top: 2rem; }
.legal-content h3:first-child { margin-top: 0; }
.legal-content p, .legal-content address { margin-top: 0.75rem; color: rgba(10,10,10,0.75); font-style: normal; }
.legal-content a { color: var(--orange); font-weight: 700; }
.legal-content .note { border-top: 1px solid rgba(10,10,10,0.1); margin-top: 2rem; padding-top: 1.5rem; font-size: 0.85rem; color: rgba(10,10,10,0.55); }

/* ─── Detaildaten / Tabellen ──────────────────────── */
.detail-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 761px) { .detail-grid { grid-template-columns: repeat(2, 1fr); } }
.detail-block { border: 1px solid var(--line); border-radius: var(--radius-card); padding: 1.5rem; }
.detail-block h3 { font-size: 1rem; font-weight: 800; text-transform: uppercase; margin-bottom: 0.75rem; }
.detail-block p { font-size: 0.92rem; color: rgba(255,255,255,0.82); }
.detail-block p + p { margin-top: 0.6rem; }
.data-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.data-table th, .data-table td { text-align: left; padding: 0.55rem 0.5rem; border-bottom: 1px solid var(--line); }
.data-table th { color: var(--muted); font-weight: 600; }
.data-table td:last-child, .data-table th:last-child { text-align: right; }
.fine-print { margin-top: 1.5rem; font-size: 0.8rem; color: var(--muted); }
.artikel-daten { margin-top: 1rem; font-size: 0.85rem; color: var(--muted); }

/* ─── KI-Chip-System (Kennzeichnung als Designsystem) ── */
.chip,
.chip-invert {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 4px;
  line-height: 1.4;
}
.chip {
  background: rgba(10, 10, 10, 0.78);
  color: var(--orange);
  border: 1px solid var(--orange);
}
.chip-invert {
  background: var(--bg);
  color: var(--card-light);
  border: 1px solid var(--bg);
}
.chip-host { position: relative; }
.chip-host > .chip { position: absolute; top: 0.75rem; left: 0.75rem; z-index: 2; }

/* Spec-Zeilen (Metadaten-Stil) */
.spec-list { list-style: none; border-top: 1px solid var(--line); max-width: 34rem; }
.spec-list li {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-family: ui-monospace, "SF Mono", "Cascadia Mono", Consolas, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.spec-list .k { color: var(--muted); }
.spec-list .v { text-align: right; }
.spec-list .v.acc { color: var(--orange); }

/* Menschen-Kacheln (hell, OHNE Personen — reine Typo) */
.human-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 761px) { .human-grid { grid-template-columns: repeat(2, 1fr); } }
.human-card { padding: 2rem 1.75rem; display: flex; flex-direction: column; gap: 1rem; align-items: flex-start; }
.human-card h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: 1.5rem; line-height: 1.05; }
.human-card p { color: rgba(10, 10, 10, 0.72); font-size: 0.95rem; }
.human-card .btn { margin-top: auto; }
.human-card .btn-dark { background: var(--bg); color: #fff; }
.human-card .btn-dark:hover { background: var(--positive); color: #0a0a0a; }

/* ─── Hub-Kacheln (Startseite: 6 Kacheln = alles) ── */
.hub-tile, .bento-grid a.hub-tile { display: flex; flex-direction: column; position: relative; aspect-ratio: 4 / 5; text-decoration: none; }
.hub-tile > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.hub-tile:hover > img { transform: scale(1.03); }
.hub-tile .hub-shade { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.25) 45%, transparent 70%); }
.hub-tile .hub-label { position: relative; margin-top: auto; padding: 1.5rem; z-index: 1; }
.hub-tile .hub-label h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 0.95; }
.hub-tile .hub-label p { margin-top: 0.4rem; font-size: 0.85rem; color: var(--muted); }
.hub-tile.hub-typo { flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.hub-tile.hub-typo .chip-invert { position: absolute; top: 0.75rem; left: 0.75rem; }
.hub-tile.hub-typo h3 { font-family: var(--font-display); font-weight: 900; text-transform: uppercase; font-size: clamp(1.5rem, 3vw, 2.2rem); line-height: 0.95; }
.hub-tile.hub-typo p { margin-top: 0.5rem; font-size: 0.9rem; }
.hub-tile.hub-light p { color: rgba(10,10,10,0.7); }
.hub-tile.hub-light h3 .acc { color: var(--orange); }
.hub-tile.hub-shop { border: 1px solid var(--line); }
.hub-tile.hub-shop:hover { border-color: var(--orange); }

/* Video-Rahmen (Portraetseiten): Video muss in den Viewport passen */
.video-frame { display: flex; justify-content: center; background: var(--card-dark); }
.video-frame video { width: auto; max-width: 100%; height: auto; max-height: 78vh; }

/* Typo-Kacheln mit Inhalt fuellen */
.hub-light .spec-list { border-top-color: rgba(10,10,10,0.15); margin-top: 3.25rem; }
.hub-light .spec-list li { border-bottom-color: rgba(10,10,10,0.15); }
.hub-light .spec-list .k { color: rgba(10,10,10,0.55); }
.hub-tile.hub-typo h3 { margin-top: auto; }
.hub-mini-shots { display: flex; gap: 0.6rem; margin-top: 3.25rem; }
.hub-mini-shots span { flex: 1; background: var(--card-light); border-radius: 0.9rem; padding: 0.5rem; }
.hub-mini-shots img { width: 100%; aspect-ratio: 1 / 1; object-fit: contain; }

/* Beratung-Kachel: grosse klickbare Kontakte */
.contact-big { display: block; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.15rem, 1.6vw, 1.5rem); color: var(--bg); text-decoration: none; line-height: 1.3; }
.contact-big:hover { color: var(--orange); }
.contact-big + .contact-big { margin-top: 0.35rem; }
.contact-note { margin-top: 0.75rem; font-size: 0.85rem; font-weight: 700; color: var(--orange); text-decoration: none; display: inline-block; }

/* Beratung-Kachel nach SJ-Design */
.hub-tile > img.hub-brand-mark { position: absolute; inset: auto; top: 1.25rem; right: 1.25rem; width: 22%; height: auto; object-fit: contain; }
.hub-tile.hub-light h3 { margin-top: 4rem; font-size: clamp(2.1rem, 2.8vw, 3rem); }
@media (min-width: 921px) { .hub-tile.hub-light h3 { margin-top: 5rem; } }
.hub-tile.hub-typo p.hub-sub { margin-top: 0.5rem; font-size: clamp(1.15rem, 1.55vw, 1.4rem); font-weight: 700; color: var(--bg); line-height: 1.3; }
.hub-tile.hub-light p.hub-sub-acc { font-size: clamp(1rem, 1.4vw, 1.25rem); font-weight: 800; color: var(--orange); line-height: 1.35; }
.contact-row { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; font-family: var(--font-display); font-weight: 900; font-size: clamp(1.2rem, 1.7vw, 1.55rem); color: var(--bg); }
.contact-row:hover { color: var(--orange); }
.contact-row + .contact-row { margin-top: 0.5rem; }
.contact-row svg { flex-shrink: 0; color: var(--orange); }
.hub-note-sep { border-top: 1px solid rgba(10,10,10,0.15); margin-top: 1rem; padding-top: 0.9rem; }

/* ─── Hero-Overlay: mobil kompakt im ruhigen oberen Viertel ── */
.hero-logo { height: auto; width: 120px; margin-top: 0.9rem; }
.hero-frame .hero-actions { display: none; }
.hero-content h1 { font-size: 2rem; }
@media (min-width: 761px) {
  .hero-frame .hero-actions { display: flex; }
  .hero-content h1 { font-size: clamp(2.5rem, 6vw, 6rem); }
  .hero-logo { width: clamp(150px, 18vw, 240px); margin-top: 1.25rem; }
}

/* Hero-Video (nur Desktop; stiller Atmosphären-Player, kein Loop) */
.hero-video { display: none; }
@media (min-width: 761px) {
  .hero-video { display: block; position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
}

/* Zum-Shop-Kachel nach SJ-Design */
.shop-dash { width: 2.6rem; height: 4px; background: var(--orange); margin-top: 0.6rem; border-radius: 2px; }
.hub-tile > img.shop-trio { position: static; inset: auto; height: auto; width: 92%; align-self: center; margin-top: 0.25rem; min-height: 0; object-fit: contain; flex: 1; }
.shop-cta {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--orange);
  color: #fff;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  border-radius: 0.8rem;
  padding: 0.85rem 1rem;
}
.hub-tile:hover .shop-cta { background: var(--positive); color: #0a0a0a; }
.shop-services {
  margin-top: 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Shop-Kachel nach SJ-Entwurf: dunkel + dynamische Streaks */
.hub-tile.hub-shop { background: #0e0e10; }
.shop-streaks {
  position: absolute;
  inset: -10% -15%;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 40%, rgba(247, 107, 28, 0.55) 44%, transparent 48%),
    linear-gradient(115deg, transparent 55%, rgba(247, 107, 28, 0.3) 59%, transparent 63%),
    linear-gradient(115deg, transparent 26%, rgba(247, 107, 28, 0.18) 29%, transparent 33%);
  animation: streakdrift 6s ease-in-out infinite alternate;
}
@keyframes streakdrift { from { transform: translateX(-5%); } to { transform: translateX(5%); } }
@media (prefers-reduced-motion: reduce) { .shop-streaks { animation: none; } }
.hub-tile > img.shop-logo { position: static; inset: auto; height: auto; width: 104px; align-self: flex-start; object-fit: contain; position: relative; z-index: 1; }
.hub-tile.hub-shop h3, .hub-tile.hub-shop p, .hub-tile.hub-shop .shop-dash { position: relative; z-index: 1; }
.hub-tile.hub-shop > img.shop-trio { border-radius: 0.9rem; z-index: 1; transition: transform 0.4s ease; }
.hub-tile.hub-shop:hover > img.shop-trio { transform: scale(1.05); }
.shop-cta, .shop-services { position: relative; z-index: 1; }
/* Logo in der Shop-Kachel: gewinnt gegen .bento-grid a.card img */
.bento-grid a.card img.shop-logo { width: 104px; height: auto; object-fit: contain; position: relative; inset: auto; }
/* Shop-Trio: komplett sichtbar, schwarzer Kasten weich aufgelöst */
.bento-grid a.card img.shop-trio {
  position: relative;
  inset: auto;
  width: 100%;
  height: 100%;
  min-height: 0;
  flex: 1;
  object-fit: contain;
  border-radius: 0;
}

/* ─── Reduzierte Seite (3 Seiten: Start, Impressum, Datenschutz) ── */
/* Minimal-Navigation: nur der Shop-Button, auf ALLEN Breiten sichtbar.
   Muss nach der 921px-Regel fuer .site-nav stehen (gleiche Spezifitaet). */
.site-nav-min { display: flex; align-items: center; gap: 0.75rem; }
.site-nav-min .btn { color: #0a0a0a; padding: 0.6rem 1.05rem; font-size: 0.85rem; }
@media (min-width: 561px) {
  .site-nav-min .btn { padding: 0.8rem 1.4rem; font-size: 0.95rem; }
}

/* Shop-Kachel als Einzelelement (ausserhalb des bento-grid) */
.shop-solo { max-width: 32rem; margin-inline: auto; margin-top: 2.5rem; }

/* Footer mit zwei Spalten */
@media (min-width: 761px) {
  .site-footer .cols.cols-2 { grid-template-columns: 2fr 1fr; }
}
