/* ==========================================================
   datsche.de – kompakte Editorial Landingpage
   Ergänzung zur bestehenden style.css
   ========================================================== */

:root{
  --editorial-green:#156d48;
  --editorial-blue:#000070;
  --editorial-muted:#123374b8;
  --editorial-light-blue:#eef4fb;
  --editorial-soft:#f8fafc;
  --editorial-border:rgba(21,109,72,.14);
  --editorial-reading-width:760px;
  --editorial-transition:260ms cubic-bezier(.2,.7,.2,1);
}

/* Grundlayout */
.editorial-section{
  padding-block:clamp(3.2rem,6vw,5.5rem);
}

.editorial-narrow{
  max-width:var(--editorial-reading-width);
}

.editorial-soft{
  background:#fafcfd;
}

.editorial-blue{
  background:var(--editorial-light-blue);
}

.editorial-section p{
  font-size:clamp(.98rem,1.1vw,1.08rem);
  line-height:1.72;
  margin:0 0 1.25em;
}

.editorial-section h2,
.editorial-moment h2{
  margin:0 0 clamp(1.4rem,2.5vw,2.4rem);
  color:var(--editorial-green);
  font-size:34px;
  font-weight:700;
  line-height:1.05;
  letter-spacing:-.035em;
}

.editorial-section h3{
  margin:0 0 .7rem;
  color:var(--editorial-green);
  font-size:1.05rem;
}

.editorial-section-head{
  max-width:850px;
  margin-bottom:clamp(2rem,4vw,3.5rem);
}

.editorial-large-copy{
  color:var(--editorial-green);
  font-size:clamp(1.25rem,2vw,1.75rem)!important;
  line-height:1.45!important;
  letter-spacing:-.02em;
}

.editorial-kicker,
.editorial-number{
  display:block;
  margin:0 0 1rem!important;
  color:var(--editorial-muted);
  font-size:.7rem!important;
  font-weight:700;
  line-height:1.2!important;
  letter-spacing:.14em;
  text-transform:uppercase;
}

.editorial-number{
  color:var(--editorial-green);
}


/* Hero */
.editorial-hero{
  position:relative;
  min-height:min(66vh,650px);
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  background:var(--editorial-light-blue);
}

.editorial-hero-image{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.editorial-hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    90deg,
    rgba(247,250,249,.95) 0%,
    rgba(247,250,249,.80) 34%,
    rgba(247,250,249,.18) 72%
  );
}

.editorial-hero-content{
  position:relative;
  z-index:2;
  padding-top:clamp(6rem,10vw,8rem);
  padding-bottom:clamp(2.8rem,5vw,4.5rem);
}

.editorial-hero-content h1{
  max-width:760px;
  margin:0;
  color:var(--editorial-green);
  font-size:clamp(2.5rem,6vw,5rem);
  font-weight:750;
  line-height:.96;
  letter-spacing:-.05em;
}

.editorial-intro{
  max-width:650px;
  margin:clamp(1.2rem,2.5vw,2rem) 0 0;
  color:var(--editorial-blue);
  font-size:clamp(1rem,1.6vw,1.3rem);
  line-height:1.5;
}

.editorial-scroll{
  display:inline-flex;
  margin-top:clamp(1.8rem,3vw,2.8rem);
  padding-bottom:.25rem;
  border-bottom:1px solid currentColor;
  color:var(--editorial-green);
  font-size:.8rem;
  font-weight:650;
  transition:opacity var(--editorial-transition);
}

.editorial-scroll:hover{
  opacity:.65;
}


/* Story-Abschnitte */
.story-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  gap:clamp(2.2rem,5vw,5.5rem);
  align-items:center;
}

.story-grid-reverse{
  grid-template-columns:minmax(0,1.1fr) minmax(0,.9fr);
}

.story-copy{
  max-width:620px;
}

.story-copy p{
  color:var(--editorial-muted);
}

.story-image{
  margin:0;
  overflow:hidden;
}

.story-image img{
  display:block;
  width:100%;
  height:auto;
  aspect-ratio:4/5;
  object-fit:cover;
  border-radius:3px;
  transition:transform 700ms cubic-bezier(.2,.7,.2,1);
}

.story-image:hover img{
  transform:scale(1.012);
}

.story-image figcaption{
  margin-top:.6rem;
  color:var(--editorial-muted);
  font-size:.74rem;
}


/* Quote */
.editorial-quote{
  padding-block:clamp(3.5rem,7vw,6.5rem);
  background:var(--editorial-green);
}

.editorial-quote blockquote{
  margin:0;
  color:#fff;
  font-size:clamp(1.8rem,4vw,3.7rem);
  font-weight:500;
  line-height:1.1;
  letter-spacing:-.035em;
}


/* Großbild */
.editorial-full-image{
  width:100%;
  height:clamp(340px,55vw,650px);
  overflow:hidden;
}

.editorial-full-image img{
  display:block;
  width:100%;
  height:100%;
  object-fit:cover;
}


/* Vergleich */
.editorial-columns{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:clamp(2rem,5vw,5rem);
  max-width:1050px;
}

.editorial-columns p{
  color:var(--editorial-muted);
}


/* Galerie */
.editorial-gallery{
  padding:clamp(3rem,6vw,5rem) 0;
}

.editorial-gallery-grid{
  display:grid;
  grid-template-columns:minmax(0,1.4fr) minmax(220px,.6fr);
  gap:clamp(1rem,2vw,2rem);
  align-items:end;
}

.editorial-gallery figure{
  margin:0;
  overflow:hidden;
}

.editorial-gallery img{
  display:block;
  width:100%;
  object-fit:cover;
  border-radius:3px;
}

.gallery-large img{
  aspect-ratio:7/5;
}

