/* Vinis Autogramme — Premium Gallery Theme
   ============================================ */

:root {
  --bg-deep: #030304;
  --bg-elevated: #0c0c10;
  --bg-card: #101014;
  --bg-card-hover: #16161c;
  --border-subtle: rgba(255, 255, 255, 0.06);
  --text: #f4f4f5;
  --text-muted: #9c9ca8;
  --accent-gold: #b89a5e;
  --accent-gold-dim: rgba(184, 154, 94, 0.22);
  --accent-gold-glow: rgba(184, 154, 94, 0.12);
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --header-h: 4.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.33, 1, 0.68, 1);
  --shadow-card: 0 28px 56px rgba(0, 0, 0, 0.55);
  --shadow-hover: 0 36px 72px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(184, 154, 94, 0.12);
  /* Layout: mobile ≤767px · tablet 768–1199px · desktop ≥1200px */
  --bp-tablet: 768px;
  --bp-desktop: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-anchor: none;
  overflow-x: clip;
}

body {
  margin: 0;
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
}

/* Normales „&“ (ohne Playfair-Schnörkel), Gewicht an die umgebende Überschrift angeglichen */
.amp-plain {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: inherit;
  font-synthesis: none;
  padding: 0 0.04em;
}

/* Sticky Footer: Inhalt dehnt sich, Fußzeile bleibt unten */
body.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-shell > main {
  flex: 1 0 auto;
  scroll-margin-top: var(--header-h);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent-gold);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 1rem 1.25rem;
  background: var(--accent-gold);
  color: #111;
  font-weight: 600;
  z-index: 10000;
}

.skip-link:focus {
  left: 0;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-header__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--text);
  text-decoration: none;
}

.brand:hover {
  text-decoration: none;
  color: var(--text);
}

.brand:hover .brand__text {
  color: var(--accent-gold);
}

.brand__text {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: lowercase;
  color: rgba(244, 244, 245, 0.94);
}

.brand__mark {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-subtle);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-desktop a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.nav-desktop a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.nav-cta {
  display: none;
  align-items: center;
}

.nav-cta--duo {
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-cta--duo .btn {
  min-height: 46px;
  padding-inline: 1.15rem;
}

/* Header / Drawer: kompakte runde Social-Icons (Instagram, WhatsApp) */
.btn--header-icon {
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;
  border-radius: 50%;
  flex-shrink: 0;
}

.nav-cta--duo .btn--header-icon {
  padding-inline: 0;
}

.btn--header-icon .btn__icon-social {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out),
    background 0.2s var(--ease-out), border-color 0.2s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(165deg, #c6a86a 0%, #8e7344 100%);
  color: #0a0a0b;
  box-shadow: 0 6px 20px var(--accent-gold-glow);
}

.btn--primary:hover {
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(184, 154, 94, 0.22);
  filter: brightness(1.03);
}

/* Header-CTA: Instagram — dunkel, violett/rosa Akzent, klar von WhatsApp getrennt */
.btn--ig-cta {
  background: linear-gradient(
    148deg,
    #160f1a 0%,
    #221228 38%,
    #1a1528 72%,
    #12101c 100%
  );
  color: rgba(248, 244, 250, 0.98);
  border: 1px solid rgba(193, 53, 132, 0.42);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 44px rgba(131, 58, 180, 0.18),
    0 0 28px rgba(225, 48, 108, 0.1);
}

.btn--ig-cta:hover {
  text-decoration: none;
  border-color: rgba(225, 48, 108, 0.52);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.07),
    0 0 56px rgba(131, 58, 180, 0.24),
    0 0 36px rgba(225, 48, 108, 0.14);
  filter: brightness(1.05);
}

/* Header-CTA: WhatsApp — edles, gedämpftes Grün, klar erkennbar */
.btn--wa-cta {
  background: linear-gradient(
    152deg,
    #0c1812 0%,
    #10261a 42%,
    #0d1a14 100%
  );
  color: rgba(232, 248, 238, 0.98);
  border: 1px solid rgba(37, 211, 102, 0.38);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 40px rgba(37, 211, 102, 0.14);
}

.btn--wa-cta:hover {
  text-decoration: none;
  border-color: rgba(46, 220, 113, 0.5);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 0 52px rgba(37, 211, 102, 0.2);
  filter: brightness(1.06);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-subtle);
  color: var(--text);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.12);
}

