
html, body {
  overflow-x: hidden;
}
/* Bilder nie breiter als Bildschirm */
img {
  max-width: 100%;
  height: auto;
}

/* Container: responsive padding */
@media (max-width: 600px) {
  .container {
    padding: 0 16px;
  }
}

@media (max-width: 375px) {
  .container {
    padding: 0 12px;
  }
  
  body {
    font-size: 15px;
  }
  
  h2, h3 {
    font-size: clamp(20px, 5vw, 28px);
  }
}

/* =======================
   JuicyCrew – base styles
   ======================= */

/* Reset & Vars */
*,
*::before,
*::after { box-sizing: border-box; }

:root {
  --bg:#ffffff;
  --fg:#0b3d2e;
  --muted:#4a6657;
  --brand:#0b3d2e;
  --brand-ink:#ffffff;
  --line:#e5e7eb;
  --card:#f8fafc;
  --beige:#f3eee7;       /* Karten-Hintergrund */
  --brown:#3a2c1a;       /* neue dunkle Schriftfarbe */
}

html,body{height:100%}
body{
  margin:0;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--fg); background:var(--bg); line-height:1.6;
}

/* Helpers / Layout */
.container{max-width:1040px;margin:0 auto;padding:0 16px}
.section{padding:56px 0}
.section.alt{background:var(--card)}
h1,h2,h3{font-family:'Playfair Display', serif;font-weight:700;line-height:1.2;margin:0 0 12px}
p{margin:0 0 12px}


.brand{display:inline-flex;align-items:center;gap:10px;text-decoration:none;color:inherit;font-weight:700}
.site-nav{display:flex;align-items:center;gap:16px}

.brand-logo {
  height: 40px; /* anpassen, je nach gewünschter Höhe */
  display: block;
}
/* Base hero (fallback) */
.hero{padding:72px 0 56px;text-align:left}
.hero h1{font-size:clamp(28px,4vw,44px)}
.hero p{color:var(--muted);font-size:18px}

/* KOTA-style Hero – bottom-left cluster */
.hero--kota{
  position:relative; 
  min-height: 100vh; 
  display:flex; 
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-end;
  padding:0 0 60px;
  overflow:hidden; 
  background:var(--bg); 
  color:var(--fg);
  box-sizing: border-box;
}

.hero__grid{
  display:block;
  width:100%;
  max-width:700px;
  padding: 0 2.5rem;
  box-sizing: border-box;
  position:relative;
  z-index:2;
}

.hero__copy{ 
  display:flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
  box-sizing: border-box;
  gap: 1.2rem;
  margin-top: 2rem;
}

