﻿/* ============================================
   INDEX.CSS â€” Startseite
   ============================================ */

/* â”€â”€ HERO â”€â”€ */
.hero {
  position: relative;
  height: 100svh; min-height: 640px;
  overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: flex-end;
}
.hero-video { position: absolute; inset: 0; z-index: 0; }
.hero-video video {
  width: 100%; height: 110%; object-fit: cover;
  transform-origin: center center;
}
.hero-video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.18) 0%,
    rgba(0,0,0,0)    35%,
    rgba(0,0,0,0.62) 80%,
    rgba(0,0,0,0.80) 100%
  );
}
.hero-content { position: relative; z-index: 1; padding: 0 0 72px; }
.hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 40px; }

.hero-eyebrow-wrap {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  opacity: 0; animation: heroFadeUp 0.8s ease 0.3s forwards;
}
.hero-eyebrow-line { display: block; width: 40px; height: 1px; background: rgba(255,255,255,0.5); }
.hero-eyebrow-text { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.65); }

.hero-title {
  display: block;
  font-size: clamp(3rem, 8vw, 7rem);
  font-weight: 900; line-height: 0.95;
  letter-spacing: -0.03em; color: white;
  margin-bottom: 40px;
}
.hero-word { display: block; }
.hero-word-line { display: block; }
.hero-word-1 { font-weight: 300; font-style: italic; opacity: 0; animation: heroSlideUp 0.9s cubic-bezier(.16,1,.3,1) 0.2s forwards; }
.hero-word-2 { display: inline; font-weight: 900; opacity: 0; animation: heroSlideUp 0.9s cubic-bezier(.16,1,.3,1) 0.36s forwards; }
.hero-word-3 { display: inline; font-weight: 900; font-style: italic; opacity: 0; animation: heroSlideUp 0.9s cubic-bezier(.16,1,.3,1) 0.50s forwards; }

.hero-bottom {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 32px;
  opacity: 0; animation: heroFadeUp 0.8s ease 0.85s forwards;
}
.hero-sub { color: rgba(255,255,255,0.65); font-size: 0.92rem; line-height: 1.8; max-width: 340px; }
.hero-ctas { display: flex; gap: 12px; flex-shrink: 0; }

@keyframes heroSlideUp {
  from { opacity: 0; transform: translateY(55px); }
  to   { opacity: 1; transform: none; }
}
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero-scroll-indicator {
  position: absolute; bottom: 32px; right: 40px; z-index: 2;
  display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.45);
  opacity: 0; animation: heroFadeUp 0.8s ease 1.2s forwards;
}
.hero-scroll-text { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll-line {
  display: block; width: 40px; height: 1px;
  background: rgba(255,255,255,0.35); position: relative; overflow: hidden;
}
.hero-scroll-line::after {
  content: ''; position: absolute; inset: 0; background: rgba(255,255,255,0.8);
  transform: translateX(-100%); animation: linePulse 2s ease-in-out 1.5s infinite;
}
@keyframes linePulse { 0%{transform:translateX(-100%)} 50%{transform:translateX(0)} 100%{transform:translateX(100%)} }

/* â”€â”€ MARQUEE â”€â”€ */
.marquee-band {
  overflow: hidden; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; background: var(--bg); cursor: default; user-select: none;
}
.marquee-track {
  display: flex; align-items: center; gap: 32px; white-space: nowrap;
  animation: marqueeScroll 90s linear infinite; width: max-content;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-item { font-size: 0.7rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.marquee-dot { font-size: 0.45rem; color: var(--muted); flex-shrink: 0; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* â”€â”€ HIGHLIGHTS / KATEGORIEN â”€â”€ */
.highlights-section { padding: 100px 0 72px; }
.highlights-header {
  margin-bottom: 64px;
}
.highlights-heading {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 12px;
  margin-bottom: 16px;
}
.highlights-sub {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 520px;
}
.highlights-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border);
  gap: 24px; flex-wrap: wrap;
}
.highlights-meta {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--muted);
}
.highlights-meta-dot { color: var(--border); font-size: 0.5rem; }

/* â”€â”€ BENTO GRID â”€â”€ */
.bento-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 340px; gap: 2px;
  margin-top: 2px;
}
.bento-item { cursor: pointer; overflow: hidden; position: relative; grid-column: span 4; }
.bento-item.bento-featured { grid-column: span 8; grid-row: span 2; }
.bento-img { width: 100%; height: 100%; position: relative; }
.bento-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.25,.46,.45,.94); display: block; }
.bento-item:hover .bento-img img { transform: scale(1.06); }
.bento-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.bento-item:hover .bento-overlay { background: rgba(0,0,0,0.3); }
.bento-cta {
  color: white; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.75); border-radius: 100px; padding: 9px 20px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.22s, transform 0.22s;
}
.bento-item:hover .bento-cta { opacity: 1; transform: none; }
.bento-body {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 36px 32px 22px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 40%, transparent 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
}
.bento-title-row { display: flex; flex-direction: column; gap: 4px; }
.bento-title { font-size: clamp(1rem, 1.6vw, 1.3rem); font-weight: 900; color: white; letter-spacing: -0.02em; line-height: 1.15; }
.bento-partner { font-size: 0.68rem; color: rgba(255,255,255,0.55); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.bento-price { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.65); }