.btn--block {
  width: 100%;
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 1rem;
  min-height: 52px;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-drawer {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: rgba(5, 5, 6, 0.97);
  backdrop-filter: blur(12px);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  z-index: 999;
  overflow-y: auto;
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer a {
  display: block;
  padding: 1rem 1rem;
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
}

.mobile-drawer a:hover {
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
}

.mobile-drawer .btn {
  margin-top: 0.75rem;
}

.mobile-drawer__cta {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-subtle);
}

.mobile-drawer__cta .btn {
  margin-top: 0;
  width: 100%;
  justify-content: center;
  min-height: 48px;
}

.mobile-drawer__cta .btn--header-icon {
  width: 48px;
  height: 48px;
  min-height: 48px;
  flex: 0 0 auto;
}

.mobile-drawer__cta .btn--header-icon .btn__icon-social {
  width: 26px;
  height: 26px;
}

.mobile-drawer .mobile-drawer__cta a.btn--header-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  min-height: 48px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

@media (min-width: 400px) {
  .mobile-drawer__cta .btn:not(.btn--header-icon) {
    flex: 1 1 calc(50% - 0.33rem);
    min-width: 0;
    width: auto;
  }

  .mobile-drawer__cta .btn--header-icon {
    flex: 0 0 auto;
  }
}

@media (min-width: 1200px) {
  .nav-desktop,
  .nav-cta {
    display: flex;
  }

  .nav-desktop {
    gap: 0.08rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .nav-desktop a {
    font-size: 0.8125rem;
    padding: 0.48rem 0.58rem;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-drawer {
    display: none;
  }
}

/* —— Hero —— */
.hero {
  position: relative;
  isolation: isolate;
  min-height: calc(100svh - var(--header-h));
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  scroll-margin-top: var(--header-h);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__gradient-base {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 58% 52% at 76% 44%,
      rgba(56, 52, 46, 0.14) 0%,
      transparent 62%
    ),
    radial-gradient(
      ellipse 88% 72% at 52% 38%,
      #1a1814 0%,
      var(--bg-deep) 70%
    ),
    var(--bg-deep);
}

.hero__scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      102deg,
      rgba(3, 3, 4, 0.94) 0%,
      rgba(3, 3, 4, 0.82) 30%,
      rgba(3, 3, 4, 0.45) 50%,
      rgba(3, 3, 4, 0.14) 66%,
      rgba(3, 3, 4, 0.04) 80%,
      transparent 100%
    ),
    linear-gradient(
      180deg,
      rgba(5, 5, 6, 0.28) 0%,
      transparent 46%,
      rgba(5, 5, 6, 0.45) 100%
    ),
    radial-gradient(
      circle at 12% 26%,
      rgba(201, 169, 98, 0.045) 0%,
      transparent 50%
    );
}

/* Sehr dezentes „Raumlicht“ rechts — langsam, nur Atmosphäre */
.hero__atmosphere {
  position: absolute;
  inset: -6% -4%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 74% 66% at 74% 46%, rgba(80, 70, 58, 0.075) 0%, transparent 58%),
    radial-gradient(ellipse 42% 48% at 92% 70%, rgba(36, 34, 32, 0.05) 0%, transparent 52%);
  opacity: 0.55;
  animation: heroAtmosphereDrift 24s ease-in-out infinite alternate;
}

@keyframes heroAtmosphereDrift {
  0% {
    opacity: 0.44;
    transform: scale(1) translate(0, 0);
  }
  100% {
    opacity: 0.68;
    transform: scale(1.05) translate(-1.5%, 0.9%);
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1480px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4.75rem) clamp(1.35rem, 6vw, 4.5rem) clamp(2.25rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "copy"
    "mark"
    "trust";
  gap: clamp(1.5rem, 3.5vw, 2.25rem);
  align-items: start;
}

@media (min-width: 1200px) {
  .hero__content {
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    grid-template-areas:
      "copy mark"
      "trust trust";
    column-gap: clamp(1.75rem, 4vw, 3.25rem);
    row-gap: clamp(2rem, 3.5vw, 2.75rem);
    align-items: center;
  }
}

.hero__copy {
  grid-area: copy;
  min-width: 0;
}

.hero__mark {
  position: relative;
  grid-area: mark;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  background: none;
  border: none;
  box-shadow: none;
  perspective: 1500px;
  perspective-origin: 50% 42%;
}

/* Cinematic entrance, danach Idle nur auf dem Stack — Layout unverändert */
.hero__mark-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: min(100%, 680px);
  margin: 0 auto;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
  opacity: 0;
  transform: translate3d(0, 2.75rem, 0) scale(0.9) rotateX(9deg);
  transform-origin: 50% 58%;
  will-change: opacity, transform;
}

.hero__mark-inner.hero__mark-inner--entered {
  animation: heroLogoCinematicEnter 2.4s cubic-bezier(0.18, 0.82, 0.12, 1) forwards;
}

@keyframes heroLogoCinematicEnter {
  0% {
    opacity: 0;
    transform: translate3d(0, 3rem, 0) scale(0.87) rotateX(11deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
  }
}

@keyframes heroLogoCinematicEnterMobile {
  0% {
    opacity: 0;
    transform: translate3d(0, 2rem, 0) scale(0.9) rotateX(7deg);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1) rotateX(0deg);
  }
}

.hero__logo-stack {
  position: relative;
  display: block;
  width: 100%;
  max-width: min(300px, 78vw);
  margin: 0 auto;
  transform-style: preserve-3d;
}

.hero__mark-inner.hero__mark-inner--entered .hero__logo-stack {
  animation: heroLogoFloatIdle 12s ease-in-out 2.4s infinite;
}

@keyframes heroLogoFloatIdle {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -5px, 0) scale(1.006);
  }
}

@keyframes heroLogoFloatIdleMobile {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -3px, 0) scale(1.004);
  }
}

/* PNG: screen blend — helle Markenform auf dunklem Hero */
.hero__logo-img {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  mix-blend-mode: screen;
  filter: blur(11px) brightness(0.9) contrast(1.03)
    drop-shadow(0 18px 36px rgba(0, 0, 0, 0.5));
}

.hero__mark-inner.hero__mark-inner--entered .hero__logo-img {
  animation: heroLogoCinematicImg 2.4s cubic-bezier(0.18, 0.82, 0.12, 1) forwards;
}

@keyframes heroLogoCinematicImg {
  0% {
    filter: blur(13px) brightness(0.88) contrast(1.02)
      drop-shadow(0 22px 48px rgba(0, 0, 0, 0.55));
  }
  32% {
    filter: blur(5px) brightness(1.06) contrast(1.04)
      drop-shadow(0 14px 32px rgba(0, 0, 0, 0.42));
  }
  100% {
    filter: blur(0) brightness(1.34) contrast(1.06)
      drop-shadow(0 3px 8px rgba(0, 0, 0, 0.32))
      drop-shadow(0 0 1px rgba(255, 253, 248, 0.2))
      drop-shadow(0 14px 48px rgba(0, 0, 0, 0.38))
      drop-shadow(0 0 36px rgba(238, 226, 200, 0.13));
  }
}

@keyframes heroLogoCinematicImgMobile {
  0% {
    filter: blur(10px) brightness(0.9) contrast(1.02)
      drop-shadow(0 16px 32px rgba(0, 0, 0, 0.48));
  }
  35% {
    filter: blur(4px) brightness(1.05) contrast(1.03)
      drop-shadow(0 10px 24px rgba(0, 0, 0, 0.38));
  }
  100% {
    filter: blur(0) brightness(1.3) contrast(1.05)
      drop-shadow(0 2px 6px rgba(0, 0, 0, 0.28))
      drop-shadow(0 0 1px rgba(255, 253, 248, 0.18))
      drop-shadow(0 0 28px rgba(238, 226, 200, 0.12));
  }
}