.hero__copy h1{
  font-family: 'Playfair Display', serif;
  font-size:clamp(62px, 8.5vw, 105px); 
  font-weight:700; 
  line-height:1;
  letter-spacing:-.02em; 
  margin:0; 
  text-align:left;
  max-width: 100%;
  width: 100%;
  color: var(--fg);
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.hero__copy h1 .line-right {
  display: block;
  margin-left: -22rem;
}

.hero__copy h1 .line-left {
  display: block;
  margin-left: -22rem;
}

.hero__copy h1 .line-left:first-of-type {
  margin-left: 40rem;
}               

.hero__visual{ 
  position:absolute; 
  top:8%;
  right:2%;
  width:48%;
  height:48%;
  z-index:0;
  pointer-events:none;
  overflow:visible;
}

.hero__blob{
  position:absolute; 
  top:5%;
  right:-5%;
  width:105%;
  aspect-ratio: 1;
  border-radius:30% 60% 65% 75%; 
  filter:blur(25px) saturate(1.2);
  background:
    radial-gradient(120% 100% at 20% 30%, #b9cd72 0%, transparent 28%),
    radial-gradient(110% 120% at 85% 60%, #9de8c9 0%, transparent 58%),
    radial-gradient(90% 90% at 50% 50%, #18a96d 0%, transparent 62%);
  opacity:.85;
  transform: translate3d(0,0,0) scale(1.05);
  will-change: transform;
  pointer-events:none;
  z-index:1;
  animation: blobFloat 8s ease-in-out infinite alternate;
}


@keyframes blobFloat {
  0% { 
    transform: translate3d(0,0,0) scale(1.05) rotate(0deg);
    filter:blur(25px) saturate(1.2);
  }
  50% { 
    transform: translate3d(10px,-15px,0) scale(1.08) rotate(2deg);
    filter:blur(22px) saturate(1.3);
  }
  100% { 
    transform: translate3d(-8px,12px,0) scale(1.06) rotate(-1deg);
    filter:blur(28px) saturate(1.1);
  }
}

#hero-waves{
  position:absolute; 
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width:120%; 
  height:100%;
  pointer-events:none; 
  filter: blur(8px) saturate(1.1); 
  opacity:.7;
  mix-blend-mode:multiply; 
  z-index:2;
  animation: waveMovement 20s ease-in-out infinite;
}

@keyframes waveMovement {
  0%, 100% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  25% {
    transform: translate(-50%, -52%) rotate(1deg);
  }
  50% {
    transform: translate(-50%, -54%) rotate(0deg);
  }
  75% {
    transform: translate(-50%, -52%) rotate(-1deg);
  }
}

/* Mobile */
@media (max-width:900px){
  .hero--kota{
    min-height: 100vh;
    padding: 0 0 50px;
    justify-content:flex-end;
  }
  .hero__grid{ 
    max-width:100%;
    padding: 0 1.5rem;
  }
  .hero__visual{ 
    position:absolute;
    top:10%;
    bottom:auto;
    right:0%;
    transform:none;
    width:70%;
    height:70%;
    z-index:1;
  }
  
  .hero__blob{
    top:8%;
    right:0;
    width:95%;
    filter:blur(25px) saturate(1.2);
    opacity:0.85;
  }
  
  
  #hero-waves{
    opacity:.7;
    filter: blur(8px) saturate(1.1);
  }
  .hero__copy{ 
    padding: 0;
    gap: 0.8rem;
    margin-top: 3rem;
    position:relative;
    z-index:2;
  }
  .hero__copy h1{ 
    font-size:clamp(44px, 9.5vw, 64px); 
    margin: 0;
    line-height: 1;
    letter-spacing: -0.02em;
    gap: 0.12em;
  }
  
  .hero__copy h1 .line-right {
    margin-left: -2rem;
  }
  
  .hero__copy h1 .line-left {
    margin-left: -2rem;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 8rem;
  }
}

/* Subline */
.hero__copy .subline {
  position: relative;
  font-size: clamp(16px, 2.2vw, 22px);
  line-height: 1.5;
  max-width: 85%;
  margin: 0;
  margin-left: -22rem;
  font-weight: 400;
  color: rgba(11, 61, 46, 0.8);
  text-align: left;
}

/* Desktop: CTA Button */
.hero__cta {
  display: inline-block;
  background: #C66B3D;
  color: #fff;
  padding: 0.85rem 1.8rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 1.1rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
  transition: transform .18s ease, background .15s ease;
  margin: 0;
  margin-left: -22rem;
  align-self: flex-start;
}

.hero__cta:hover {
  background: #A6532D;
  transform: translateY(-2px);
}

/* Mobile: CTA */
@media (max-width: 900px) {
  .hero__cta {
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    margin-left: -2rem;
    margin-top: -0.3rem;
  }
}

/* ===== Hero Logo Wall - Bottom Left Cluster (inside hero__copy) ===== */

.hero__logos {
  width: 100%;
  margin-top: 0.3rem;
  margin-left: -22rem;
}

/* ===== Viewport Height Responsiveness - ONLY Positioning Adjustments ===== */

/* For laptops with height 800px-900px - Move content UP only */
@media (min-width: 901px) and (max-height: 900px) {
  .hero__copy {
    margin-top: 1.5rem;
    gap: 1rem;
  }
  
  .hero__logos {
    margin-top: 0.2rem;
  }
}

/* For laptops with height below 800px - Move content UP more */
@media (min-width: 901px) and (max-height: 800px) {
  .hero__copy {
    margin-top: 1rem;
    gap: 0.8rem;
  }
  
  .hero__logos {
    margin-top: 0.15rem;
  }
}

/* Specific adjustment for 1366×768 resolution ONLY (client's screen) */
@media (min-width: 1360px) and (max-width: 1370px) and (max-height: 720px) {
  .hero__grid {
    padding-top: 0.5rem !important;
  }
  
  .hero__copy {
    margin-top: 0rem !important;
    gap: 0.7rem;
    padding-left: 1rem;
    transform: translateY(-2rem);
  }
  
  .hero__copy h1 {
    font-size: clamp(48px, 6.5vw, 75px);
    line-height: 0.9;
    margin-bottom: 0.2rem;
  }
  
  .hero__copy h1 .line-right {
    margin-left: -21rem;
  }
  
  .hero__copy h1 .line-left {
    margin-left: -21rem;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 41rem;
  }
  
  .hero__copy .subline {
    font-size: clamp(13px, 1.6vw, 17px);
    line-height: 1.35;
    margin-bottom: 0.1rem;
    margin-left: -21rem;
  }
  
  .hero__cta {
    padding: 0.55rem 1.4rem;
    font-size: 0.85rem;
    margin-left: -21rem;
  }
  
  .hero__logos {
    margin-top: 0.3rem;
    margin-left: -21rem;
  }
  
  .hero__logos .logo-strip img {
    max-height: clamp(48px, 5vw, 68px);
  }
  
  .hero__logos .logo-strip li:nth-child(1) img { 
    max-height: clamp(50px, 5.2vw, 70px);
  }
  .hero__logos .logo-strip li:nth-child(2) img { 
    max-height: clamp(48px, 5vw, 66px);
  }
  .hero__logos .logo-strip li:nth-child(3) img { 
    max-height: clamp(44px, 4.6vw, 62px);
  }
  .hero__logos .logo-strip li:nth-child(4) img { 
    max-height: clamp(50px, 5.2vw, 70px);
  }
  .hero__logos .logo-strip li:nth-child(5) img { 
    max-height: clamp(48px, 5vw, 68px);
  }
}

.hero__logos .logo-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: clamp(24px, 3.5vw, 42px);
  row-gap: 18px;
}

/* Logos - Larger and more visible, NO animations */
.hero__logos .logo-strip img{
  height: auto;
  width: auto;
  max-height: clamp(60px, 6vw, 85px);
  object-fit: contain;
  filter: grayscale(100%) brightness(0);
  opacity: 1;
  transition: none !important;
  animation: none !important;
  transform: none !important;
}

/* Individual logo sizing - properly balanced */
.hero__logos .logo-strip li:nth-child(1) img { /* Bumble */
  max-height: clamp(65px, 6.5vw, 90px);
}
.hero__logos .logo-strip li:nth-child(2) img { /* AG1 */
  max-height: clamp(60px, 5.8vw, 80px);
}
.hero__logos .logo-strip li:nth-child(3) img { /* Zwilling */
  max-height: clamp(55px, 5.3vw, 75px);
}
.hero__logos .logo-strip li:nth-child(4) img { /* ArmedAngels */
  max-height: clamp(65px, 6.5vw, 90px);
}
.hero__logos .logo-strip li:nth-child(5) img { /* MosMosh */
  max-height: clamp(62px, 6vw, 85px);
}

/* NO hover effects */
.hero__logos .logo-strip img:hover{
  filter: grayscale(100%) brightness(0);
  opacity: 1;
  transform: none !important;
  transition: none !important;
  cursor: default;
}

/* === Tablet: mid-range adjustments === */
@media (min-width: 601px) and (max-width: 900px) {
  .hero__copy {
    margin-top: 3.5rem;
  }
  
  .hero__copy h1 .line-right {
    margin-left: -4rem;
  }
  
  .hero__copy h1 .line-left {
    margin-left: -4rem;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 12rem;
  }
  
  .hero__copy .subline {
    margin-left: -4rem;
  }
  
  .hero__cta {
    margin-left: -4rem;
  }
  
  .hero__logos {
    margin-left: -4rem;
  }
}

/* === Mobile Anpassungen für Hero Headline, Subline & Logos === */
@media (max-width: 900px) {
  .hero__copy {
    margin-top: 2rem;
  }
  
  .hero__copy h1 .line-right {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 3rem;
  }
  
  /* Subline mobile */
  .hero__copy .subline {
    margin: 0;
    margin-left: 0;
    text-align: left;
    max-width: 100%;
    font-size: clamp(15px, 4vw, 18px);
    line-height: 1.5;
  }

  /* Logo-Leiste mobil - bottom left cluster with text */
  .hero__logos {
    width: 100%;
    margin-top: 0.6rem;
    margin-left: 0;
  }

  .hero__logos .logo-strip {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    row-gap: 16px;
    padding: 0;
  }

  /* Mobile Logo sizes - larger and more visible */
  .hero__logos .logo-strip li:nth-child(1) img { 
    max-height: 52px; 
  } /* Bumble */
  .hero__logos .logo-strip li:nth-child(2) img { 
    max-height: 48px; 
  }  /* AG1 */
  .hero__logos .logo-strip li:nth-child(3) img { 
    max-height: 44px; 
  }  /* Zwilling */
  .hero__logos .logo-strip li:nth-child(4) img { 
    max-height: 52px; 
  } /* ArmedAngels */
  .hero__logos .logo-strip li:nth-child(5) img { 
    max-height: 50px; 
  } /* MosMosh */

  /* NO hover effects on mobile */
  .hero__logos .logo-strip img:hover {
    filter: grayscale(100%) brightness(0);
    opacity: 1;
    transform: none !important;
    transition: none !important;
    cursor: default;
  }
}
/* Desktop Advertise With Us Button */
@media (min-width: 901px) {
  .site-nav a {
    display: inline-block;
    background-color: #C66B3D;
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .site-nav a:hover {
    background-color: #A6532D;
    transform: translateY(-2px);
    opacity: 1;
  }
}


/* === BENEFITS (sichtbar, ohne Animation) ========================= */
.benefits__headline {
  font-family: 'Playfair Display', serif; /* oder deine Projekt-Schrift */
  font-weight: 700;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.2;
  text-align: center;   /* wirkt edler als links */
  margin: 0 0 24px 0;   /* Abstand nach unten zu den Karten */
}

section#benefits.benefits-kota{
  padding: 24px 0 48px;
  background: transparent;
}

.benefits-kota__viewport{
  max-width: 1080px;  /* Reduced by ~10% from 1200px */
  margin: 0 auto;
  padding: 0 16px;
}

.benefits-kota__snap{
  margin-bottom: 48px;
}

.benefit-card-kota{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;

  background: #f3eee7;
  color: #0b3d2e;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 24px 60px rgba(0,0,0,.08);

  /* Simple appear effect only */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.benefit-card-kota__title{
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4.5vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  max-width: 90%;
  color: #0b3d2e;
}

.benefit-card-kota__text{
  font-size: 17px;
  line-height: 1.75;
  margin: 0;
  max-width: 88%;
  font-weight: 400;
  color: rgba(11, 61, 46, 0.85);
}

.benefit-card-kota__image{
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 3;              /* more square ratio */
  background: #eee;                  /* Fallback, falls Bild fehlt */
}

.benefit-card-kota__image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Adjust first benefit card image to show top portion */
.benefits-kota__snap:first-of-type .benefit-card-kota__image img {
  object-position: top;
}

/* Simple appear effect when card becomes visible */
.benefits-animate .benefit-card-kota.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile */
@media (max-width: 900px){
  .benefit-card-kota{
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 20px;
  }
  .benefit-card-kota__title{ 
    font-size: clamp(24px, 6vw, 32px);
    line-height: 1.2;
    letter-spacing: -0.015em;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .benefit-card-kota__text{ 
    font-size: 16px;
    line-height: 1.7;
    max-width: 100%;
    font-weight: 400;
  }
}
@media (max-width: 900px) {
  section#benefits.benefits-kota {
    padding: 32px 0;   /* weniger Platz oben/unten */
  }

  .benefits__headline {
    margin: 0 0 16px 0;  /* kleiner Abstand nach unten */
    font-size: clamp(24px, 6vw, 36px); /* etwas kleiner auf Mobile */
  }
}

@media (max-width: 900px) {
  section#benefits.benefits-kota {
    padding-top: 40px;
  }

  .benefits__headline {
    display: block;
    font-size: clamp(28px, 7vw, 42px);
    margin: 0 auto 2rem;
    padding: 0 1rem;
    text-align: center;
    max-width: 100%;
  }
}

/* ==== CASES – kompakter, Bild größer, Hover beige ==== */

.cases-grid{
  background: var(--fg);
  color: #fff;
  padding: 100px 0 120px;
}

@media (max-width: 600px) {
  .cases-grid {
    padding: 60px 0 80px;
  }
}
.cases-grid .container{ max-width: 1000px; }
.cases-grid__wrap{ display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:32px; }

/* Laptop scale reduction */
@media (min-width: 1024px) and (max-width: 1440px) {
  .cases-grid__wrap {
    gap: 26px;
  }
  
  .case-tile__media {
    height: 180px;
  }
}

/* Card */
.case-tile{
  position: relative;
  background: color-mix(in srgb, var(--fg) 90%, #ffffff 10%);
  border: 1px solid #f3eee7;
  border-radius: 18px;
  padding: 18px;
  overflow: hidden;
  min-height: 50px; 
  max-height: 300px;
  box-shadow: 0 6px 20px rgba(0,0,0,.16);
  transition: background .3s ease, color .3s ease, box-shadow .3s ease;
}

/* Hover effects - desktop only */
@media (hover: hover) and (pointer: fine) {
  .case-tile{
  transition: background .3s ease, color .3s ease, box-shadow .3s ease, transform .25s ease;
}
.case-tile:hover{
  background: #f3eee7;
  color: #0b3d2e;
    box-shadow: 0 12px 32px rgba(0,0,0,.22);
  transform: translateY(-2px);
  }
}

/* Media: Bildbereich größer machen */
.case-tile__media{
  border-radius: 12px;
  overflow: hidden;
  height: 190px;
  transition: opacity .28s ease;
}
.case-tile__media img{
  width:100%; height:100%; object-fit:cover; display:block;
}

/* Adjust case cards 3 and 4 to show center portion of images */
.cases-grid__wrap article:nth-child(3) .case-tile__media img {
  object-position: center;
}

/* Adjust fourth case card to show slightly up from center */
.cases-grid__wrap article:nth-child(4) .case-tile__media img {
  object-position: center 40%;
}
/* Hide media on hover - desktop only */
@media (hover: hover) and (pointer: fine) {
.case-tile:hover .case-tile__media{
  opacity: 0;
  pointer-events: none;
  }
}

/* Body */
.case-tile__body{
  position: relative;
  padding: 0px 12px 8px;
  z-index: 1;
  transition: color .25s ease;
}
/* Body hover state - desktop only */
@media (hover: hover) and (pointer: fine) {
.case-tile:hover .case-tile__body{
  position: absolute;
  inset: 15px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  }
}

/* Text */
.case-tile__title{
  font-family:'Playfair Display', serif;
  font-weight:700;
  font-size:26px;
  margin:0 0 8px;
  color:#ffffff;
}
.case-tile__teaser{ margin:0; color:#ffffff; font-size:17px; }

/* Long text */
.case-tile__more{
  opacity: 0;
  transition: opacity .25s ease;
}

.case-tile__more p{
  margin: 0 0 6px 0;
  color: #0b3d2e;
  line-height: 1.4;
  font-size: 13px;
}

.case-tile__more p:last-child{
  margin-bottom: 0;
}

/* Desktop hover - optimized layout */
@media (hover: hover) and (pointer: fine) {
.case-tile__body {
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.case-tile:hover .case-tile__body {
    position: absolute;
    inset: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  opacity: 1;
  transform: translateY(0);
}
  
  .case-tile:hover .case-tile__title,
  .case-tile:hover .case-tile__teaser {
    color: #0b3d2e;
    margin: 0;
  }
  
  .case-tile:hover .case-tile__title {
    font-size: 23px;
    line-height: 1.15;
    font-weight: 600;
  }
  
  .case-tile:hover .case-tile__teaser {
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  
  .case-tile:hover .case-tile__more {
    opacity: 1;
  }
}
/* Mobile - tap to reveal (like desktop hover) */
@media (max-width: 900px){
  .cases-grid__wrap{ grid-template-columns:1fr; gap:28px; }
  
  .case-tile{ 
    min-height: 320px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition: background .3s ease, color .3s ease;
  }
  
  .case-tile__media{ 
    height: 200px;
    transition: opacity .3s ease;
  }
  
  /* On tap - reveal text (stays revealed via JS) */
  .case-tile.revealed {
    background: #f3eee7;
    color: #0b3d2e;
  }
  
  .case-tile.revealed .case-tile__media {
    opacity: 0;
    pointer-events: none;
  }
  
  .case-tile.revealed .case-tile__body {
    position: absolute;
    inset: 24px 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
  }
  
  .case-tile.revealed .case-tile__title,
  .case-tile.revealed .case-tile__teaser {
    color: #0b3d2e;
    margin: 0;
  }
  
  .case-tile.revealed .case-tile__title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2px;
  }
  
  .case-tile.revealed .case-tile__teaser {
    font-size: 16px;
    line-height: 1.35;
    margin-bottom: 4px;
  }
  
  .case-tile.revealed .case-tile__more {
    opacity: 1;
  }
  
  .case-tile.revealed .case-tile__more p {
    font-size: 14px;
    line-height: 1.45;
    margin: 0 0 6px 0;
  }
  
  .case-tile.revealed .case-tile__more p:last-child {
    margin-bottom: 0;
  }
}

/* Extra small mobile screens */
@media (max-width: 600px) {
  .case-tile {
    min-height: 300px;
  }
  
  .case-tile.revealed .case-tile__body {
    inset: 20px 16px;
    gap: 8px;
  }
  
  .case-tile.revealed .case-tile__title {
    font-size: 20px;
    line-height: 1.15;
  }
  
  .case-tile.revealed .case-tile__teaser {
    font-size: 15px;
    line-height: 1.35;
  }
  
  .case-tile.revealed .case-tile__more p {
    font-size: 13px;
    line-height: 1.4;
    margin: 0 0 5px 0;
  }
}

/* ===== Customer Service – Chat Section ===== */
.service-chat .container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-chat h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 16px;
}

.service-chat .lede {
  font-size: 18px;
  color: var(--muted);
  margin-bottom: 40px;
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 700px;
  width: 100%;
}

/* Message wrapper for bubble + name */
.msg-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3px;
  position: relative;
  max-width: 65%;
  clear: both;
}

/* WhatsApp-style message bubbles */
.msg {
  padding: 8px 12px 8px 12px;
  border-radius: 8px;
  line-height: 1.4;
  box-shadow: 0 1px 1px rgba(0,0,0,.08);
  font-size: 14.5px;
  position: relative;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transition: opacity 0.4s ease, transform 0.4s ease;
  text-align: left;
}

.msg.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Name styling - small text above bubble */
.msg-name {
  font-size: 12px;
  font-weight: 500;
  color: #667781;
  letter-spacing: 0;
  padding: 0 4px;
  display: block;
  opacity: 0;
  transform: translateY(8px) scale(0.99);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.msg-name.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Brand messages (Julia) - LEFT side, white bubble */
.msg-wrapper.from-brand {
  align-self: flex-start;
  align-items: flex-start;
}

.msg-wrapper.from-brand .msg {
  background: #ffffff;
  color: #111b21;
  border: 1px solid #e9edef;
  border-bottom-left-radius: 2px;
}

.msg-wrapper.from-brand .msg-name {
  text-align: left;
  color: #667781;
}

/* Our messages (Matti) - RIGHT side, dark green */
.msg-wrapper.from-us {
  align-self: flex-end;
  align-items: flex-end;
}

.msg-wrapper.from-us .msg {
  background: #0b3d2e;
  color: #ffffff;
  border-bottom-right-radius: 2px;
}

.msg-wrapper.from-us .msg-name {
  text-align: right;
  color: #667781;
}
/* Chat animations handled in bubble styles above */

/* Barrierearm: Animation aus, wenn gewünscht */
@media (prefers-reduced-motion: reduce){
  .msg, .msg-name{ transition: none; transform: none; opacity: 1; }
  .voice-card{ transition: none; transform: none; opacity: 1; }
  .benefit-card-kota{ transition: none; transform: none; opacity: 1; }
  .case-tile{ transition: none; transform: none; opacity: 1; }
  .hero__blob{ animation: none; }
  #hero-waves{ animation: none; }
}

/* Mobile performance optimizations */
@media (max-width: 900px) {
  /* Reduce animation complexity on mobile */
  .hero__visual {
    top:-3%;
    bottom:auto;
    right:-5%;
    transform:none;
    width:70%;
    height:70%;
    max-height: 48vh;
    z-index:1;
  }
  
  .hero__blob {
    animation-duration: 12s;
    top:0;
    right:0;
    width:100%;
    filter:blur(25px) saturate(1.2);
    opacity:0.85;
  }
  
  #hero-waves{
    opacity:.7;
    filter: blur(8px) saturate(1.1);
  }
  
  /* Optimize transforms for mobile */
  .voice-card,
  .case-tile,
  .msg {
    will-change: transform, opacity;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  /* Benefits cards - no will-change to prevent stuttering */
  .benefit-card-kota {
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
  
  /* Reduce shadow complexity on mobile */
  .voice-card {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  }
  
  .voice-card:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  }
  
  .mobile-device .voice-card {
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  }
  
  
  /* Ensure smooth scrolling on mobile */
  html {
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  
  /* Optimize touch interactions */
  .voice-card,
  .benefit-card-kota {
    touch-action: manipulation;
  }
  
  /* Case tiles - allow tap interaction */
  .case-tile {
    touch-action: manipulation;
}
}
/* === Customer Service Chat – Mobile === */
@media (max-width: 900px) {
  .service-chat {
    padding: 56px 0;
  }

  .service-chat h2 {
    font-size: clamp(24px, 6vw, 36px);
    margin-bottom: 12px;
  }

  .service-chat .lede {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .chat {
    gap: 6px;
  }

  .msg-wrapper {
    max-width: 80%;
    gap: 2px;
  }

  .msg {
    font-size: 14px;
    padding: 7px 10px;
  }

  .msg-name {
    font-size: 11px;
  }
}

/* Extra small screens */
@media (max-width: 375px) {
  .msg-wrapper {
    max-width: 85%;
  }

  .msg {
    font-size: 13px;
    padding: 6px 9px;
  }
}
/* ===== Customer Voices ===== */
.voices {
  background: var(--bg);
  padding: 80px 0;
  margin-bottom: 120px; /* mehr Abstand zum Footer */
}

.voices h2 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 60px;
}

.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

/* Stimmen-Karten – Professional Enhanced */
.voice-card {
  background: linear-gradient(135deg, #f3eee7 0%, #f8f5f0 100%);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #3a2c1a;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  cursor: pointer;
}

/* Mobile-optimized voice card animations */
@media (max-width: 900px) {
  .voices {
    padding: 56px 0;
    margin-bottom: 80px;
  }

  .voices h2 {
    margin-bottom: 40px;
    font-size: clamp(24px, 6vw, 36px);
  }

  .voices__grid {
    gap: 20px;
  }

  .voice-card {
    padding: 24px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(24px) scale(0.95);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }

  .voice-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .voice-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  }
}

/* Desktop animations */
@media (min-width: 901px) {
  .voice-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.voice-card:hover {
  transform: translateY(-12px) scale(1.05);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
  background: linear-gradient(135deg, #f8f5f0 0%, #f3eee7 100%);
  border-color: rgba(198, 107, 61, 0.3);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Professional overlay effect */
.voice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(198, 107, 61, 0.05), rgba(243, 238, 231, 0.1));
  opacity: 0;
  transition: all 0.4s ease;
  pointer-events: none;
  border-radius: 24px;
}

.voice-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(198, 107, 61, 0.08), rgba(243, 238, 231, 0.15));
}

/* Subtle shine effect */
.voice-card::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s ease;
  pointer-events: none;
}

.voice-card:hover::after {
  transform: rotate(45deg) translateX(100%);
}

/* Text with enhanced animations */
.voice__quote {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px 0;
  text-align: left;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  font-weight: 400;
  color: #3a2c1a;
}

.voice-card:hover .voice__quote {
  color: #2a2a2a; 
  transform: translateY(-4px);
  font-weight: 500;
  transition: all 0.2s ease;
}

/* Author section with enhanced styling */
.voice__author {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
  margin-top: auto;
  color: #4a3b2a;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
  padding-top: 16px;
  border-top: 1px solid rgba(58, 44, 26, 0.1);
}

.voice-card:hover .voice__author {
  color: #2a2a2a;
  transform: translateY(-3px);
  border-top-color: rgba(198, 107, 61, 0.3);
  transition: all 0.2s ease;
}

/* Enhanced Avatar styling */
.voice__author img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(198, 107, 61, 0.2);
  transition: all 0.4s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.voice-card:hover .voice__author img {
  transform: scale(1.12) rotate(-4deg);
  border-color: rgba(198, 107, 61, 0.5);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
}

/* =========================
   FOOTER (Terracotta CTA)
   ========================= */
.footer {
  background: #0b3d2e;       /* sattes Waldgrün */
  color: rgba(237,230,219,0.9); /* soft beige */
  padding: 3rem 1.5rem 1.5rem;
  font-family: 'Inter', sans-serif;
}

.footer__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Left: Intro & CTA */
.footer__intro {
  max-width: 340px;
}

.footer__headline {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: #EDE6DB;
}

.footer__cta {
  display: inline-block;
  background: #C66B3D;       /* Terracotta */
  color: #FFFFFF;            /* Weißer Text */
  padding: 0.6rem 1.4rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.2s ease;
}

.footer__cta:hover {
  background: #A6532D;       /* dunkleres Terracotta */
  transform: translateY(-2px);
}

/* Center: Navigation (horizontal, tiefer gesetzt) */
.footer__nav {
  text-align: center;
  margin-top: 5rem; /* deutlich tiefer im Footer */
}

.footer__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-flex;
  gap: 2rem;
}

.footer__nav li {
  margin: 0;
}

.footer__nav a {
  color: rgba(237,230,219,0.85);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.footer__nav a:hover {
  color: #EDE6DB;
}

/* Right: Socials */
.footer__socials {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}

.footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(237,230,219,0.1);
  color: #EDE6DB;
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease;
}

.footer__socials a:hover {
  background: rgba(237,230,219,0.25);
}

/* Bottom Row */
.footer__bottom {
  border-top: 1px solid rgba(237,230,219,0.15);
  margin-top: 2.5rem;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: rgba(237,230,219,0.65);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}

.footer__links a {
  color: rgba(237,230,219,0.65);
  text-decoration: none;
}

.footer__links a:hover {
  color: #EDE6DB;
}

/* Responsive */
@media (max-width: 900px) {
  .footer__container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__intro {
    margin: 0 auto;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom {
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
  }

  .footer__nav {
    margin-top: 3rem; /* auf Mobile etwas weniger */
  }
}

/* =========================
   Mobile Optimierungen: Hero
   ========================= */
@media (max-width: 600px) {
  .hero__copy {
    padding-top: 0rem;
    padding-bottom: 6rem;
    margin-top: 1.5rem;
  }

  .hero__copy h1 {
    font-size: clamp(42px, 8vw, 58px);
    max-width: 100%;
    margin: 0;
    gap: 0.1em;
  }
  
  .hero__copy h1 .line-right {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 2rem;
  }

  .hero__copy .subline {
    font-size: clamp(14px, 4vw, 17px);
    max-width: 100%;
    margin: 0;
    margin-left: 0;
  }

  .hero__cta {
    position: static;
    margin-top: 0.5rem;
    margin-left: 0;
    display: block;
  }
  
  .hero__logos {
    margin-left: 0;
    margin-top: 0.6rem;
  }
  
  .hero__logos .logo-strip {
    gap: clamp(18px, 4vw, 26px);
    row-gap: 14px;
  }
  
  .hero__logos .logo-strip li:nth-child(1) img { 
    max-height: 48px; 
  }
  .hero__logos .logo-strip li:nth-child(2) img { 
    max-height: 44px; 
  }
  .hero__logos .logo-strip li:nth-child(3) img { 
    max-height: 40px; 
  }
  .hero__logos .logo-strip li:nth-child(4) img { 
    max-height: 48px; 
  }
  .hero__logos .logo-strip li:nth-child(5) img { 
    max-height: 46px; 
  }
}
/* =========================
   Mobile: Hero kompakter + Headline weiter hoch
   ========================= */
@media (max-width: 600px) {
  .hero--kota {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
  }

  .hero__grid {
    padding: 0 1.25rem;
    gap: 16px;
  }

  .hero__copy {
    height: 65vh;
    padding: 0.5rem 0;
  }

  .hero__copy h1 {
    font-size: clamp(40px, 8vw, 56px);
    margin-bottom: 12px;
    gap: 0.1em;
  }
  
  .hero__copy h1 .line-right {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left {
    margin-left: 0;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 2rem;
  }

  .hero__copy .subline {
    font-size: clamp(14px, 4vw, 17px);
    margin-top: 0;
    margin-left: 0;
  }

  .hero__visual {
    top:0%;
    bottom:auto;
    right:-8%;
    transform:none;
    width:75%;
    height:75%;
    max-height: 50vh;
    min-height: 200px;
  }
  
  .hero__blob {
    filter:blur(25px) saturate(1.2);
    opacity:0.85;
  }
  
  #hero-waves{
    opacity:.7;
    filter: blur(8px) saturate(1.1);
  }
}

/* Mobile portrait - further optimize animation */
@media (max-width: 600px) and (orientation: portrait) {
  .hero__visual {
    width:78%;
    height:78%;
    top:2%;
    bottom:auto;
    right:-10%;
    transform:none;
    max-height: 52vh;
  }
  
  .hero__blob {
    filter:blur(25px) saturate(1.2);
    opacity:0.85;
  }
  
  #hero-waves{
    opacity:.7;
    filter: blur(8px) saturate(1.1);
  }
}

/* ===================================================
   Mobile (<=600px) — HERO: Headline left, Subline wider, Logos centered
   Fügt starke Overrides hinzu (nur für Mobile), damit frühere Desktop-Regeln
   zuverlässig überschrieben werden.
   =================================================== */
@media (max-width: 600px) {

  /* --- Basis: Container auf Mobile voll nutzbar machen --- */
  .hero,
  .hero .container {
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }
  
  .hero__copy {
    width: 100% !important;
    max-width: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  /* --- Headline: links fixieren (keine Zentrierung) --- */
  .hero__copy h1 {
    display: flex !important;
    flex-direction: column !important;
    text-align: left !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0 !important;
    max-width: 100%;
    width: auto !important;
    gap: 0.1em !important;
  }
  
  .hero__copy h1 .line-right {
    margin-left: 0 !important;
  }
  
  .hero__copy h1 .line-left {
    margin-left: 0 !important;
  }
  
  .hero__copy h1 .line-left:first-of-type {
    margin-left: 2rem !important;
  }

  /* --- Subline: deutlich breiter, links ausgerichtet, nicht über den Rand --- */
  .hero__copy .subline {
    display: block !important;
    position: relative !important;
    left: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    text-align: left !important;
    word-break: break-word !important;
    hyphens: auto !important;
  }

  /* Falls die Subline vorher per transform/left zentriert wurde: sicherstellen, dass sie an der linken Kante startet */
  .hero__copy .subline,
  .hero__copy .subline * {
    left: auto !important;
    transform: none !important;
  }

  /* --- Optional: CTA wieder im Flow (falls vorher absolut war) --- */
  .hero__cta {
    position: static !important;
    margin-top: 0.5rem !important;
    margin-left: 0 !important;
    transform: none !important;
  }
  
  .hero__logos {
    margin-left: 0 !important;
    margin-top: 0.6rem !important;
  }
}
/* ----------------------------
   Responsive header / Burger
   ---------------------------- */

/* ============================
   Navigation & Burger - Professional
   ============================ */

/* Default: Navigation visible, Burger hidden */
.site-nav { 
  display: flex; 
  align-items: center; 
  gap: 16px; 
}

/* Desktop Navigation Links */
.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: opacity 0.3s ease;
}

.site-nav a:hover {
  opacity: 0.8;
}

/* Burger Menu Button - Enhanced with backdrop blur */
.burger {
  display: none;
  background: rgba(11, 61, 46, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  position: relative;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
  z-index: 10001;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.burger:hover {
  background: rgba(11, 61, 46, 0.7);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.burger:active {
  transform: scale(0.95);
}

.burger.active {
  background: rgba(11, 61, 46, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Burger Lines - Fast smooth animation */
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 3px;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  position: absolute;
  left: 50%;
  transform-origin: center;
}

.burger span:nth-child(1) {
  top: 15px;
  transform: translateX(-50%);
}

.burger span:nth-child(2) {
  top: 23px;
  transform: translateX(-50%);
  opacity: 1;
}

.burger span:nth-child(3) {
  top: 31px;
  transform: translateX(-50%);
}

/* Burger Active State - Fast smooth X animation */
.burger.active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
}

.burger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-50%) scale(0);
}

.burger.active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
}

/* Body scroll lock when menu is open */
body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

/* Mobile: Navigation hidden, Burger visible */
@media (max-width: 900px) {
  .site-nav {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 61, 46, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    z-index: 10000;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0.0, 0.2, 1);
    pointer-events: none;
  }

  .site-nav.open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background: rgba(11, 61, 46, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
  }

  @keyframes fadeInMenu {
    from {
      opacity: 0;
      transform: scale(0.98);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .burger {
    display: flex;
  }

  /* Advertise With Us button - Animated entrance */
  .site-nav.open a,
  .site-nav.open a:first-child,
  .site-nav.open a:last-child {
    display: inline-block !important;
    visibility: visible !important;
    background: #C66B3D !important;
    color: #FFFFFF !important;
    padding: 1.1rem 2.8rem !important;
    border-radius: 9999px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    text-align: center !important;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4) !important;
    font-size: 1.15rem !important;
    min-width: 260px !important;
    max-width: 320px !important;
    margin: 0 auto !important;
    position: relative !important;
    z-index: 1 !important;
    letter-spacing: 0.5px !important;
    pointer-events: auto !important;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    animation: slideUpFadeIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s forwards;
  }

  @keyframes slideUpFadeIn {
    0% {
      opacity: 0;
      transform: translateY(30px) scale(0.95);
    }
    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .site-nav.open a:hover,
  .site-nav.open a:first-child:hover,
  .site-nav.open a:last-child:hover {
    background: #A6532D !important;
    transform: translateY(-4px) scale(1.05) !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5) !important;
    transition: all 0.3s ease !important;
  }
  
  .site-nav.open a:active,
  .site-nav.open a:first-child:active,
  .site-nav.open a:last-child:active {
    transform: translateY(-2px) scale(1.02) !important;
    transition: all 0.15s ease !important;
  }
}
/* ============================
   Header – Desktop & Mobile
   ============================ */

/* Header Layout */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #0b3d2e;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  transition: transform 0.3s ease;
}