/* â”€â”€ BENTO ALL TILE â”€â”€ */
.bento-all {
  grid-column: span 12;
  grid-row: span 2;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.bento-all-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.bento-all:hover .bento-all-bg { transform: scale(1.04); }
.bento-all-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.54);
  transition: background 0.3s;
}
.bento-all:hover .bento-all-overlay { background: rgba(0,0,0,0.44); }
.bento-all-inner {
  position: relative; z-index: 1;
  text-align: center; max-width: 660px; padding: 48px 40px;
}
.bento-all-eyebrow {
  display: block; font-size: 0.65rem; font-weight: 800; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 24px;
}
.bento-all-heading {
  font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 900; letter-spacing: -0.03em;
  color: white; line-height: 1.0; margin-bottom: 20px;
}
.bento-all-sub {
  font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 36px; line-height: 1.75;
}

/* â”€â”€ HIGHLIGHTS HEADER CENTERED â”€â”€ */
.highlights-header-centered {
  display: block;
  text-align: center;
  border-bottom: none;
  padding-bottom: 0;
}
.highlights-header-centered .highlights-heading { margin: 0 auto 16px; }
.highlights-header-centered .highlights-sub { margin: 0 auto; }

/* â”€â”€ CURATED SECTIONS â”€â”€ */
.curated-section { padding: 100px 0 0; }
.curated-bg-surface { background: var(--surface); }

.curated-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 48px;
}
.curated-header-text { flex: 1; }
.curated-heading {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-top: 10px;
}
.curated-sub {
  font-size: 0.87rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 480px;
  margin-top: 14px;
}
.curated-all-link {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1.5px solid var(--primary);
  padding-bottom: 3px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.curated-all-link:hover { opacity: 0.45; }

/* â”€â”€ CURATED GRIDS â€” full-bleed wie Bento â”€â”€ */
.curated-grid { display: grid; gap: 2px; margin-top: 2px; }
.curated-grid-6 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 380px; }
.curated-grid-4 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 460px; }
.curated-grid-3 { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 400px; }

/* Premium grid: taller, dunklerer Hintergrund scheint durch gaps */
.premium-grid-cards { grid-auto-rows: 480px; }

/* â”€â”€ CURATED CARD â€” identisch zu Bento â”€â”€ */
.curated-card {
  cursor: pointer;
  overflow: hidden;
  position: relative;
}
.curated-card > img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.7s cubic-bezier(.25,.46,.45,.94);
}
.curated-card:hover > img { transform: scale(1.06); }

.curated-card-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
  z-index: 1;
}
.curated-card:hover .curated-card-overlay { background: rgba(0,0,0,0.3); }

.curated-card-cta {
  color: white; font-size: 0.7rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  border: 1.5px solid rgba(255,255,255,0.75); border-radius: 100px; padding: 9px 20px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.22s, transform 0.22s;
}
.curated-card:hover .curated-card-cta { opacity: 1; transform: none; }