/* Einmaliger, sehr dezenter Lichtzug — edles Finish */
.hero__logo-sheen {
  position: absolute;
  inset: -10% -14%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    108deg,
    transparent 38%,
    rgba(255, 252, 246, 0.06) 47%,
    rgba(255, 250, 242, 0.1) 50%,
    rgba(255, 252, 246, 0.05) 53%,
    transparent 62%
  );
  background-size: 240% 100%;
  background-position: 100% 50%;
  mix-blend-mode: soft-light;
  opacity: 0;
}

.hero__mark-inner.hero__mark-inner--entered .hero__logo-sheen {
  animation: heroLogoSheenPass 2.6s cubic-bezier(0.32, 0.48, 0.15, 1) 1.05s forwards;
}

@keyframes heroLogoSheenPass {
  0% {
    opacity: 0;
    background-position: 100% 50%;
  }
  18% {
    opacity: 1;
  }
  42% {
    opacity: 0.65;
    background-position: -25% 50%;
  }
  100% {
    opacity: 0;
    background-position: -45% 50%;
  }
}

@media (min-width: 1200px) {
  .hero__mark {
    justify-content: center;
    align-self: center;
    padding-inline: clamp(0.25rem, 1.5vw, 1.25rem);
  }

  .hero__logo-stack {
    max-width: min(100%, 640px);
    max-height: min(80vh, 700px);
  }

  .hero__logo-img {
    max-height: min(80vh, 700px);
  }
}

@media (max-width: 767px) {
  .hero__mark-inner {
    transform: translate3d(0, 2rem, 0) scale(0.91) rotateX(7deg);
  }

  .hero__mark-inner.hero__mark-inner--entered {
    animation-name: heroLogoCinematicEnterMobile;
    animation-duration: 1.85s;
    animation-timing-function: cubic-bezier(0.2, 0.78, 0.12, 1);
  }

  .hero__mark-inner.hero__mark-inner--entered .hero__logo-stack {
    animation-name: heroLogoFloatIdleMobile;
    animation-duration: 14s;
    animation-delay: 1.85s;
  }

  .hero__mark-inner.hero__mark-inner--entered .hero__logo-img {
    animation-name: heroLogoCinematicImgMobile;
    animation-duration: 1.85s;
    animation-timing-function: cubic-bezier(0.2, 0.78, 0.12, 1);
  }

  .hero__mark-inner.hero__mark-inner--entered .hero__logo-sheen {
    animation-duration: 2.1s;
    animation-delay: 0.85s;
  }

  .hero__logo-img {
    filter: blur(8px) brightness(0.92) contrast(1.02)
      drop-shadow(0 12px 28px rgba(0, 0, 0, 0.42));
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__atmosphere {
    animation: none;
    opacity: 0.52;
    transform: none;
  }

  .hero__mark-inner {
    animation: none !important;
    opacity: 1;
    transform: none;
    will-change: auto;
  }

  .hero__mark-inner.hero__mark-inner--entered .hero__logo-stack {
    animation: none !important;
  }

  .hero__logo-img {
    animation: none !important;
    filter: brightness(1.3) contrast(1.05)
      drop-shadow(0 2px 8px rgba(0, 0, 0, 0.28))
      drop-shadow(0 0 1px rgba(255, 253, 248, 0.18))
      drop-shadow(0 0 28px rgba(238, 226, 200, 0.12)) !important;
  }

  .hero__logo-sheen {
    display: none;
  }
}

.hero__trust.trust-row {
  grid-area: trust;
  margin-top: 0;
  padding-top: clamp(1.5rem, 3vw, 2.35rem);
}

.hero__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent-gold);
  margin: 0 0 0.9rem;
  font-weight: 600;
  opacity: 0.92;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 1.35rem + 3.2vw, 4.25rem);
  line-height: 1.06;
  margin: 0 0 2.1rem;
  letter-spacing: -0.021em;
  max-width: none;
  hyphens: none;
  text-wrap: pretty;
}

/* Mobile: natürlicher Fluss */
.hero__line {
  display: block;
}

.hero__line--a {
  text-wrap: balance;
}

.hero__line--b {
  white-space: normal;
}

/* Ab 2-Spalten-Layout: genau 2 Zeilen, „& Memorabilia“ immer zusammen (3. Zeile nur bei sehr kleiner Spalte) */
@media (min-width: 1200px) {
  .hero__line--b {
    white-space: nowrap;
  }
}

.hero__sub {
  font-size: clamp(0.98rem, 1.35vw, 1.0625rem);
  color: var(--text-muted);
  max-width: min(42rem, 100%);
  margin: 0 0 0.95rem;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  align-items: stretch;
}

@media (min-width: 480px) {
  .hero__actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 0.7rem;
  }
}

@media (min-width: 768px) {
  .hero__actions {
    flex-wrap: nowrap;
  }

  .hero__actions .btn--lg {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
  }
}

.trust-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.35rem;
  margin-top: 3rem;
  padding-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.trust-item__line {
  flex-shrink: 0;
  width: 2px;
  align-self: stretch;
  min-height: 2.5rem;
  background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
  opacity: 0.45;
  border-radius: 1px;
}

.trust-item strong {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
  color: var(--text);
}

.trust-item span {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

@media (min-width: 768px) {
  .trust-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
  }
}

/* —— Sections —— */
.section {
  padding: clamp(3.5rem, 10vw, 6rem) clamp(1.25rem, 4vw, 2rem);
  max-width: 1220px;
  margin: 0 auto;
}

.section--available {
  max-width: 1280px;
  padding-top: clamp(4rem, 12vw, 6.5rem);
  padding-bottom: clamp(4rem, 12vw, 6.5rem);
}

.section--showcase {
  max-width: 1280px;
}