/* Platz schaffen, damit der Inhalt nicht unter dem Header verschwindet */
body {
  padding-top: 70px;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
}

.brand:hover {
  opacity: 0.8;
}



/* Duplicate burger styles removed - see Navigation & Burger section above */
/* ============================
   Page Content Styles
   ============================ */
.hero--simple {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero--simple h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  color: #0b3d2e;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(18px, 2.5vw, 24px);
  color: rgba(11, 61, 46, 0.8);
  max-width: 600px;
  margin: 0 auto;
}

.content-section {
  padding: 80px 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.content-text h2 {
  font-size: clamp(28px, 4vw, 36px);
  color: #0b3d2e;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.content-text h2:first-child {
  margin-top: 0;
}

.content-text p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(11, 61, 46, 0.8);
  margin-bottom: 1.5rem;
}

.content-text ul {
  list-style: none;
  padding: 0;
}

.content-text li {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(11, 61, 46, 0.8);
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.content-text li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #C66B3D;
  font-weight: bold;
}

@media (max-width: 768px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero--simple {
    padding: 100px 0 60px;
  }
  
  .content-section {
    padding: 60px 0;
  }
}

/* Duplicate burger animation removed - see Navigation & Burger section above */

/* ============================
   Desktop Styles (> 900px)
   ============================ */
@media (min-width: 901px) {
  .hero__cta {
    display: block;
  }
  
  /* Footer Layout */
  /* Footer-Container als Flex-Row */
  .footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem 1.5rem;
    gap: 2rem;
  }

  /* Mitte: Spruch + Button nebeneinander zentriert */
  .footer__middle {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
    justify-content: center;
  }

  /* Tagline-Styling */
  .footer__tagline {
    margin: 0;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(237,230,219,0.9);
    text-align: center;
  }

  /* CTA-Styling */
  .footer__cta {
    display: inline-block;
    background: #C66B3D;
    color: #FFFFFF;
    padding: 0.6rem 1.4rem;
    border-radius: 9999px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.25s ease, transform 0.2s ease;
  }
  .footer__cta:hover {
    background: #A6532D;
    transform: translateY(-2px);
  }

  /* Rechts: leerer Nav-Platzhalter */
  .footer__nav {
    flex: 0 0 auto;
  }
}