.curated-card-body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 36px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.45) 40%, transparent 100%);
  display: flex; flex-direction: column; align-items: flex-start; gap: 6px;
  z-index: 2;
}
.curated-card-title-col { display: flex; flex-direction: column; gap: 4px; }
.curated-partner-tag { font-size: 0.68rem; color: rgba(255,255,255,0.55); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }
.curated-card-name { font-size: clamp(1.1rem, 1.8vw, 1.4rem); font-weight: 900; color: white; letter-spacing: -0.02em; line-height: 1.15; }
.curated-card-price { font-size: 0.82rem; font-weight: 700; color: rgba(255,255,255,0.65); }

/* â”€â”€ PREMIUM SECTION â”€â”€ */
.premium-section { background: var(--primary); padding: 100px 0 0; }

/* â”€â”€ EDITORIAL SPLIT â”€â”€ */
.editorial-split {
  display: grid;
  grid-template-columns: 60fr 40fr;
  min-height: 75vh;
  overflow: hidden;
}
.editorial-split.editorial-split-reverse {
  grid-template-columns: 40fr 60fr;
}

.editorial-img { overflow: hidden; position: relative; }
.editorial-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s cubic-bezier(.25,.46,.45,.94);
  display: block;
}
.editorial-split:hover .editorial-img img { transform: scale(1.03); }

.editorial-text {
  display: flex; align-items: flex-end;
  padding: 0;
  background: var(--bg);
  border-left: 1px solid var(--border);
}
.editorial-split-reverse .editorial-text {
  border-left: none;
  border-right: 1px solid var(--border);
}
.editorial-text-inner {
  padding: 80px 72px;
  width: 100%;
}

.editorial-heading {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 900; letter-spacing: -0.03em;
  line-height: 1.05; margin-top: 12px; margin-bottom: 28px;
}
.editorial-body {
  font-size: 0.92rem; color: var(--muted); line-height: 1.8;
  margin-bottom: 20px; max-width: 380px;
}

/* â”€â”€ STATS â”€â”€ */
.stats-section { padding: 80px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats-grid { display: flex; align-items: center; justify-content: space-between; }
.stat-item { flex: 1; text-align: center; padding: 16px 0; }
.stat-row { display: flex; align-items: baseline; justify-content: center; gap: 3px; }
.stat-num { font-size: clamp(2.6rem, 4.5vw, 4.2rem); font-weight: 900; line-height: 1; letter-spacing: -0.04em; }
.stat-unit { font-size: 1.1rem; font-weight: 700; color: var(--muted); }
.stat-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.stat-divider { width: 1px; height: 72px; background: var(--border); flex-shrink: 0; }

/* â”€â”€ USP SECTION â”€â”€ */
.usp-section { background: var(--primary); padding: 120px 0 80px; position: relative; overflow: hidden; }
.usp-bg-text {
  position: absolute; top: 50%; right: -2%; transform: translateY(-50%);
  font-size: clamp(180px, 22vw, 340px); font-weight: 900; letter-spacing: -0.06em;
  color: rgba(255,255,255,0.022); pointer-events: none; user-select: none; line-height: 1;
}
.usp-header { margin-bottom: 72px; }
.usp-heading { color: white; font-size: clamp(2.2rem, 4.5vw, 3.5rem); font-weight: 900; letter-spacing: -0.03em; margin-top: 12px; }
.usp-items { display: flex; flex-direction: column; }
.usp-row {
  display: grid; grid-template-columns: 36px 1fr; gap: 28px; align-items: start;
  padding: 32px 0; border-top: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.3s ease;
}
.usp-row:last-child { border-bottom: 1px solid rgba(255,255,255,0.07); }
.usp-row:hover { padding-left: 16px; }
.usp-row-num { font-size: 1.1rem; color: rgba(255,255,255,0.18); margin-top: 3px; font-weight: 300; }
.usp-row-body h3 { color: white; font-size: 1.05rem; font-weight: 800; margin-bottom: 10px; }
.usp-row-body p { color: rgba(255,255,255,0.42); font-size: 0.87rem; line-height: 1.75; max-width: 580px; }
.usp-cta {
  display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid rgba(255,255,255,0.07);
}
.btn-outline-white-dark {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.5); border-radius: 100px;
  padding: 14px 32px; font-size: 0.73rem; font-weight: 800;
  letter-spacing: 0.12em; text-transform: uppercase; color: white;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.btn-outline-white-dark:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.8); }