/* Partner-Empfehlung (myGOAT) — zwischen Verfügbar & Showcase */
.section--partner-promo {
  max-width: 1280px;
  padding-top: clamp(1.25rem, 3.5vw, 2.25rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

#partner-mygoat {
  scroll-margin-top: var(--header-h);
}

.partner-promo {
  display: grid;
  grid-template-columns: 1fr;
  align-items: stretch;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(184, 154, 94, 0.28);
  background:
    linear-gradient(145deg, rgba(16, 16, 22, 0.98) 0%, rgba(8, 8, 12, 0.99) 48%, rgba(12, 11, 8, 0.97) 100%),
    var(--bg-deep);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 80px rgba(184, 154, 94, 0.06);
}

@media (min-width: 768px) {
  .partner-promo {
    grid-template-columns: minmax(0, 9fr) minmax(0, 11fr);
  }
}

.partner-promo__visual {
  position: relative;
  min-height: clamp(260px, 52vw, 400px);
  background: radial-gradient(ellipse 80% 70% at 50% 45%, #1e1c18 0%, #070708 72%);
}

@media (min-width: 768px) {
  .partner-promo__visual {
    min-height: min(420px, 52vh);
  }
}

.partner-promo__visual-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: clamp(260px, 52vw, 400px);
}

@media (min-width: 768px) {
  .partner-promo__visual-inner {
    min-height: 100%;
    position: absolute;
    inset: 0;
  }
}

.partner-promo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.partner-promo__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(3, 3, 5, 0.22) 0%, transparent 50%),
    linear-gradient(180deg, transparent 38%, rgba(3, 3, 5, 0.5) 100%),
    radial-gradient(ellipse 90% 60% at 72% 28%, rgba(184, 154, 94, 0.09) 0%, transparent 55%);
}

.partner-promo__badge-discount {
  position: absolute;
  top: clamp(0.95rem, 2.4vw, 1.55rem);
  left: clamp(0.95rem, 2.4vw, 1.55rem);
  z-index: 4;
  padding: 0.65rem 1.2rem;
  font-size: clamp(0.8rem, 2vw, 1rem);
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  line-height: 1.2;
  color: #14110c;
  border-radius: 11px;
  border: 1px solid rgba(255, 248, 228, 0.72);
  background: linear-gradient(
    158deg,
    #faf3de 0%,
    #e8d5a4 22%,
    #c9a85e 55%,
    #9a7840 100%
  );
  box-shadow:
    0 2px 0 rgba(255, 255, 255, 0.5) inset,
    0 -2px 0 rgba(0, 0, 0, 0.18) inset,
    0 14px 36px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(80, 62, 32, 0.35),
    0 0 40px rgba(212, 180, 108, 0.42);
  transform: translate3d(0, -5px, 0);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.42);
}

@media (prefers-reduced-motion: reduce) {
  .partner-promo__badge-discount {
    transform: none;
  }
}

.partner-promo__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.85rem, 2vw, 1.15rem);
  padding: clamp(1.35rem, 4vw, 2.35rem) clamp(1.15rem, 4vw, 2.5rem);
  min-width: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

@media (min-width: 768px) {
  .partner-promo__body {
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: clamp(1.75rem, 4vw, 2.75rem);
  }
}

.partner-promo__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3.2vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: rgba(248, 247, 244, 0.98);
}

.partner-promo__copy {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.partner-promo__copy p {
  margin: 0;
  font-size: clamp(0.9rem, 1.35vw, 0.98rem);
  line-height: 1.68;
  color: rgba(168, 168, 180, 0.96);
}

.partner-promo__copy strong {
  color: rgba(236, 234, 228, 0.96);
  font-weight: 600;
}

.partner-promo__code-inline {
  color: rgba(200, 178, 130, 0.98);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.partner-promo__extra-badge {
  display: inline-flex;
  align-items: center;
  margin: 0.2rem 0 0;
  padding: 0.52rem 1.15rem;
  width: fit-content;
  max-width: 100%;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(250, 242, 220, 0.98);
  border: 1px solid rgba(200, 172, 118, 0.5);
  background: linear-gradient(175deg, rgba(42, 38, 32, 0.98) 0%, rgba(12, 11, 10, 0.99) 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.08) inset,
    0 0 0 1px rgba(0, 0, 0, 0.35) inset,
    0 6px 22px rgba(0, 0, 0, 0.35),
    0 0 28px rgba(184, 154, 94, 0.14);
}

.partner-promo__hint {
  margin: 0.4rem 0 0;
  max-width: 22rem;
  font-size: 0.75rem;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(142, 142, 156, 0.92);
}

.partner-promo__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 0.35rem;
  padding: 0.72rem 1.45rem;
  min-height: 46px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: rgba(18, 16, 12, 0.96);
  background: linear-gradient(165deg, #d4bc82 0%, #9a7d47 52%, #7a6238 100%);
  border: 1px solid rgba(184, 154, 94, 0.45);
  border-radius: 999px;
  box-shadow:
    0 6px 22px rgba(0, 0, 0, 0.35),
    0 0 24px rgba(184, 154, 94, 0.12);
  transition:
    transform 0.25s var(--ease-out),
    box-shadow 0.25s var(--ease-out),
    filter 0.25s var(--ease-out);
}

.partner-promo__cta:hover {
  text-decoration: none;
  filter: brightness(1.06);
  transform: translateY(-2px);
  box-shadow:
    0 10px 32px rgba(0, 0, 0, 0.42),
    0 0 40px rgba(184, 154, 94, 0.18);
}

.partner-promo__cta:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.partner-promo__cta:active {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .partner-promo__cta {
    transition: none;
  }

  .partner-promo__cta:hover {
    transform: none;
  }
}

.section--narrow {
  max-width: 640px;
}

.section--about {
  padding-top: clamp(3rem, 8vw, 5rem);
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.section.section--about-bio {
  max-width: 1200px;
}

#ueber-mich {
  scroll-margin-top: var(--header-h);
}

.section--contact {
  padding-top: clamp(2.5rem, 7vw, 4.5rem);
}

.section--reviews {
  max-width: 1280px;
  padding-top: clamp(3.5rem, 9vw, 5.5rem);
  padding-bottom: clamp(3.5rem, 9vw, 5.5rem);
}

#bewertungen {
  scroll-margin-top: var(--header-h);
}

.section__head--reviews {
  margin-bottom: clamp(2.25rem, 5vw, 3.25rem);
}

/* Vertrauenszeile über den Karten */
.reviews-trust-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 56rem;
  margin: 0 auto clamp(2.5rem, 6vw, 3.75rem);
  padding: clamp(1.35rem, 3vw, 1.75rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(184, 154, 94, 0.14);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(18, 18, 22, 0.65) 0%, rgba(10, 10, 14, 0.9) 100%);
}

