/* ============================================================
   WORK & LIFE RENTALS — Industrial Romance
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,300&display=swap');

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

:root {
  --bg:          #080808;
  --bg-2:        #0F0F0F;
  --bg-warm:     #F0EDE6;
  --bg-warm-2:   #E8E4DC;
  --orange:      #E8B84B;
  --orange-dim:  rgba(232,184,75,0.15);
  --gold:        #FF6200;
  --gold-dim:    rgba(255,98,0,0.15);
  --white:       #F5F2EC;
  --text-dark:   #1A1815;
  --text-mid:    #4A4744;
  --text-dim:    rgba(245,242,236,0.5);
  --radius:      6px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; background: var(--bg); }

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

h1, h2, h3 {
  font-family: 'Bebas Neue', impact, sans-serif;
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.02em;
}
p { line-height: 1.75; }

/* Grain overlay on dark sections */
.grain::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 0 40px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(8,8,8,0.97);
  border-bottom-color: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.nav-logo-mark {
  display: flex;
  align-items: center;
  gap: 0;
}
.nav-logo-mark span:first-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--orange);
  padding: 4px 8px 4px 9px;
  border: 1px solid var(--orange);
  border-right: none;
  border-radius: 3px 0 0 3px;
  line-height: 1;
}
.nav-logo-mark span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--gold);
  padding: 4px 9px 4px 8px;
  border: 1px solid var(--gold);
  border-left: none;
  border-radius: 0 3px 3px 0;
  line-height: 1;
}
.nav-logo-text {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2px;
}
.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.5);
  padding: 8px 16px;
  border-radius: 3px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--white); }

.nav-cta-work {
  background: var(--orange) !important;
  color: #000 !important;
  font-weight: 600 !important;
}
.nav-cta-work:hover {
  background: var(--orange) !important;
  box-shadow: 0 0 18px 4px var(--orange-dim), 0 0 6px 1px var(--orange) !important;
}

.nav-cta-life {
  background: var(--gold) !important;
  color: #000 !important;
  font-weight: 600 !important;
  border: none !important;
}
.nav-cta-life:hover {
  background: var(--gold) !important;
  box-shadow: 0 0 18px 4px var(--gold-dim), 0 0 6px 1px var(--gold) !important;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--white);
  transition: 0.25s ease;
}
.mobile-nav {
  display: none;
  list-style: none;
  flex-direction: column;
  padding: 16px 40px 28px;
  background: var(--bg);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.6);
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  display: block;
}

/* ============================================================
   HERO — HOMEPAGE
   ============================================================ */
.hero-home {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-home .hero-bg {
  position: absolute;
  inset: 0;
  background: url('../assets/images/lachlan-rennie-XlIjc1rE2Ic-unsplash.jpg') center 40% / cover no-repeat;
  transform: scale(1.04);
  transition: transform 8s var(--ease);
}
.hero-home.loaded .hero-bg { transform: scale(1); }
.hero-home::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg,
    rgba(8,8,8,0.88) 0%,
    rgba(8,8,8,0.6) 50%,
    rgba(8,8,8,0.75) 100%);
  z-index: 1;
}

.hero-home-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.3s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 12vw, 160px);
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s var(--ease) 0.5s forwards;
}
.hero-title .work { color: var(--orange); }
.hero-title .life { color: var(--gold); }

.hero-subtitle {
  font-size: 20px;
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  max-width: 420px;
  margin-bottom: 44px;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s var(--ease) 0.75s forwards;
}

.hero-location {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,242,236,0.35);
  margin-top: -32px;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.9s forwards;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s var(--ease) 0.95s forwards;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  cursor: pointer;
  border: none;
  text-decoration: none;
}
.btn-work {
  background: var(--orange);
  color: #000;
}
.btn-work:hover {
  background: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 0 28px 6px var(--orange-dim), 0 8px 24px rgba(0,0,0,0.2);
}
.btn-life {
  background: var(--gold);
  color: #000;
  border: 1px solid var(--gold);
}
.btn-life:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 0 28px 6px var(--gold-dim), 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline {
  background: transparent;
  color: rgba(245,242,236,0.6);
  border: 1px solid rgba(245,242,236,0.2);
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(245,242,236,0.5);
}
.btn-full { width: 100%; justify-content: center; }

/* ============================================================
   SPLIT SCREEN — ZWEI WELTEN
   ============================================================ */
.worlds-split {
  display: flex;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}