.btn-ghost-dark {
  display: inline-flex; align-items: center;
  font-size: 0.73rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost-dark:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }


/* â”€â”€ TRUST / VERTRAUEN â”€â”€ */
.trust-section { padding: 96px 0 24px; background: var(--bg); }
.trust-header { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.trust-header .eyebrow { display: inline-block; margin-bottom: 14px; }
.trust-heading {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.05;
}
.trust-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.trust-item {
  padding: 32px 28px; border: 1px solid var(--border);
  background: var(--bg); border-radius: 0;
  transition: border-color 0.18s, transform 0.18s, box-shadow 0.18s;
}
.trust-item:hover {
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.06);
}
.trust-icon {
  width: 48px; height: 48px; border-radius: 0;
  background: var(--surface); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.trust-item h3 {
  font-size: 1.05rem; font-weight: 800; line-height: 1.25;
  margin-bottom: 10px; letter-spacing: -0.01em;
}
.trust-item p {
  font-size: 0.92rem; color: var(--muted); line-height: 1.55;
}

@media (max-width: 1000px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .trust-section { padding: 72px 0 16px; }
}
@media (max-width: 600px) {
  .trust-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust-item { padding: 24px 22px; }
}

/* â”€â”€ RESPONSIVE â”€â”€ */
@media (max-width: 1100px) {
  .bento-item { grid-column: span 6; }
  .bento-item.bento-featured { grid-column: span 12; grid-row: span 1; }
  .editorial-split { grid-template-columns: 55fr 45fr; min-height: 60vh; }
  .editorial-split.editorial-split-reverse { grid-template-columns: 45fr 55fr; }
  .editorial-text-inner { padding: 60px 52px; }
  .highlights-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .highlights-header-right { flex-direction: row; align-items: center; padding-left: 0; }
}
@media (max-width: 1000px) {
  .curated-grid-6 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 320px; }
  .curated-header { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 820px) {
  .editorial-split,
  .editorial-split.editorial-split-reverse {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .editorial-img { height: 55vw; min-height: 280px; }
  .editorial-img-right { order: -1; }
  .editorial-text { border-left: none !important; border-right: none !important; border-top: 1px solid var(--border); }
  .editorial-text-inner { padding: 48px 32px; }
  .curated-grid-4 { grid-template-columns: 1fr; grid-auto-rows: 320px; }
  .curated-grid-3 { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 300px; }
  .premium-grid-cards { grid-auto-rows: 360px; }
}
@media (max-width: 760px) {
  .bento-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: 2px; }
  .bento-item { grid-column: span 1; }
  .bento-item.bento-featured { grid-column: span 2; }
  .bento-all { grid-column: span 2; grid-row: span 2; }
  .curated-section { padding: 64px 0 0; }
  .premium-section { padding: 64px 0 0; }
  .stats-grid { flex-wrap: wrap; }
  .stat-item { flex: 0 0 50%; border-bottom: 1px solid var(--border); padding: 28px 0; }
  .stat-divider { display: none; }
  .hero-bottom { flex-direction: column; align-items: flex-start; }
  .hero-ctas { flex-direction: column; width: 100%; }
  .hero-scroll-indicator { display: none; }
  .hero-inner { padding: 0 24px; }
  .hero-title { font-size: clamp(2.8rem, 12vw, 5rem); }
  .highlights-section { padding: 60px 0; }
}
@media (max-width: 480px) {
  .bento-grid { grid-template-columns: 1fr; grid-auto-rows: 260px; }
  .bento-item, .bento-item.bento-featured { grid-column: span 1; grid-row: span 1; }
  .bento-all { grid-column: span 1; grid-row: span 2; }
  .bento-all-inner { padding: 32px 20px; }
  .bento-all-heading { font-size: clamp(1.9rem, 9vw, 3rem); }
  .bento-all-sub { font-size: 0.82rem; margin-bottom: 24px; }
  .curated-grid-6 { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .curated-grid-3 { grid-template-columns: 1fr; grid-auto-rows: 280px; }
  .stat-item { flex: 0 0 100%; }
}