@media (min-width: 768px) {
  .reviews-trust-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
  }
}

.reviews-trust-bar__item {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  min-width: 0;
}

.reviews-trust-bar__line {
  flex-shrink: 0;
  width: 2px;
  align-self: stretch;
  min-height: 2.25rem;
  background: linear-gradient(180deg, var(--accent-gold) 0%, transparent 100%);
  opacity: 0.5;
  border-radius: 1px;
}

.reviews-trust-bar__text {
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.45;
  color: rgba(244, 244, 245, 0.9);
}

/* Bewertungskarten */
.reviews-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.75rem, 4vw, 2.5rem);
}

@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.review-card {
  margin: 0;
  padding: clamp(1.35rem, 3vw, 1.65rem);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 154, 94, 0.16);
  background: linear-gradient(165deg, #14141a 0%, #0c0c10 100%);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.review-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.review-card__icon {
  width: 16px;
  height: 16px;
  opacity: 0.75;
  color: var(--accent-gold);
}

.review-card__icon--wa {
  color: rgba(142, 200, 170, 0.85);
}

.review-card__badge--kleinanzeigen {
  letter-spacing: 0;
  text-transform: none;
}

.review-card__kleinanzeigen-wordmark {
  display: block;
  height: clamp(17px, 3.5vw, 21px);
  width: auto;
  max-width: min(100%, 148px);
  object-fit: contain;
  object-position: left center;
  flex-shrink: 0;
}

.review-card__icon--instagram {
  color: rgba(228, 104, 168, 0.88);
}

.review-card__stars {
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  color: var(--accent-gold);
  line-height: 1;
}

.review-card__quote {
  margin: 0;
  flex: 1 1 auto;
}

.review-card__quote p {
  margin: 0;
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
  line-height: 1.72;
  color: rgba(228, 228, 232, 0.94);
  font-style: normal;
}

.review-card__footer {
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Platzhalter für spätere Google-/Widget-Inhalte */
.reviews-embed:empty {
  display: none;
}

.reviews-embed:not(:empty) {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2rem, 4vw, 2.5rem);
  border-top: 1px solid var(--border-subtle);
}

.section__head {
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section__head--center {
  text-align: center;
  max-width: 34rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(2.5rem, 6vw, 3.5rem);
}

.section__head--showcase {
  margin-bottom: clamp(2rem, 5vw, 2.75rem);
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 600;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.section__lead {
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  max-width: 26rem;
}

.section__lead--compact {
  font-size: 1rem;
  max-width: 22rem;
}

.section__head--center .section__lead {
  max-width: 32rem;
}

/* —— Aktuell verfügbar: Karten-Grid, ruhige Galerie-Optik —— */
.grid--available {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 4.5vw, 3.25rem);
  align-items: stretch;
}

@media (min-width: 768px) {
  .grid--available {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .grid--available {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— Produktkarte (Memorabilia) —— */
.product-card--lux {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #121218 0%, #0b0b0f 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.5);
  transition:
    border-color 0.55s var(--ease-out),
    box-shadow 0.75s var(--ease-soft);
  outline: none;
  cursor: pointer;
}

.product-card--lux:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}

.product-card__media {
  position: relative;
  flex: 0 0 auto;
  aspect-ratio: 6 / 5;
  width: 100%;
  background: #050506;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.product-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.8s var(--ease-soft);
}

.product-card__media-inner {
  width: 100%;
  height: 100%;
  padding: clamp(0.5rem, 2vw, 0.9rem);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card__media-inner img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  transition: filter 0.8s var(--ease-soft), opacity 0.8s var(--ease-soft);
}

/* Jude Bellingham (a17): moderates Einzoomen, optisch an Galerie-Karten (z. B. Zidane) angeglichen — ruhig zentriert */
.product-card[data-product-file="a17.PNG"] .product-card__media-inner {
  overflow: hidden;
  padding: clamp(0.38rem, 1.5vw, 0.72rem);
}

.product-card[data-product-file="a17.PNG"] .product-card__media-inner img {
  object-fit: contain;
  transform: scale(1.64);
  transform-origin: 50% 50%;
}

/* Zusatztext über dem Bild — feste Fläche, kein Layout-Shift */
.product-card__info-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(0.5rem, 1.8vw, 0.85rem);
  box-sizing: border-box;
  background: linear-gradient(
    to top,
    rgba(4, 4, 7, 0.96) 0%,
    rgba(4, 4, 7, 0.78) 38%,
    rgba(4, 4, 7, 0.4) 62%,
    transparent 88%
  );
}

.product-card__info-scroll {
  margin-top: auto;
  max-height: 94%;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.22) transparent;
}

.product-card__info-scroll::-webkit-scrollbar {
  width: 4px;
}

.product-card__info-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.22);
  border-radius: 4px;
}

.product-card__info-text {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.52;
  color: rgba(244, 244, 247, 0.96);
  overflow-wrap: break-word;
  hyphens: auto;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.65);
}

.product-card__info-text--desc {
  margin-bottom: 0.55rem;
  opacity: 0.98;
}