.worlds-side {
  position: relative;
  width: 50%;
  overflow: hidden;
  cursor: pointer;
  transition: width 0.6s var(--ease);
}
.worlds-split:hover .worlds-side         { width: 30%; }
.worlds-split:hover .worlds-side:hover   { width: 70%; }

.worlds-bg {
  position: absolute;
  inset: -5%;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease), filter 0.6s ease;
  filter: saturate(0.7) brightness(0.65);
}

/* Ausgegraute Seite beim Hover der anderen */
.worlds-split:hover .worlds-side .worlds-bg {
  filter: saturate(0) brightness(0.35);
}
.worlds-split:hover .worlds-side .worlds-overlay { opacity: 0.2; }

/* Aktive (hovered) Seite: normal + leicht größer */
.worlds-side:hover .worlds-bg {
  transform: scale(1.04);
  filter: saturate(1) brightness(0.75) !important;
}
.worlds-side:hover .worlds-overlay { opacity: 1 !important; }

.worlds-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.6s ease;
}
.worlds-overlay-work {
  background: linear-gradient(to top right,
    rgba(255,98,0,0.35) 0%,
    rgba(0,0,0,0.2) 100%);
}
.worlds-overlay-life {
  background: linear-gradient(to top left,
    rgba(232,184,75,0.3) 0%,
    rgba(0,0,0,0.2) 100%);
}

.worlds-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 48px;
  z-index: 2;
}

.worlds-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.worlds-work .worlds-label { color: var(--orange); }
.worlds-work .worlds-label::before { content: ''; width: 20px; height: 1px; background: var(--orange); }
.worlds-life .worlds-label { color: var(--gold); }
.worlds-life .worlds-label::before { content: ''; width: 20px; height: 1px; background: var(--gold); }

.worlds-headline {
  font-size: clamp(52px, 7vw, 96px);
  color: var(--white);
  line-height: 0.9;
  margin-bottom: 20px;
  transition: transform 0.5s var(--ease);
}
.worlds-side:hover .worlds-headline { transform: translateX(6px); }

.worlds-content p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,236,0.7);
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}
.worlds-side:hover .worlds-content p {
  opacity: 1;
  transform: translateY(0);
}
.worlds-content .btn {
  align-self: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease 0.2s, transform 0.4s ease 0.2s, box-shadow 0.25s ease, background 0.25s ease;
}
.worlds-side:hover .worlds-content .btn {
  opacity: 1;
  transform: translateY(0);
}

/* Trennlinie zwischen den Welten */
.worlds-divider-bar {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
  pointer-events: none;
  transform: translateX(-50%);
  transition: left 0.6s var(--ease);
}

/* ============================================================
   SEKTIONEN ALLGEMEIN
   ============================================================ */
.section { padding: 112px 40px; }
.section-light {
  background: var(--bg-warm);
  color: var(--text-dark);
}
.section-dark { background: var(--bg); }
.section-mid { background: var(--bg-2); }

.container { max-width: 1200px; margin: 0 auto; }
.container-narrow { max-width: 800px; margin: 0 auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
}
.section-label-life { color: var(--gold); }
.section-label-light { color: var(--text-mid); }
.section-label-light::before { background: var(--text-mid); }

.section-title {
  font-size: clamp(42px, 6vw, 80px);
  margin-bottom: 20px;
  line-height: 0.95;
}
.section-title-light { color: var(--text-dark); }
.section-intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 56px;
  color: rgba(245,242,236,0.6);
}
.section-intro-light { color: var(--text-mid); }

/* ============================================================
   HERO — SUBPAGES
   ============================================================ */
