/* ===========================
   TOKENS
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream:   #FAF9F0;
  --white:   #FFFFFF;
  --dark:    #131314;
  --dark2:   #1c1c1e;
  --coral:   #d97757;
  --coral-dk:#c4623e;
  --mid:     #555555;
  --muted:   #8e8e93;
  --border:  rgba(0,0,0,0.09);
  --border-light: rgba(255,255,255,0.12);
  --r:       16px;
  --r-lg:    24px;
  --font: -apple-system, BlinkMacSystemFont, 'SF Pro Text', 'Helvetica Neue', Arial, sans-serif;
  --font-d:  -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Arial, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}

h1,h2,h3 { font-family: var(--font-d); }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; max-width: 100%; }

/* ===========================
   CONTAINER
   =========================== */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ===========================
   NAV
   =========================== */
.nav {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  background: rgba(250,249,240,0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  height: 64px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-logo img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}

.nav-links a {
  padding: 7px 14px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--mid);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover { color: var(--dark); background: rgba(0,0,0,0.06); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: var(--dark);
  color: #fff;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}

.nav-cta:hover { background: #333; transform: scale(0.98); }

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-drawer {
  display: none;
  flex-direction: column;
  padding: 12px clamp(20px, 5vw, 60px) 24px;
  background: rgba(250,249,240,0.97);
  border-top: 1px solid var(--border);
  gap: 4px;
}

.nav-drawer.open { display: flex; }

.nav-drawer a {
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  transition: background 0.2s;
}

.nav-drawer a:hover { background: rgba(0,0,0,0.05); }

.drawer-cta {
  background: var(--dark) !important;
  color: #fff !important;
  text-align: center;
  margin-top: 8px;
  border-radius: 100px !important;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
  display: inline-flex;
  align-items: center;
  padding: 13px 24px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}

.btn-dark {
  background: var(--dark);
  color: #fff;
}
.btn-dark:hover { background: #333; transform: scale(0.98); }

.btn-ghost {
  background: transparent;
  color: var(--dark);
  box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.25);
}
.btn-ghost:hover { box-shadow: inset 0 0 0 1.5px rgba(0,0,0,0.5); }

.btn-coral {
  background: var(--coral);
  color: #fff;
}
.btn-coral:hover { background: var(--coral-dk); transform: scale(0.98); }

.annahme-hinweis {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.annahme-hinweis a { color: #fff; text-decoration: underline; }
.annahme-hinweis a:hover { color: var(--coral); }

/* Labels */
.label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}

.label-light { color: rgba(255,255,255,0.5); }

/* ===========================
   HERO
   =========================== */
.hero {
  padding-top: 64px;
  background: var(--cream);
}

.hero-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px clamp(20px, 5vw, 60px) 60px;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 60px;
  align-items: center;
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5.5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.0;
  color: var(--dark);
  margin-bottom: 22px;
}

.hero-body {
  font-size: 1.1rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; }

.hero-img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: transparent;
}

.hero-graphic {
  width: 100%;
  height: auto;
  display: block;
  max-width: 552px;
}

.hero-img {
  width: 100%;
  height: auto;
  display: block;
  mix-blend-mode: multiply;
}

/* Hero info bar */
.hero-bar {
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px clamp(20px, 5vw, 60px);
  gap: 0;
}

.hero-bar-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bar-value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.bar-label {
  font-size: 0.82rem;
  color: var(--muted);
}

.hero-bar-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  margin: 0 40px;
  flex-shrink: 0;
}

/* ===========================
   SECTIONS
   =========================== */
.section { padding: 100px 0; }

.section-cream { background: var(--cream); }
.section-white { background: var(--white); }

.section-dark {
  background: var(--dark2);
  color: #fff;
}

.section-dark h2 { color: #fff; }
.section-dark .body-lg,
.section-dark .body-md { color: rgba(255,255,255,0.65); }

.section-head {
  margin-bottom: 60px;
  max-width: 640px;
}

.section-head h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--dark);
  margin-bottom: 14px;
}

.section-head-light h2 { color: #fff; }

.section-sub {
  font-size: 1.05rem;
  color: var(--mid);
  line-height: 1.65;
  margin-top: 12px;
}

/* ===========================
   SPLIT (ANNAHME)
   =========================== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.split-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 20px;
}

.body-lg {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}

.body-md {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 28px;
}

.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.split-media {
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  position: relative;
}

.split-media:hover .split-img { transform: scale(1.04); }

/* ===========================
   IMAGE CAPTION
   =========================== */
.img-caption {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: rgba(255,255,255,0.8);
  font-size: 0.72rem;
  padding: 4px 12px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
}

/* ===========================
   AGB ROW
   =========================== */
.agb-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--r);
  overflow: hidden;
}

.agb-item {
  background: var(--white);
  padding: 40px 36px;
}

.section-cream .agb-item { background: var(--cream); }

.agb-num {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 20px;
}

.agb-item h3 {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--dark);
}

.agb-item p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.agb-item strong { color: var(--dark); }

/* ===========================
   SORTIMENT GRID
   =========================== */