/* Mehrere Abschnitte (getrennt im Text durch „·“): eine Zeile pro Block, Trenner optisch am Zeilenanfang */
.product-card__info-text--parts {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.38rem;
  hyphens: none;
}

.product-card__info-part {
  display: block;
  hyphens: none;
  word-break: normal;
  overflow-wrap: break-word;
}

.product-card__info-sep {
  font-weight: 500;
  color: rgba(232, 232, 238, 0.58);
  margin-right: 0.1em;
  white-space: nowrap;
}

/* Touch: Zusatz immer auf dem Bild lesbar */
@media (hover: none), (pointer: coarse) {
  .product-card__media::after {
    background: rgba(0, 0, 0, 0.2);
  }

  .product-card__info-text {
    transform: none;
    opacity: 1;
  }
}

/* Maus: Overlay erst bei Hover / Fokus im Kartenbereich */
@media (hover: hover) and (pointer: fine) {
  .product-card__info-overlay {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity 0.8s var(--ease-out),
      visibility 0s linear 0.85s;
  }

  .product-card__info-text {
    transform: translate3d(0, 12px, 0);
    opacity: 0;
    transition:
      transform 0.85s var(--ease-out),
      opacity 0.75s var(--ease-out);
  }

  .product-card--lux:hover .product-card__info-overlay,
  .product-card--lux:focus-within .product-card__info-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
      opacity 0.8s var(--ease-out),
      visibility 0s linear 0s;
  }

  .product-card--lux:hover .product-card__info-text,
  .product-card--lux:focus-within .product-card__info-text {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  .product-card--lux:hover .product-card__media::after,
  .product-card--lux:focus-within .product-card__media::after {
    background: rgba(0, 0, 0, 0.5);
  }

  .product-card--lux:hover .product-card__media-inner img,
  .product-card--lux:focus-within .product-card__media-inner img {
    filter: brightness(0.88);
  }

  .product-card--lux:hover,
  .product-card--lux:focus-within {
    border-color: rgba(184, 154, 94, 0.22);
    box-shadow:
      0 40px 80px rgba(0, 0, 0, 0.58),
      0 0 56px var(--accent-gold-glow),
      0 0 0 1px rgba(184, 154, 94, 0.1);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .product-card__info-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: none;
  }

  .product-card__info-text {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .product-card__media::after {
    background: rgba(0, 0, 0, 0.28);
  }

  .product-card__media-inner img {
    filter: brightness(0.92);
  }
}

.product-card__body {
  position: relative;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  padding: 0.85rem 1.05rem 0.95rem;
  min-height: 0;
  min-width: 0;
}

@media (min-width: 768px) {
  .product-card__body {
    padding: 0.95rem 1.15rem 1rem;
  }
}

.product-card__title {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.32;
  margin: 0 0 0.65rem;
  color: #f2f2f4;
  letter-spacing: -0.015em;
}

.product-card__action {
  flex-shrink: 0;
  margin-top: auto;
  padding-top: 0.35rem;
}

.product-card__cta {
  font-size: 0.875rem;
  min-height: 44px;
  font-weight: 600;
  pointer-events: auto;
}

.product-card__cta:hover {
  filter: brightness(1.04);
}

/* —— Showcase: S1–S12 in Manifest-Reihenfolge — gleiche Karten, 1 / 2 / 3 Spalten —— */
.showcase-wall {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3.5vw, 2rem);
  align-items: stretch;
}

/* Tablet: 2 Karten pro Zeile */
@media (min-width: 768px) {
  .showcase-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Desktop: 3 Karten pro Zeile */
@media (min-width: 1200px) {
  .showcase-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.showcase-cell {
  aspect-ratio: 1 / 1;
  width: 100%;
  min-width: 0;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #000000;
  border: 1px solid var(--border-subtle);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  transition:
    border-color 0.45s var(--ease-out),
    box-shadow 0.5s var(--ease-soft);
}

.showcase-cell:hover {
  border-color: rgba(184, 154, 94, 0.14);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.4);
}

.showcase-cell__pad {
  width: 100%;
  height: 100%;
  padding: clamp(0.75rem, 2.8vw, 1.2rem);
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-cell__pad img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.btn--wa {
  background: #25d366;
  color: #fff;
  border: none;
}

.btn--wa:hover {
  background: #22c55e;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.2);
  filter: brightness(1.02);
}

.btn--ig {
  background: linear-gradient(135deg, #f58529, #dd2a7b, #8134af);
  color: #fff;
  border: none;
  font-size: 0.875rem;
}

.btn--ig:hover {
  text-decoration: none;
  filter: brightness(1.08);
}

/* —— About (zweispaltig) —— */
.about-bio {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (min-width: 1200px) {
  .about-bio {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(2.5rem, 6vw, 4.75rem);
  }
}

.about-bio__visual {
  min-width: 0;
}

.about-bio__frame {
  position: relative;
  margin: 0 auto;
  max-width: min(100%, 400px);
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 32px 64px rgba(0, 0, 0, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.07);
}

@media (min-width: 1200px) {
  .about-bio__frame {
    margin: 0;
    max-width: none;
    width: 100%;
  }
}

.about-bio__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}

.about-bio__scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 3, 4, 0.12) 0%, rgba(3, 3, 4, 0.45) 55%, rgba(3, 3, 4, 0.72) 100%),
    linear-gradient(100deg, rgba(3, 3, 4, 0.35) 0%, transparent 50%);
}

.about-bio__content {
  min-width: 0;
}

.about-bio__content h2 {
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 4.2vw, 2.9rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 clamp(1.35rem, 3vw, 2rem);
  color: var(--text);
}

.about-bio__prose p {
  margin: 0 0 1.15rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 1.15vw, 1.0625rem);
  line-height: 1.78;
}

.about-bio__prose p:last-child {
  margin-bottom: 0;
}

.about-bio__meta {
  margin-top: 1.5rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--border-subtle);
  color: rgba(244, 244, 245, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
}

/* —— Contact —— */
.section--contact .contact-grid {
  max-width: 720px;
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }
}