.editorial-gallery figure:not(.gallery-large) img{
  aspect-ratio:4/5;
}


/* Heute */
.editorial-moment{
  padding-block:clamp(3.5rem,7vw,6rem);
  background:var(--editorial-soft);
}

.editorial-moment-inner{
  display:grid;
  grid-template-columns:minmax(90px,.25fr) minmax(0,1fr);
  gap:clamp(1.5rem,4vw,4rem);
  max-width:950px;
}

.moment-label{
  padding-top:.5rem;
  color:var(--editorial-green);
  font-size:.7rem;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.editorial-moment p{
  max-width:680px;
  color:var(--editorial-muted);
  font-size:clamp(.98rem,1.1vw,1.08rem);
  line-height:1.72;
}


/* Markenabschnitt */
.editorial-philosophy{
  padding-block:clamp(3.5rem,7vw,6rem);
}

.editorial-statement{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-height:330px;
  padding:clamp(2rem,4vw,3.5rem);
  background:var(--editorial-light-blue);
  color:var(--editorial-green);
}

.editorial-statement span,
.editorial-statement strong{
  display:block;
  font-size:clamp(1.8rem,4vw,3.8rem);
  line-height:1;
  letter-spacing:-.045em;
}


/* CTA */
.editorial-cta{
  padding-block:clamp(4rem,7vw,6.5rem);
  background:var(--editorial-green);
  color:#fff;
}

.editorial-cta-inner{
  max-width:900px;
}

.editorial-cta .editorial-kicker{
  color:rgba(255,255,255,.66);
}

.editorial-cta h2{
  max-width:820px;
  margin:0;
  color:#fff;
  font-size:34px;
  font-weight:650;
  line-height:1;
  letter-spacing:-.045em;
}

.editorial-cta p{
  max-width:620px;
  margin:clamp(1.5rem,3vw,2.5rem) 0;
  color:rgba(255,255,255,.8);
  font-size:1rem;
  line-height:1.65;
}

.editorial-button{
  display:inline-flex;
  align-items:center;
  gap:2rem;
  padding:.85rem 1.2rem;
  border:1px solid rgba(255,255,255,.6);
  border-radius:999px;
  color:#fff;
  font-size:.9rem;
  font-weight:600;
  transition:
    background var(--editorial-transition),
    color var(--editorial-transition);
}

.editorial-button:hover{
  background:#fff;
  color:var(--editorial-green);
}


/* FAQ */
.editorial-faq{
  padding-block:clamp(3.5rem,7vw,6rem);
}

.faq-list{
  max-width:950px;
  border-top:1px solid var(--editorial-border);
}

.faq-list details{
  border-bottom:1px solid var(--editorial-border);
}

.faq-list summary{
  position:relative;
  padding:clamp(1.2rem,2vw,1.7rem) 3rem clamp(1.2rem,2vw,1.7rem) 0;
  list-style:none;
  color:var(--editorial-green);
  font-size:clamp(1rem,1.4vw,1.15rem);
  font-weight:600;
  cursor:pointer;
}

.faq-list summary::-webkit-details-marker{
  display:none;
}

.faq-list summary::after{
  content:"+";
  position:absolute;
  top:50%;
  right:0;
  transform:translateY(-50%);
  color:var(--editorial-green);
  font-size:1.3rem;
  font-weight:300;
}

.faq-list details[open] summary::after{
  transform:translateY(-50%) rotate(45deg);
}

.faq-list details p{
  max-width:760px;
  margin:0;
  padding:0 0 1.5rem;
  color:var(--editorial-muted);
  font-size:.98rem;
  line-height:1.7;
}


/* Footer */
.editorial-footer{
  margin-top:0;
  padding:clamp(2rem,4vw,3rem) 0;
  background:var(--editorial-light-blue);
}

.editorial-footer .footer-left{
  display:flex;
  flex-direction:column;
  gap:.3rem;
}

.editorial-footer .footer-left p{
  margin:0;
}


/* Tablet */
@media(max-width:900px){
  .story-grid,
  .story-grid-reverse{
    grid-template-columns:1fr;
    gap:2.5rem;
  }

  .story-grid-reverse .story-image{
    order:2;
  }

  .story-grid-reverse .story-copy{
    order:1;
  }

  .story-image{
    width:min(86%,620px);
  }

  .editorial-columns{
    grid-template-columns:1fr;
    gap:1rem;
  }
}


/* Mobile */
@media(max-width:640px){
  .editorial-section{
    padding-block:3.6rem;
  }

  .editorial-hero{
    min-height:62svh;
  }

  .editorial-hero-image{
    object-position:60% center;
  }

  .editorial-hero-overlay{
    background:linear-gradient(
      to bottom,
      rgba(247,250,249,.4),
      rgba(247,250,249,.93)
    );
  }

  .editorial-hero-content{
    padding-top:8rem;
    padding-bottom:2.5rem;
  }

  .editorial-hero-content h1{
    font-size:clamp(2.5rem,12vw,4rem);
  }

  .story-image{
    width:100%;
  }

  .editorial-gallery-grid{
    grid-template-columns:1fr;
  }

  .editorial-gallery figure:not(.gallery-large){
    width:78%;
    margin-left:auto;
  }

  .editorial-moment-inner{
    grid-template-columns:1fr;
    gap:1.25rem;
  }

  .editorial-statement{
    min-height:240px;
  }

  .editorial-button{
    width:100%;
    justify-content:space-between;
  }
}


/* Bewegungsreduktion */
@media(prefers-reduced-motion:reduce){
  .story-image img,
  .editorial-scroll,
  .editorial-button{
    transition:none;
  }

  .story-image:hover img{
    transform:none;
  }
}