.hero-sub {
  position: relative;
  padding: 180px 40px 96px;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.hero-sub::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
    rgba(8,8,8,0.85) 0%,
    rgba(8,8,8,0.45) 60%,
    rgba(8,8,8,0.2) 100%);
  z-index: 1;
}
.hero-sub[style*="background-image"] {
  background-size: cover;
  background-position: center;
}
.hero-sub-work { background: linear-gradient(160deg, #0A0502, #080808); }
.hero-sub-life { background: linear-gradient(160deg, #080605, #080808); }

.hero-sub-inner {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-sub-inner .section-label { margin-bottom: 14px; }
.hero-sub h1 {
  font-size: clamp(52px, 9vw, 120px);
  color: var(--white);
  margin-bottom: 20px;
}
.hero-sub p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(245,242,236,0.65);
  max-width: 480px;
  line-height: 1.75;
}

/* ============================================================
   PRODUKT-GRID
   ============================================================ */
.product-loading {
  grid-column: 1 / -1;
  padding: 48px 0;
  font-size: 14px;
  font-weight: 300;
  color: rgba(245,242,236,0.35);
  letter-spacing: 0.05em;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.product-card {
  background: #fff;
  padding: 36px 32px;
  cursor: pointer;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  border: none;
  display: flex;
  flex-direction: column;
}
.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.product-card-life::before { background: var(--gold); }
.product-card:hover { background: #fafafa; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.product-card:hover::before { transform: scaleX(1); }

.product-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(0,0,0,0.18);
  margin-bottom: 24px;
}
.product-img-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--bg-warm-2);
  border-radius: 5px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1.5px dashed rgba(0,0,0,0.12);
}
.product-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}
.product-img-placeholder span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.25);
}
.product-tag {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 14px;
}
.product-tag-work { background: rgba(255,98,0,0.1); color: var(--orange); }
.product-tag-life { background: rgba(232,184,75,0.15); color: #B8892A; }

.product-card h3 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1;
}
.product-card p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.product-price {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
}
.product-price span { font-size: 12px; font-weight: 300; color: #999; }
.product-more-hint {
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 500;
  margin-top: 12px;
  transition: gap 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.product-card-life .product-more-hint { color: #B8892A; }
.product-card:hover .product-more-hint { gap: 10px; }
.product-more-hint::after { content: '→'; }

/* ============================================================
   MODAL
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(6px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 10px;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  transform: translateY(28px) scale(0.97);
  transition: transform 0.35s var(--ease);
  position: relative;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15);
}
.modal-overlay.open .modal-box { transform: translateY(0) scale(1); }

.modal-header {
  padding: 28px 32px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.modal-close {
  background: rgba(0,0,0,0.06);
  border: none;
  border-radius: 50%;
  width: 34px; height: 34px;
  font-size: 14px;
  cursor: pointer;
  color: var(--text-dark);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  flex-shrink: 0;
}
.modal-close:hover { background: rgba(0,0,0,0.12); }

.modal-img {
  height: 180px;
  margin: 20px 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  background: var(--bg-warm);
}
.modal-body { padding: 0 32px 36px; }
.modal-body h2 {
  font-size: 36px;
  margin-bottom: 12px;
  color: var(--text-dark);
}
.modal-body p {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
}
.modal-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 20px 0 28px;
}
.modal-spec {
  background: var(--bg-warm);
  border-radius: 5px;
  padding: 14px 16px;
  border: 1px solid rgba(0,0,0,0.07);
}
.modal-spec-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 5px;
}
.modal-spec-value { font-size: 14px; font-weight: 500; color: var(--text-dark); }

/* ============================================================
   WHY / FEATURES (light section)
   ============================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2px;
  margin-top: 56px;
  background: var(--bg-warm-2);
  border: 1px solid var(--bg-warm-2);
  border-radius: 8px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-warm);
  padding: 40px 36px;
  transition: background 0.25s ease;
}
.feature-card:hover { background: var(--bg-warm-2); }
.feature-icon {
  display: block;
  margin-bottom: 18px;
  color: var(--orange);
  width: 28px;
  height: 28px;
}
.feature-icon svg { display: block; }
.feature-card h3 {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1;
}
.feature-card p {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.7;
  font-weight: 300;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  padding: 96px 40px;
  background: var(--orange);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 240px;
  color: rgba(0,0,0,0.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-banner h2 { font-size: clamp(40px, 7vw, 88px); color: #000; margin-bottom: 16px; }
.cta-banner p { font-size: 16px; color: rgba(0,0,0,0.65); margin-bottom: 36px; font-weight: 300; max-width: 480px; margin-left: auto; margin-right: auto; }
.btn-cta-dark {
  background: #000;
  color: var(--white);
  border: none;
  padding: 16px 36px;
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-cta-dark:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}

/* ============================================================
   ANFRAGE / KONTAKT
   ============================================================ */
/* Honeypot anti-spam field — off-screen, never visible to humans */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}

.form-success {
  max-width: 720px;
  margin: 0 auto;
  padding: 56px 40px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #2E7D32;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  margin-bottom: 12px;
}
.form-success p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(0,0,0,0.55);
  line-height: 1.8;
}
.section-dark .form-success,
.section-mid .form-success {
  background: rgba(245,242,236,0.05);
  border-color: rgba(245,242,236,0.1);
}
.section-dark .form-success h3,
.section-mid .form-success h3 { color: var(--white); }
.section-dark .form-success p,
.section-mid .form-success p { color: rgba(245,242,236,0.55); }

/* Produkt- / Geräte-Picker (Life & Work) */
.pick-rows { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }
.product-pick-row { display: flex; gap: 8px; align-items: center; }
.product-pick-row select { flex: 1; }
.product-pick-remove {
  flex-shrink: 0;
  width: 34px; height: 34px;
  background: rgba(255,60,60,0.08);
  border: 1px solid rgba(255,60,60,0.22);
  border-radius: 6px;
  color: #ff6b6b;
  font-size: 18px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
}
.product-pick-remove:hover { background: rgba(255,60,60,0.2); }
.pick-add-btn {
  background: none;
  border-radius: 7px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  padding: 7px 14px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  width: 100%;
}
.pick-add-btn-work {
  border: 1px dashed rgba(255,98,0,0.3);
  color: rgba(255,98,0,0.6);
}
.pick-add-btn-work:hover { border-color: var(--orange); color: var(--orange); }
.pick-add-btn-life {
  border: 1px dashed rgba(232,184,75,0.3);
  color: rgba(232,184,75,0.6);
}
.pick-add-btn-life:hover { border-color: var(--gold); color: var(--gold); }

.contact-form-wrap {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  padding: 56px 52px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 0; }
.form-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form-group label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 14px 18px;
  background: var(--bg-warm);
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 5px;
  font-size: 15px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: #fff;
}
.form-group select option { background: #fff; color: var(--text-dark); }

/* Dark form variant (Über mich / dunkle Seiten) */
.section-dark .contact-form-wrap,
.section-mid .contact-form-wrap {
  background: #111;
  border-color: rgba(255,255,255,0.07);
  box-shadow: none;
}
.section-dark .form-group label,
.section-mid .form-group label { color: rgba(245,242,236,0.4); }
.section-dark .form-group input,
.section-dark .form-group select,
.section-dark .form-group textarea,
.section-mid .form-group input,
.section-mid .form-group select,
.section-mid .form-group textarea {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.section-dark .form-group select option,
.section-mid .form-group select option { background: #111; color: var(--white); }

/* ============================================================
   ÜBER MICH
   ============================================================ */
.about-hero {
  background: var(--bg);
  padding: 180px 40px 96px;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
}
.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-hero h1 { font-size: clamp(48px, 8vw, 108px); color: var(--white); margin-bottom: 24px; }
.about-hero p { font-size: 16px; font-weight: 300; color: rgba(245,242,236,0.65); line-height: 1.85; }

.about-photo-wrap {
  aspect-ratio: 3/4;
  border-radius: 6px;
  overflow: hidden;
  background: #1A1A1A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  max-height: 460px;
  border: 1px solid rgba(255,255,255,0.06);
}

.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 56px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  overflow: hidden;
}
.value-card {
  background: var(--bg-2);
  padding: 32px 28px;
  transition: background 0.25s ease;
}
.value-card:hover { background: #161616; }
.value-icon { width: 26px; height: 26px; margin-bottom: 14px; display: block; color: var(--orange); }
.value-icon svg { display: block; }
.value-card h3 { font-size: 20px; color: var(--white); margin-bottom: 8px; line-height: 1; }
.value-card p { font-size: 13px; font-weight: 300; color: rgba(245,242,236,0.5); line-height: 1.65; }

/* ============================================================
   ANLÄSSE (Life page)
   ============================================================ */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2px;
  margin-top: 48px;
  background: rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}
.occasion-card {
  background: #fff;
  padding: 32px 20px;
  text-align: center;
  transition: background 0.25s ease;
  cursor: default;
}
.occasion-card:hover { background: var(--bg-warm); }
.occasion-card .oc-icon { width: 32px; height: 32px; margin-bottom: 12px; display: block; color: var(--gold); }
.occasion-card .oc-icon svg { display: block; }
.occasion-card h3 { font-size: 16px; color: var(--text-dark); font-weight: 500; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #000;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 56px 40px 36px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer-logo { display: flex; align-items: center; gap: 16px; }
.footer-links { display: flex; gap: 32px; }
.footer-links a {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 11px; color: rgba(245,242,236,0.2); letter-spacing: 0.5px; }

/* ============================================================
   NEUE PRODUKTE CAROUSEL
   ============================================================ */
.neue-section { overflow: hidden; }

.neue-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 24px;
}
.neue-title { margin-bottom: 0; }

.neue-arrows { display: flex; gap: 12px; }
.neue-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,236,0.2);
  background: transparent;
  color: var(--white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.neue-arrow:hover {
  background: rgba(232,184,75,0.1);
  border-color: var(--orange);
  transform: scale(1.08);
}

.neue-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.neue-track-wrap:active { cursor: grabbing; }

.neue-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.neue-card {
  flex: 0 0 300px;
  border-radius: var(--radius);
  padding: 0;
  background: var(--bg-2);
  border: 1px solid rgba(245,242,236,0.06);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.neue-card:hover { transform: translateY(-6px); }

.neue-card-work { border-top: 2px solid var(--orange); }
.neue-card-work:hover { box-shadow: 0 12px 40px rgba(232,184,75,0.12); border-color: var(--orange); }
.neue-card-life { border-top: 2px solid var(--gold); }
.neue-card-life:hover { box-shadow: 0 12px 40px rgba(255,98,0,0.12); border-color: var(--gold); }

.neue-card-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
}
.neue-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.neue-card:hover .neue-card-img img { transform: scale(1.04); }
.neue-card-img-placeholder span { font-size: 12px; color: rgba(245,242,236,0.2); letter-spacing: 1px; text-transform: uppercase; }

.neue-card h3, .neue-card p, .neue-card-badge, .neue-card-price { padding: 0 20px; }
.neue-card h3 { padding-top: 16px; font-size: 18px; color: var(--white); margin-bottom: 8px; }
.neue-card p { font-size: 13px; font-weight: 300; color: rgba(245,242,236,0.55); line-height: 1.65; margin-bottom: 12px; }
.neue-card-badge {
  display: inline-block;
  margin: 14px 20px 0;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 2px;
}
.neue-badge-work { background: var(--orange-dim); color: var(--orange); }
.neue-badge-life { background: var(--gold-dim); color: var(--gold); }
.neue-card-price {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  padding-bottom: 20px;
  margin-top: 4px;
}

/* Q&A Accordion */
.faq-list { margin-top: 48px; }
.faq-item {
  border-bottom: 1px solid rgba(245,242,236,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(245,242,236,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: transform 0.3s, background 0.2s, border-color 0.2s;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-dim);
  border-color: var(--orange);
  color: var(--orange);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
}
.faq-answer-inner {
  font-size: 15px;
  font-weight: 300;
  color: rgba(245,242,236,0.6);
  line-height: 1.85;
  padding-bottom: 20px;
}
.faq-item.open .faq-answer { max-height: 400px; }

/* Anzeigen Page */
.anzeigen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.anzeige-slot {
  border: 2px dashed rgba(245,242,236,0.15);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: border-color 0.3s, background 0.3s;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.anzeige-slot:hover {
  border-color: var(--orange);
  background: rgba(232,184,75,0.03);
}
.anzeige-slot-label {
  font-size: 9px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(245,242,236,0.25);
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.anzeige-slot-icon { width: 36px; height: 36px; margin-bottom: 8px; display: block; color: var(--orange); }
.anzeige-slot-icon svg { display: block; }
.anzeige-slot h3 { font-size: 16px; color: rgba(245,242,236,0.5); font-weight: 400; }
.anzeige-slot p { font-size: 13px; color: rgba(245,242,236,0.3); font-weight: 300; line-height: 1.6; }
.anzeige-slot-placeholder {
  width: 100%;
  height: 80px;
  margin-bottom: 16px;
  border-radius: 6px;
  border: 1px dashed rgba(255,98,0,0.3);
  background: rgba(255,98,0,0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,98,0,0.4);
}
.anzeige-cta-box {
  padding: 72px 40px;
  text-align: center;
}
.anzeige-cta-box h2 { font-size: clamp(28px, 4vw, 48px); margin-bottom: 16px; color: #fff; }
.anzeige-cta-box p { font-size: 15px; color: rgba(255,255,255,0.6); font-weight: 300; line-height: 1.8; max-width: 560px; margin: 0 auto 32px; }

/* ============================================================
   SCROLL ANIMATIONEN
   ============================================================ */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .worlds-split { flex-direction: column; height: auto; }
  .worlds-side { width: 100% !important; height: 56vh; }
  .worlds-split:hover .worlds-side { width: 100%; }
  .about-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-photo-wrap { max-height: 320px; }
  .about-values { grid-template-columns: 1fr; }
  .section { padding: 80px 24px; }
  .hero-sub { padding: 140px 24px 72px; }
  .about-hero { padding: 140px 24px 72px; }
  #navbar { padding: 0 24px; }
}
@media (max-width: 640px) {
  .hero-home-inner { padding: 0 24px; }
  .hero-btns { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr; }
  .modal-specs { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 36px 24px; }
  .worlds-content { padding: 36px 28px; }
  .features-grid { grid-template-columns: 1fr; }
  footer { padding: 48px 20px 32px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 14px 20px; }
}