.contact-hint {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 36rem;
  margin-bottom: 1.5rem;
}

.contact-notes {
  max-width: 720px;
  margin: 1.75rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-notes__box {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--text-muted);
  padding: 1rem 1.15rem;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
}

.contact-notes__box strong {
  color: var(--text);
  font-weight: 600;
}

/* —— Legal —— */
.legal-block {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.25rem;
  margin-bottom: 1.5rem;
}

.legal-block h2,
.legal-block h3 {
  font-family: var(--font-display);
  margin-top: 1.5rem;
}

.legal-block h2:first-child,
.legal-block h3:first-child {
  margin-top: 0;
}

.legal-block p,
.legal-block li {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.legal-placeholder {
  padding: 1rem;
  border: 1px dashed var(--accent-gold-dim);
  border-radius: var(--radius-md);
  color: var(--accent-gold);
  font-size: 0.875rem;
  margin: 1rem 0;
}

/* —— Rechtstext-Unterseiten —— */
.legal-page {
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.25rem, 4vw, 1.75rem) clamp(3rem, 8vw, 5rem);
  max-width: 40rem;
  margin: 0 auto;
  width: 100%;
  min-width: 0;
  overflow-wrap: break-word;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  font-weight: 600;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.legal-page .legal-page__meta {
  margin: 0 0 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.legal-back {
  display: inline-block;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
}

.legal-back:hover {
  color: var(--accent-gold);
  text-decoration: none;
}

.prose-legal h2 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2.25rem 0 0.65rem;
  color: var(--text);
  line-height: 1.3;
}

.prose-legal h2:first-of-type {
  margin-top: 0;
}

.prose-legal h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 1.5rem 0 0.5rem;
  color: var(--text);
}

.prose-legal p,
.prose-legal li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0 0 0.85rem;
}

.prose-legal ul,
.prose-legal ol {
  margin: 0 0 1rem;
  padding-left: 1.35rem;
}

.prose-legal li {
  margin-bottom: 0.35rem;
}

.prose-legal address {
  font-style: normal;
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.prose-legal {
  overflow-wrap: break-word;
}

/* —— Footer —— */
.site-footer {
  margin-top: auto;
  flex-shrink: 0;
  border-top: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, #050508 0%, #030304 42%);
  padding: clamp(1.75rem, 4vw, 2.35rem) clamp(1.15rem, 3vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.35rem, 3vw, 1.85rem) clamp(1.5rem, 4vw, 2.5rem);
  align-items: start;
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__col--brand {
    grid-column: 1 / -1;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.15rem;
  }
}

@media (min-width: 1200px) {
  .site-footer__grid {
    grid-template-columns: minmax(0, 1.28fr) repeat(3, minmax(0, 1fr));
    gap: 1.5rem 2rem;
  }

  .site-footer__col--brand {
    grid-column: auto;
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
    padding-right: clamp(0.5rem, 2vw, 1.25rem);
    border-right: 1px solid rgba(255, 255, 255, 0.06);
  }
}

.site-footer__brand {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(248, 248, 250, 0.98);
  line-height: 1.25;
}

.site-footer__tagline {
  margin: 0 0 0.85rem;
  max-width: 22rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(168, 168, 178, 0.95);
}

.site-footer__meta {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.6;
  color: rgba(140, 140, 152, 0.92);
}

.footer-label {
  margin: 0 0 0.65rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(184, 154, 94, 0.72);
}

.footer-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
}