.sort-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.sort-card {
  background: var(--cream);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sort-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.sort-card-lg {
  grid-column: span 2;
}

.sort-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #e0dfd6;
}

.sort-card-lg .sort-img-wrap {
  aspect-ratio: 16/7;
}

.sort-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.sort-card:hover .sort-img { transform: scale(1.05); }

.sort-info {
  padding: 24px 24px 28px;
}

.sort-info h3 {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  color: var(--dark);
}

.sort-info p {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.6;
}

.sort-card-highlight {
  background: var(--dark);
  display: flex;
  align-items: center;
}

.sort-card-highlight .sort-info { padding: 36px; }

.sort-card-highlight h3 { color: #fff; font-size: 1.25rem; }
.sort-card-highlight p { color: rgba(255,255,255,0.6); }
.sort-card-highlight strong { color: var(--coral); }

.tag {
  display: inline-block;
  background: var(--coral);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 14px;
}

/* ===========================
   KONTAKT
   =========================== */
.kontakt-grid {
  display: block;
  gap: 32px;
  align-items: start;
}

.kontakt-map {
  border-radius: var(--r-lg);
  height: 460px;
}

.kontakt-map-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1.5px solid rgba(255,255,255,0.12);
  text-decoration: none;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}

.kontakt-map-link:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.map-pin-icon {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 12px rgba(232,69,60,0.5));
}

.map-link-label {
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.map-link-sub {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.6;
}

.google-g { flex-shrink: 0; }

.review-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 48px;
}

.review-tag {
  display: inline-block;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.rating-num {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.01em;
}

.rating-stars {
  font-size: 0.8rem;
  color: #f5a623;
  letter-spacing: 1px;
}

.rating-count {
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.kinfo-block {}

.kinfo-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

.kinfo-val {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin-bottom: 4px;
}

.kinfo-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.55;
}

.kinfo-link {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-bottom: 6px;
  transition: color 0.2s;
}

.kinfo-link:hover { color: #fff; }

.kinfo-address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  font-size: 1rem;
  line-height: 1.5;
  transition: color 0.2s;
}

.kinfo-address-link:hover { color: #fff; }
.kinfo-address-link .map-pin-icon { margin-top: 2px; flex-shrink: 0; }

/* ===========================
   ELFSIGHT WIDGET
   =========================== */
[class^="elfsight-app"] {
  min-height: 100px;
}

.reviews-summary {
  margin-bottom: 40px;
}

.reviews-score {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.score-num {
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--dark);
  line-height: 1;
}

.score-stars { display: flex; gap: 3px; }

.star { font-size: 1.2rem; }
.star.full  { color: #f5a623; }
.star.half  { color: #f5a623; opacity: 0.6; }
.star.empty { color: #d1d1d6; }

.score-count {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 500;
}

.score-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  margin-left: auto;
  transition: color 0.2s;
}

.score-link:hover { color: var(--coral-dk); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reviews-loading,
.reviews-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 40px 0;
}

.review-card {
  background: var(--white);
  border-radius: var(--r);
  padding: 24px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.review-avatar-fallback {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.review-author {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.review-time {
  font-size: 0.78rem;
  color: var(--muted);
}

.review-stars {
  margin-bottom: 10px;
}

.review-stars .star { font-size: 0.95rem; }

.review-text {
  font-size: 0.875rem;
  color: var(--mid);
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .score-link { margin-left: 0; }
}

@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--dark);
  padding: 48px clamp(20px, 5vw, 60px);
  border-top: 1px solid rgba(255,255,255,0.07);
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.5;
}

.footer-inner > p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
}

.footer-inner a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-inner a:hover { color: #fff; }

.footer-copy {
  font-size: 0.78rem !important;
  color: rgba(255,255,255,0.25) !important;
}

/* ===========================
   REVEAL ANIMATION
   =========================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.agb-row .reveal:nth-child(2) { transition-delay: 0.1s; }
.agb-row .reveal:nth-child(3) { transition-delay: 0.2s; }
.sort-grid .reveal:nth-child(2) { transition-delay: 0.05s; }
.sort-grid .reveal:nth-child(3) { transition-delay: 0.1s; }
.sort-grid .reveal:nth-child(4) { transition-delay: 0.15s; }
.sort-grid .reveal:nth-child(5) { transition-delay: 0.2s; }
.sort-grid .reveal:nth-child(6) { transition-delay: 0.25s; }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 56px;
  }

  .hero-right { order: -1; }

  .hero-img-wrap { max-width: 80%; margin: 0 auto; }

  .hero-bar { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-bar-divider { display: none; }

  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-media { aspect-ratio: 16/9; }

  .agb-row { grid-template-columns: 1fr; }

  .sort-grid { grid-template-columns: repeat(2, 1fr); }
  .sort-card-lg { grid-column: span 2; }

  .kontakt-grid { grid-template-columns: 1fr; }

  .nav-cta { display: none; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

@media (max-width: 600px) {
  .section { padding: 72px 0; }

  .sort-grid { grid-template-columns: 1fr; }
  .sort-card-lg { grid-column: span 1; }

  .hero-img-wrap { max-width: 100%; }

  .hero-title { font-size: 2.4rem; }

  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: fit-content; }
}
