/* =========================================================
   Startseite (Homepage)
   ========================================================= */

/* --- 1. Split Hero --- */
.home-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 6fr 4fr;
  background: var(--color-forest-dark);
  color: #fff;
  overflow: hidden;
}
.home-hero-content {
  position: relative;
  padding: 180px 80px 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, #122619 0%, #1c3a2e 55%, #2a5340 100%);
  z-index: 2;
}
.home-hero-content::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(184,147,76,.18), transparent 55%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.04), transparent 40%);
  pointer-events: none;
}
.home-hero-content > * { position: relative; z-index: 1; }

.home-hero-content .eyebrow {
  color: var(--color-gold-light);
  margin-bottom: 26px;
}

.home-hero-content h1 {
  font-size: clamp(2.4rem, 5.2vw, 4.6rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 32px;
  max-width: 640px;
}
.home-hero-content h1 em {
  color: var(--color-gold);
  font-style: italic;
}
.home-hero-content .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 560px;
  margin-bottom: 44px;
  line-height: 1.8;
}
.home-hero-meta {
  display: flex;
  gap: 42px;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,.14);
  flex-wrap: wrap;
}
.home-hero-meta-item {
  font-size: .82rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.home-hero-meta-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 6px;
}

.home-hero-image {
  position: relative;
  background-image: url('../images/index-banner.avif');
  background-size: cover;
  background-position: center;
  transition: transform .8s var(--ease);
  will-change: transform;
}
.home-hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(18,38,25,.5) 0%, rgba(18,38,25,0) 40%);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 80px;
  z-index: 3;
  color: rgba(255,255,255,.55);
  font-size: .72rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 14px;
}
.scroll-indicator .line {
  width: 48px;
  height: 1px;
  background: rgba(255,255,255,.35);
  position: relative;
  overflow: hidden;
}
.scroll-indicator .line::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 40%;
  height: 100%;
  background: var(--color-gold);
  animation: scrollline 2.2s var(--ease) infinite;
}
@keyframes scrollline {
  0% { transform: translateX(-120%); }
  60% { transform: translateX(260%); }
  100% { transform: translateX(260%); }
}

/* --- 2. Unternehmen --- */
.intro {
  text-align: center;
  padding: clamp(80px, 10vw, 140px) 0;
}
.intro .brand-mark-lg {
  font-family: var(--font-serif);
  font-size: .92rem;
  letter-spacing: .4em;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 26px;
}
.intro p {
  max-width: 860px;
  margin: 0 auto 1.8em;
  font-size: 1.08rem;
  color: var(--color-text);
  line-height: 1.85;
}
.intro .btn { margin-top: 24px; }

/* --- 3. Team --- */
.team-preview { background: var(--color-cream); }
.team-preview-head {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 72px;
}
.team-preview-head .lead {
  font-size: 1.05rem;
  color: var(--color-muted);
  max-width: 520px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--dur-m) var(--ease);
  overflow: hidden;
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.team-card .photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ccc;
  position: relative;
}
.team-card .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.team-card:hover .photo img { transform: scale(1.05); }
.team-card .photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18,38,25,.45) 0%, transparent 50%);
}
.team-card .info {
  padding: 32px 30px;
}
.team-card h3 {
  margin-bottom: 6px;
  font-size: 1.4rem;
}
.team-card .role {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 20px;
  display: block;
}
.team-card ul li {
  padding: 6px 0;
  font-size: .95rem;
  color: var(--color-text);
  position: relative;
  padding-left: 20px;
}
.team-card ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 10px; height: 1px;
  background: var(--color-gold);
}
.team-preview .btn-wrap {
  text-align: center;
  margin-top: 60px;
}

/* --- 4. Philosophy dark band --- */
.philo-band {
  background: var(--color-forest-dark);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.philo-band::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(184,147,76,.14), transparent 70%);
  pointer-events: none;
}
.philo-band .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
}
.philo-quote {
  padding-right: 20px;
}
.philo-quote .eyebrow { color: var(--color-gold-light); }
.philo-quote blockquote {
  color: #fff;
  font-size: clamp(1.4rem, 2.3vw, 1.9rem);
  line-height: 1.5;
  border-left-color: var(--color-gold);
  padding-left: 30px;
  margin: 20px 0 30px;
}
.philo-quote cite {
  color: var(--color-gold);
  font-family: var(--font-sans);
  font-size: .82rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-style: normal;
  font-weight: 700;
}
.philo-points {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.philo-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.philo-point:last-child { border-bottom: none; }
.philo-point .num {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-gold);
  font-weight: 700;
  line-height: 1;
}
.philo-point h3 {
  color: #fff;
  margin-bottom: 10px;
  font-size: 1.3rem;
}
.philo-point p {
  color: rgba(255,255,255,.72);
  font-size: .98rem;
  line-height: 1.75;
  margin: 0;
}
.philo-band .btn-wrap { margin-top: 50px; grid-column: 1 / -1; }

/* --- 5. Germany / Transatlantic --- */
.market {
  background: var(--color-ivory);
}
.market .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.market-graphic {
  position: relative;
  text-align: center;
}
.market-img {
  width: 100%;
  max-width: 520px;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(28,58,46,.18);
}
.market-img-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--color-forest-dark);
  font-weight: 700;
}
.market-img-label i {
  color: var(--color-gold);
  font-size: .9rem;
}
.market-content p {
  font-size: 1.02rem;
  color: var(--color-text);
  line-height: 1.85;
}

/* --- 6. CTA band --- */
.cta-band {
  background: linear-gradient(120deg, #122619 0%, #1c3a2e 60%, #2a5340 100%);
  color: #fff;
  padding: clamp(80px, 10vw, 120px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before,
.cta-band::after {
  content: "";
  position: absolute;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,147,76,.18), transparent 70%);
}
.cta-band::before { top: -120px; left: -80px; }
.cta-band::after { bottom: -140px; right: -100px; }
.cta-band .container { position: relative; z-index: 2; }
.cta-band h2 {
  color: #fff;
  max-width: 760px;
  margin: 0 auto 24px;
  font-size: clamp(2rem, 3.5vw, 3rem);
}
.cta-band p {
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin: 0 auto 40px;
  font-size: 1.08rem;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .home-hero { grid-template-columns: 1fr; min-height: auto; }
  .home-hero-content { padding: 160px 40px 90px; }
  .home-hero-image {
    min-height: 380px;
    order: -1;
  }
  .scroll-indicator { left: 40px; bottom: 24px; }
  .team-preview-head { grid-template-columns: 1fr; gap: 24px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .philo-band .container { grid-template-columns: 1fr; gap: 50px; }
  .market .container { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 640px) {
  .home-hero-content { padding: 130px 24px 70px; }
  .home-hero-meta { gap: 28px; }
  .team-grid { grid-template-columns: 1fr; }
  .scroll-indicator { display: none; }
}