.footer-nav__list a {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(180, 180, 190, 0.95);
  text-decoration: none;
  transition: color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.footer-nav__list a:hover {
  color: rgba(232, 228, 218, 0.98);
  text-decoration: none;
}

.footer-nav__list a[aria-current="page"] {
  color: rgba(198, 182, 148, 0.95);
  pointer-events: none;
}

.footer-nav__list a:focus-visible {
  outline: 1px solid var(--accent-gold-dim);
  outline-offset: 3px;
  border-radius: 2px;
}

.site-footer__bar {
  margin-top: clamp(1.35rem, 3.2vw, 1.85rem);
  padding-top: clamp(1.1rem, 2.5vw, 1.45rem);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer__note {
  margin: 0 auto 1.1rem;
  max-width: 38rem;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.58;
  color: rgba(130, 130, 142, 0.92);
}

.site-footer__base {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem 1.5rem;
}

.site-footer__aside {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

@media (min-width: 768px) {
  .site-footer__base {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
  }

  .site-footer__aside {
    align-items: flex-end;
    gap: 0.4rem;
  }

  .site-footer__note {
    margin-bottom: 1.15rem;
  }
}

.site-footer__copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .site-footer__copyright {
    align-items: flex-start;
    text-align: left;
  }
}

.site-footer__copy-primary {
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(210, 210, 218, 0.95);
}

.site-footer__copy-sep {
  margin: 0 0.35em;
  color: rgba(184, 154, 94, 0.45);
  font-weight: 400;
}

.site-footer__copy-url {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: rgba(120, 120, 132, 0.9);
}

.footer-top-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(148, 148, 160, 0.88);
  text-decoration: none;
  padding: 0.35rem 0.15rem;
  border-radius: var(--radius-sm);
  transition: color 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.footer-top-link__icon {
  flex-shrink: 0;
  opacity: 0.75;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out);
}

.footer-top-link:hover {
  color: rgba(200, 190, 168, 0.95);
  text-decoration: none;
}

.footer-top-link:hover .footer-top-link__icon {
  opacity: 1;
  transform: translateY(-2px);
}

.footer-top-link:focus-visible {
  outline: 1px solid var(--accent-gold-dim);
  outline-offset: 3px;
}

.site-footer__credit {
  margin: 0;
  padding: 0;
  text-align: center;
  font-size: 0.9375rem;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

@media (min-width: 768px) {
  .site-footer__credit {
    text-align: right;
  }
}

.site-footer__credit-prefix {
  color: rgba(232, 238, 245, 0.78);
  margin-right: 0.3em;
}

.site-footer__credit-link {
  color: rgba(118, 206, 255, 0.96);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s var(--ease-out), text-decoration-color 0.2s var(--ease-out);
}

.site-footer__credit-link:hover {
  color: rgba(154, 222, 255, 0.99);
  text-decoration: underline;
  text-decoration-color: rgba(118, 206, 255, 0.45);
  text-underline-offset: 0.18em;
}

.site-footer__credit-link:focus-visible {
  outline: 1px solid rgba(118, 206, 255, 0.55);
  outline-offset: 2px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .footer-top-link,
  .footer-top-link__icon {
    transition: none;
  }

  .footer-top-link:hover .footer-top-link__icon {
    transform: none;
  }

  .site-footer__credit-link {
    transition: none;
  }
}

/* —— Mobile (≤767px): kompakter, Touch-tauglich, kein horizontales Scrollen —— */
@media (max-width: 767px) {
  :root {
    --header-h: 3.875rem;
  }

  .site-header__inner {
    padding: 0 clamp(0.65rem, 3.5vw, 0.95rem);
    gap: 0.5rem;
  }

  .brand {
    gap: 0.45rem;
    min-width: 0;
  }

  .brand__text {
    font-size: 0.8125rem;
    letter-spacing: 0.04em;
  }

  .brand__mark {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
  }

  .mobile-drawer {
    padding: 0.85rem clamp(0.65rem, 3.5vw, 1rem) 1.35rem;
    gap: 0.12rem;
  }

  .mobile-drawer a {
    padding: 0.68rem 0.8rem;
    font-size: 0.9375rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .mobile-drawer__cta .btn {
    min-height: 48px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0.5rem;
  }

  .hero__content {
    padding: clamp(1.2rem, 4vw, 1.75rem) clamp(0.85rem, 4vw, 1.15rem)
      clamp(1.35rem, 4vw, 2rem);
    gap: clamp(1rem, 3vw, 1.35rem);
  }

  .hero h1 {
    font-size: clamp(1.65rem, 6.8vw + 0.4rem, 2.35rem);
    margin-bottom: 1.25rem;
    line-height: 1.08;
  }

  .hero__eyebrow {
    margin-bottom: 0.65rem;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
  }

  .hero__sub {
    font-size: 0.94rem;
    line-height: 1.62;
    margin-bottom: 0.8rem;
  }

  .hero__logo-img {
    max-width: min(280px, 88vw);
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn--lg {
    min-height: 48px;
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    margin-top: 1.5rem;
    padding-top: 1.35rem;
    gap: 1.1rem;
  }

  .section {
    padding: clamp(2.2rem, 8vw, 3rem) clamp(0.85rem, 4vw, 1.15rem);
  }

  .section--available {
    padding-top: clamp(2.5rem, 9vw, 3.75rem);
    padding-bottom: clamp(2.5rem, 9vw, 3.75rem);
  }

  .section--reviews {
    padding-top: clamp(2.5rem, 8vw, 4rem);
    padding-bottom: clamp(2.5rem, 8vw, 4rem);
  }

  .section--about {
    padding-top: clamp(2.35rem, 7vw, 3.25rem);
    padding-bottom: clamp(2.35rem, 7vw, 3.25rem);
  }

  .section__head {
    margin-bottom: clamp(1.25rem, 4vw, 1.85rem);
  }

  .section__head--center {
    margin-bottom: clamp(1.5rem, 5vw, 2.25rem);
  }

  .section__head h2 {
    font-size: clamp(1.58rem, 6.2vw, 2.15rem);
    margin-bottom: 0.55rem;
  }

  .section__lead,
  .section__lead--compact {
    font-size: 0.9375rem;
    line-height: 1.6;
  }

  .about-bio {
    gap: 1.25rem;
  }

  .about-bio__frame {
    max-width: min(100%, 22rem);
  }

  .about-bio__content h2 {
    font-size: clamp(1.55rem, 5.5vw, 2rem);
    margin-bottom: 0.95rem;
  }

  .about-bio__prose p {
    font-size: 0.9375rem;
    line-height: 1.72;
  }

  .grid--available {
    gap: clamp(1.35rem, 5vw, 2rem);
  }

  .showcase-wall {
    gap: clamp(1.1rem, 3vw, 1.5rem);
  }

  .reviews-grid {
    gap: clamp(1.25rem, 4vw, 1.75rem);
  }

  .reviews-trust-bar {
    padding: clamp(1rem, 3vw, 1.25rem) clamp(0.85rem, 3vw, 1.1rem);
  }

  .product-card__cta {
    white-space: normal;
    text-align: center;
    line-height: 1.3;
    min-height: 46px;
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }

  .contact-grid .btn--lg {
    min-height: 48px;
  }

  .contact-notes {
    margin-top: 1.35rem;
  }

  .contact-notes__box {
    padding: 0.85rem 0.95rem;
    font-size: 0.8125rem;
  }

  .section--partner-promo {
    padding-top: clamp(0.85rem, 3vw, 1.25rem);
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
  }

  .partner-promo__badge-discount {
    font-size: clamp(0.68rem, 2.8vw, 0.85rem);
    padding: 0.55rem 0.95rem;
    letter-spacing: 0.08em;
  }

  .partner-promo__cta {
    align-self: stretch;
    width: 100%;
    min-height: 48px;
  }

  .site-footer {
    padding: clamp(1.35rem, 4vw, 1.85rem) clamp(0.85rem, 3.5vw, 1.15rem)
      clamp(1.25rem, 3vw, 1.65rem);
  }

  .site-footer__note {
    font-size: 0.74rem;
    padding: 0 0.25rem;
  }

  .site-footer__aside {
    padding-left: 0.35rem;
    padding-right: 0.35rem;
    padding-bottom: 0.25rem;
  }
}

/* Tablet (768–1199px): etwas luftigere Header-Polster, Menü weiter als Drawer */
@media (min-width: 768px) and (max-width: 1199px) {
  .site-header__inner {
    padding: 0 1.1rem;
  }
}
