/* =========================
   Design Tokens / Colors
========================= */
:root{
  --bg:#f7efe6;
  --muted:#f1e6db;
  --accent:#c98b5a;
  --accent-dark:#b36b3f;
  --text:#2b1f15;
  --max:1100px;

  --radius:12px;
  --shadow:0 8px 22px rgba(30,20,10,.06);
}

/* =========================
   Base
========================= */
html,body{
  height:100%;
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,"Helvetica Neue",Arial;
  background:var(--bg);
  color:var(--text);
}

p{
  margin:0 0 1rem;
  color:#4b3e35;
  line-height:1.55;
}

h1,h2,h3{
  letter-spacing:-0.02em;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 1rem;
}

/* =========================
   Header / Nav
========================= */
.site-header{
  background:var(--accent);
  color:rgb(255, 255, 255);
  position:sticky;
  top:0;
  z-index:10;
  box-shadow:0 1px 0 rgba(0,0,0,.06);
  -webkit-backdrop-filter:saturate(120%);
  backdrop-filter:saturate(120%);
}

.site-header .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: .3rem 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:.6rem;
  text-decoration:none;
}

.brand img{height:48px}

.brand-text{line-height:1}
.brand .name{
  font-weight:800;
  color:white;
  font-size:1.05rem;
}
.brand .tagline{
  display:block;
  font-size:.82rem;
  color:rgba(255,255,255,.95);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.main-nav a {
  margin-left: 0;
  color: rgba(255,255,255,.95);
  text-decoration: none;
  font-size: .95rem;
  position: relative;
}

.main-nav a::after{
  content:'';
  position:absolute;
  left:0;
  right:0;
  bottom:-6px;
  height:2px;
  background:transparent;
  -webkit-transform:scaleX(0);
  transform:scaleX(0);
  transform-origin:left center;
  -webkit-transition:.22s ease;
  transition:.22s ease;
}

.main-nav a:hover::after{
  -webkit-transform:scaleX(1);
  transform:scaleX(1);
  background:white;
}

.main-nav .cta{
  background:var(--accent-dark);
  padding:.4rem .65rem;
  border-radius:6px;
}

/* =========================
   Skip Link
========================= */
.skip-link{
  position:absolute;
  left:12px;
  top:12px;
  background:#fff;
  padding:.4rem .6rem;
  border-radius:6px;
  color:var(--text);
  -webkit-transform:translateY(-140%);
  transform:translateY(-140%);
  -webkit-transition:.18s ease;
  transition:.18s ease;
  z-index:999;
}
.skip-link:focus{
  -webkit-transform:translateY(0);
  transform:translateY(0);
  box-shadow:0 6px 20px rgba(0,0,0,.12);
}

/* =========================
   Hero
========================= */
.hero{
  position:relative;
  overflow:hidden;
}

.hero-bg{
  position:absolute;
  inset:0;
  height:420px;
  background:linear-gradient(180deg,var(--muted),var(--bg));
}

.hero-bg::before{
  content:"";
  position:absolute;
  inset:0;
  opacity:.22;
  background-image:url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 87'><polygon points='50 0 100 25 100 62 50 87 0 62 0 25' fill='none' stroke='%23e6d7c5' stroke-width='2'/></svg>");
  background-size:140px 121px;
}

.wrap{
  min-height:380px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.overlay{
  background:rgba(255,255,255,.92);
  border-radius:16px;
  padding:2rem;
  text-align:center;
  max-width:900px;
  box-shadow:
    0 20px 50px rgba(30,20,10,.10),
    inset 0 2px 0 rgba(255,255,255,.6);
  -webkit-backdrop-filter:blur(4px);
  backdrop-filter:blur(4px);
}

h1{
  font-size:clamp(1.6rem,3vw,2.8rem);
  margin:0 0 .6rem;
  line-height:1.15;
  opacity:0;
  -webkit-transform:translateY(12px);
  transform:translateY(12px);
  -webkit-animation:fadeInUp .7s ease .12s forwards;
  animation:fadeInUp .7s ease .12s forwards;
}

.hero p{
  opacity:0;
  -webkit-transform:translateY(8px);
  transform:translateY(8px);
  -webkit-animation:fadeInUp .7s ease .24s forwards;
  animation:fadeInUp .7s ease .24s forwards;
}

@-webkit-keyframes fadeInUp{
  to{opacity:1;-webkit-transform:none;transform:none}
}

@keyframes fadeInUp{
  to{opacity:1;transform:none}
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-block;
  padding:.7rem 1.2rem;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
}

.btn.primary{
  background:linear-gradient(90deg,var(--accent-dark),var(--accent));
  color:white;
  box-shadow:var(--shadow);
}

.btn.outline{
  background:rgba(255,255,255,.6);
  border:2px solid rgba(0,0,0,.12);
  color:var(--text);
}

/* =========================
   Sections
========================= */
.section{
  padding:clamp(2.5rem,6vw,4rem) 0;
}

.section.alt{
  background:white;
}

.section h2{
  margin:0 0 1rem;
  font-size:1.35rem;
}

/* =========================
   Features / Benefits
========================= */
.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1rem;
  list-style:none;
  padding:0;
  margin:0;
}

.features li{
  background:white;
  padding:1rem 1rem 1rem 3rem;
  border-radius:12px;
  box-shadow:
    0 8px 22px rgba(30,20,10,.06),
    inset 0 1px 0 rgba(255,255,255,.7);
  position:relative;
  transition:.2s ease;
}

.features li:hover{
  -webkit-transform:translateY(-2px);
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(30,20,10,.10);
}

.features li::before{
  content:'✔';
  position:absolute;
  left:1rem;
  top:1rem;
  width:26px;
  height:26px;
  border-radius:6px;
  background:linear-gradient(
    180deg,
    rgba(201,139,90,0.95),
    var(--accent-dark)
  );
  background:linear-gradient(
    180deg,
    color-mix(in srgb,var(--accent) 85%,white 15%),
    var(--accent-dark)
  );
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:13px;
}

.features li span{
  display:block;
  margin-top:.5rem;
  color:#555;
  font-size:.95rem;
}

/* =========================
   Steps
========================= */
.steps{
  counter-reset:step;
  list-style:none;
  padding:0;
  margin:0;
}

.steps li{
  position:relative;
  padding-left:56px;
  margin-bottom:1.2rem;
  display:flex;
  align-items:center;
  min-height:36px;
}

.steps li::before{
  counter-increment:step;
  content:counter(step);
  position:absolute;
  left:0;
  top:50%;
  -webkit-transform:translateY(-50%);
  transform:translateY(-50%);
  width:36px;
  height:36px;
  border-radius:50%;
  background:linear-gradient(
    180deg,
    var(--accent),
    var(--accent-dark)
  );
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  box-shadow:0 6px 14px rgba(30,20,10,.15);
}


/* =========================
   Leistungsumfang
========================= */
.benefit-columns{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1rem;
}

.benefit-columns .col{
  background:white;
  padding:1.2rem;
  border-radius:12px;
  box-shadow:0 6px 18px rgba(30,20,10,.04);
}

.benefit-columns h3{
  margin:0 0 .75rem;
  font-size:1.05rem;
}

.benefit-columns h3::after{
  content:'';
  display:block;
  width:40px;
  height:3px;
  background:var(--accent);
  border-radius:2px;
  margin-top:.4rem;
}

/* =========================
   Gallery
========================= */
.gallery .grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}

.grid.placeholders .card{
  background:linear-gradient(180deg,#fff,#fdf9f5);
  padding:1.2rem;
  border-radius:12px;
  box-shadow:0 3px 14px rgba(30,20,10,.05);
  text-align:center;
  transition:.2s ease;
}

.grid.placeholders .card:hover{
  -webkit-transform:translateY(-3px);
  transform:translateY(-3px);
}

.grid.placeholders .icon{
  font-size:28px;
  margin-bottom:.6rem;
}

/* =========================
   Footer
========================= */
.site-footer{
  padding:1.5rem 0;
  text-align:center;
  color:#6b5a4e;
}

/* =========================
   Focus
========================= */
:where(a,button){
  outline:0;
}
:where(a:focus,button:focus){
  outline:4px solid rgba(201,139,90,0.7);
  outline:4px solid color-mix(in srgb,var(--accent) 45%,white 50%);
  outline-offset:2px;
}

/* =========================
   Responsive
========================= */
@media (max-width:900px){
  .features{grid-template-columns:repeat(2,1fr)}
  .gallery .grid{grid-template-columns:repeat(2,1fr)}
  .benefit-columns{grid-template-columns:1fr}
}

@media (max-width:600px){
  .features{grid-template-columns:1fr}
  .gallery .grid{grid-template-columns:1fr}
  .brand img{height:30px}
  .brand .name{display:none}
  .overlay{padding:1.2rem}
  .hero-bg{height:340px}
}

/* Hero background image */
.hero-bg{
  background:
    linear-gradient(
      rgba(247,239,230,.88),
      rgba(247,239,230,.96)
    ),
    url("../images/IMG_2508.JPEG");
  background-size:cover;
  background-position:center;
}

/* Split layout with image */
.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:2.5rem;
  align-items:center;
}

.split img,
.inline-image img,
.real-gallery img{
  width:100%;
  border-radius:14px;
  box-shadow:0 12px 30px rgba(30,20,10,.15);
}

/* Inline image below Leistungen */
.inline-image{
  margin-top:2rem;
}

/* Real gallery */
.real-gallery{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:1.5rem;
}

.real-gallery figcaption{
  margin-top:.6rem;
  font-size:.85rem;
  color:#6b5a4e;
  padding-left:.2rem;
  border-left:3px solid var(--accent);
}

/* Responsive */
@media (max-width:900px){
  .split{grid-template-columns:1fr}
  .real-gallery{grid-template-columns:1fr}
}

.hero::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:-1px;
  height:80px;
  background:linear-gradient(
    to bottom,
    rgba(247,239,230,0),
    var(--bg)
  );
  pointer-events:none;
}

.split > div{
  background:white;
  padding:2rem;
  border-radius:16px;
  box-shadow:
    0 14px 34px rgba(30,20,10,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.section.alt .features li::before{
  background:rgba(201,139,90,.15);
  color:var(--accent-dark);
}

.hero-actions{
  margin-top:1.4rem;
}
.hero-actions .btn + .btn{
  margin-left:.6rem;
}

.real-gallery img,
.split img{
  -webkit-transition:-webkit-transform .3s ease;
  transition:transform .3s ease;
}
.real-gallery img:hover,
.split img:hover{
  -webkit-transform:scale(1.02);
  transform:scale(1.02);
}

.real-gallery figure{
  background:white;
  padding:1rem;
  border-radius:16px;
  box-shadow:0 12px 28px rgba(30,20,10,.08);
  -webkit-transition:.25s ease;
  transition:.25s ease;
}

.real-gallery figure:hover{
  -webkit-transform:translateY(-4px);
  transform:translateY(-4px);
  box-shadow:0 20px 40px rgba(30,20,10,.12);
}

.real-gallery figcaption{
  font-size:.9rem;
  color:#5f5147;
  margin-top:.6rem;
  line-height:1.45;
}

.faq p{
  max-width:700px;
  margin-bottom:1.2rem;
  line-height:1.6;
}

.faq-wrap{
  display:flex;
  justify-content:center;
}

.faq{
  max-width:680px;
}

.faq p{
  margin-bottom:1.4rem;
  line-height:1.65;
}

/* FAQ Card – seriös & ruhig */
.faq-card{
  max-width:760px;
  margin:0 auto;
  background:white;
  padding:2rem 2.2rem;
  border-radius:16px;
  box-shadow:
    0 20px 40px rgba(30,20,10,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
}

.faq-card h2{
  text-align:center;
  margin-bottom:1.6rem;
}

.faq p{
  margin-bottom:1.4rem;
  line-height:1.65;
}

.faq strong{
  display:block;
  margin-bottom:.25rem;
  color:var(--text);
}

.contact{
  margin-top:3rem;
}

.eco-section {
  background: #fff;
  padding: 80px 0;
}

.eco-section .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 48px;
}

.eco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.eco-card {
  background: #faf7f2;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
}

.eco-card h3 {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.eco-card p {
  color: #555;
  line-height: 1.6;
}

.eco-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #c9834a;
  color: #fff;
  border-radius: 50%;
  font-weight: bold;
  font-size: 1.1rem;
}

.so-funktioniert {
  padding-top: 80px;
}

.features--safety{
  display: grid; /* ganz wichtig! */
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem; /* optional, Abstand zwischen Karten */
  max-width: 900px;
  margin: 0 auto;
}


@media (max-width: 700px){
  .features--safety{
    grid-template-columns: 1fr;
  }
}

/* Titel zentrieren und hervorheben */
.features--safety + h2,
.features--safety h2,
.safety-title {
  text-align: center;          /* zentriert den Text */
  font-size: 2rem;             /* größere Schrift für Seriosität */
  font-weight: 700;            /* klare Betonung */
  color: var(--text);          /* gleiche Farbe wie andere Überschriften */
  margin-bottom: 2rem;         /* Abstand zu den Karten */
}

.safety-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 0.8rem auto 0;
  border-radius: 2px;
}

.image-crop {
  height: 420px;          /* bestimmt, wie viel abgeschnitten wird */
  overflow: hidden; 
}

.image-crop img {
  width: 100%;
  height: 100%;
  object-fit: cover;     /* schneidet oben & unten */
  object-position: center;
}

.service-base {
  max-width: 600px;
  margin-bottom: 4rem;
}

.clean-list li {
  margin-bottom: 0.6rem;
}

.service-extras .lead {
  max-width: 700px;
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.extra h4 {
  margin-bottom: 0.5rem;
}

.extra.highlight {
  padding: 2rem;
  background: rgba(0,0,0,0.03);
  border-left: 4px solid #d4a017;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  margin-top: 2rem;
}

.service-box {
  background: #fff;
  padding: 2rem;
  border-radius: 12px;
}

.service-box--highlight {
  background: #f4efe8;
}

.service-list {
  padding-left: 1.2rem;
}

.service-list li {
  margin-bottom: 0.6rem;
}

.intro {
  margin: 1rem 0 2rem;
  font-size: 1rem;
}

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.extra-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 10px;
}

.extra-card--featured {
  border-left: 4px solid #d4a12f;
  grid-column: span 2;
}

.extra-card h4 {
  margin-top: 0;
}

/* Linke Seite leichter machen */
.service-box {
  padding: 1.8rem;
}

/* Zusatzleistungen luftiger */
.extras-grid {
  grid-template-columns: 1fr 1fr;
  gap: 1.8rem;
}

/* HERO-Card */
.extra-card--hero {
  grid-column: span 2;
  background: #fff;
  border-left: 5px solid #d4a12f;
  padding: 2rem;
}

/* Normale Cards etwas ruhiger */
.extra-card {
  background: rgba(255,255,255,0.85);
}

/* Typografie feinjustieren */
.extra-card h4 {
  margin-bottom: 0.6rem;
  font-size: 1.05rem;
}

.extra-card p {
  line-height: 1.5;
}

/* Linke Spalte: KEINE Box mehr */
.service-box--plain {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

/* Liste links etwas klarer */
.service-box--plain ul {
  margin-top: 1rem;
}

.service-box--plain li {
  margin-bottom: 0.7rem;
}

.service-box--plain h3 {
  padding-bottom: 0.4rem;
  border-bottom: 2px solid #e0d6c8;
  display: inline-block;
}

.services {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}

.services h2 {
  margin-bottom: 3rem;
}

/* Leistungsumfang oben */
.services-core {
  max-width: 700px;
  margin-bottom: 4rem;
}

.services-core ul {
  margin-top: 1rem;
}

.services-core li {
  margin-bottom: 0.75rem;
}

/* Zusatzleistungen */
.services-extra-intro {
  max-width: 700px;
  margin-bottom: 2rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

/* Cards */
.service-card {
  background: #fff;
  padding: 1.6rem;
  border-radius: 14px;
}

.service-card h4 {
  margin-bottom: 0.5rem;
}

/* Highlight-Card */
.service-card.highlight {
  border-left: 4px solid #d8a31a;
}

.teambuilding-intro {
  max-width: 720px;
  margin-bottom: 2.5rem;
}

.teambuilding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.teambuilding-card {
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
}

.teambuilding-card h3 {
  margin-bottom: 0.75rem;
}

.container.narrow {
  max-width: 820px;
}

.teambuilding-lead {
  font-size: 1.1rem;
  margin: 1.5rem 0 3rem;
}

.teambuilding-points > div {
  margin-bottom: 2.5rem;
}

.teambuilding-points h3 {
  margin-bottom: 0.5rem;
}

.teambuilding-header {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.teambuilding-header p {
  font-size: 1.1rem;
  margin-top: 1rem;
}

.teambuilding-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem;
}

.teambuilding-item {
  position: relative;
}

.tb-number {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--accent-color, #d6a94c);
}

.teambuilding-item h3 {
  margin: 0.5rem 0 0.75rem;
}

.service-card {
  position: relative;
  padding: 20px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #fff; /* Standardfarbe der Karte */
  transition: all 0.5s ease;
  color: #000;
}

/* Text bleibt sichtbar, aber leicht über dem Bild */
.service-card h4,
.service-card p {
  position: relative;
  z-index: 2;
}

/* Pseudo-Element für das Hover-Bild */
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('honig.jpg'); /* Pfad zu deinem Bild */
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Hover: Bild wird sichtbar */
.service-card:hover::before {
  opacity: 1;
}

/* Optional: Textfarbe invertieren oder Schatten für bessere Lesbarkeit */

/* Mittlere Karte vorbereiten */
.card-geschenk {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

/* Text über dem Hover-Bild */
.card-geschenk h4,
.card-geschenk p {
  position: relative;
  z-index: 2;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

/* Hover-Bild als Pseudo-Element */
.card-geschenk::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/Honig.png");
  background-size: cover;
  background-position: center;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 1;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

/* Optional: Overlay für dunklere Lesbarkeit – hier nicht nötig, da Text verschwindet */
.card-geschenk::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.3);
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 1;
}

/* Hover-Effekt */
.card-geschenk:hover::before {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

/* Text komplett ausblenden */
.card-geschenk:hover h4,
.card-geschenk:hover p {
  opacity: 0;
}

/* Optional: kleine Lift-Animation */
.card-geschenk:hover {
  -webkit-transform: translateY(-5px);
  transform: translateY(-5px);
}

/* Allgemeine Mobilanpassungen */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem; /* Innenabstand verringern */
  }

  /* Services Cards: von 3-Spalten auf 1-Spalte */
  .services-cards, .eco-grid, .teambuilding-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .service-card, .eco-card, .teambuilding-item {
    width: 100%;
  }

  /* Hero-Text zentrieren und kleiner machen */
  .hero .overlay h1 {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .hero .overlay p {
    font-size: 1rem;
  }

  /* Bilder responsive machen */
  img {
    max-width: 100%;
    height: auto;
  }

  /* Sicherheitsliste als Block */
  .features.features--safety li {
    display: block;
    margin-bottom: 1rem;
  }
}

/* Nur Desktop-Hover */
@media (min-width: 769px) {
  .card-geschenk:hover::before {
    opacity: 1;
  }

  .card-geschenk:hover h4,
  .card-geschenk:hover p {
    opacity: 0;
  }
}

/* Mobile: Bild direkt sichtbar oder klickbar machen */
@media (max-width: 768px) {
  .card-geschenk::before {
    opacity: 1; /* Bild direkt sichtbar */
    transform: scale(1);
  }
  .card-geschenk h4, .card-geschenk p {
    opacity: 1; /* Text bleibt sichtbar, falls nötig */
  }
}

body {
  background-color: hsl(0,0%,98%); /* statt #f9f9f9 */
  color: hsl(0,0%,20%);
}

.beute-explainer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin: 6rem auto;
}

.beute-visual {
  position: relative;
  display: inline-block;
  width: 100%;
}

.beute-visual img {
  width: 100%;
  max-width: 420px;
  display: block;
  position: relative;
  z-index: 1;
}

.hotspot {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffb703;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 6px rgba(255,183,3,0.25);
}

.hotspot::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  bottom: 140%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #ffb703;
  color: #000;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.hotspot:hover::after,
.hotspot:focus::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-6px);
  transform: translateX(-50%) translateY(-6px);
}

.beute-info {
  background: #fff;
  padding: 2rem 2.4rem;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(30,20,10,0.04);
  border-left: 6px solid var(--accent);
}

.beute-info h2 {
  margin-top: 0.5rem;
}

.beute-info ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.beute-info li {
  margin-bottom: 0.75rem;
}

/* Show tooltip also when JS toggles aria-expanded for mobile/touch */
.honeycomb[aria-expanded="true"]::after {
  opacity: 1;
  transform: translateX(-50%) translateY(-6px);
  pointer-events: auto;
}

@media (max-width: 768px) {
  .honeycomb::after {
    left: 50%;
    top: calc(100% + 12px);
    bottom: auto;
    transform: translateX(-50%) scale(0.98);
  }
  .honeycomb[aria-expanded="true"]::after {
    transform: translateX(-50%) scale(1);
  }
  .beute-visual img { max-width: 540px; margin: 0 auto; }
}


@media (max-width: 768px) {
  .beute-explainer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .beute-visual img {
    margin: 0 auto;
  }

  .hotspot::after {
    bottom: auto;
    top: 140%;
  }
}

.honeycomb {
  position: absolute;
  width: 48px;
  height: 48px;
  background: #ffb703;
  border: 3px solid rgba(255,183,3,0.5);
  cursor: pointer;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  box-shadow: 0 0 0 4px rgba(255,183,3,0.2), inset 0 0 0 2px rgba(255,255,255,0.4);
  -webkit-animation: pulse 2.5s infinite;
  animation: pulse 2.5s infinite;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0;
  font-size: 0;
}

/* Einzelne Positionen für jeden Button */
.honeycomb-top {
  top: 28%;
  left: 32%;
}

.honeycomb-middle {
  top: 45%;
  left: 50%;
}

.honeycomb-bottom {
  top: 55%;
  left: 19%;
}

.honeycomb:hover {
  -webkit-transform: translate(-50%, -50%) scale(1.15);
  transform: translate(-50%, -50%) scale(1.15);
  box-shadow: 0 0 0 8px rgba(255,183,3,0.3), inset 0 0 0 2px rgba(255,255,255,0.4);
}

.honeycomb:active {
  -webkit-transform: translate(-50%, -50%) scale(0.95);
  transform: translate(-50%, -50%) scale(0.95);
}

@-webkit-keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,183,3,0.6);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255,183,3,0);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,183,3,0);
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255,183,3,0.6);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 14px rgba(255,183,3,0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255,183,3,0);
    transform: scale(1);
  }
}

.honeycomb::after {
  content: attr(data-text);
  position: absolute;
  left: 50%;
  bottom: 160%;
  -webkit-transform: translateX(-50%) translateY(6px);
  transform: translateX(-50%) translateY(6px);

  background: rgba(255, 255, 255, 0.92);
  color: #1f1f1f;

  padding: 0.55rem 0.9rem;
  border-radius: 8px;

  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;

  white-space: nowrap;

  box-shadow:
    0 10px 25px rgba(0,0,0,0.12);

  opacity: 0;
  pointer-events: none;
  -webkit-transition:
    opacity 0.25s ease,
    -webkit-transform 0.25s ease;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}


.honeycomb:hover::after,
.honeycomb:focus::after {
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-6px);
  transform: translateX(-50%) translateY(-6px);
}

@media (max-width: 768px) {
  .honeycomb {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
  }

  .honeycomb::after {
    bottom: auto;
    top: 150%;
  }
}

.honeycomb::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 145%;
  -webkit-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  width: 6px;
  height: 6px;
  background: white;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
}

.honeycomb:hover::before {
  opacity: 1;
}

.wax-cycle {
  background: #f6efe6; /* warm, natürlich */
}

.wax-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.wax-header h2 {
  margin-bottom: 1rem;
}

.wax-header p {
  color: #444;
  line-height: 1.6;
}

/* Grid für Bilder */
.wax-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.wax-image {
  background: white;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0,0,0,0.08);
}

.wax-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
  object-position: 10% 90%;
}

.wax-image figcaption {
  padding: 1rem 1.25rem;
  font-size: 0.9rem;
  color: #555;
  background: #fff;
}

/* Bulletpoints */
.wax-points ul {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.wax-points li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.75rem;
  color: #333;
}

.wax-points li::before {
  content: "⬢";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffb703;
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
  .wax-grid {
    grid-template-columns: 1fr;
  }

  .wax-image img {
    height: 260px;
  }
}

.video-portrait-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

/* Hochkant-Rahmen */
.video-portrait-wrapper {
  max-width: 360px;
  margin-left: auto;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  -webkit-box-shadow:
    0 20px 40px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.08);
  box-shadow:
    0 20px 40px rgba(0,0,0,0.2),
    inset 0 0 0 1px rgba(255,255,255,0.08);
}

.video-portrait-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

/* Mobile */
@media (max-width: 900px) {
  .video-portrait-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .video-portrait-wrapper {
    margin: 0 auto;
    max-width: 320px;
  }
}

.work-section {
  background: #f6f3ee;
  padding: 6rem 0;
}

.work-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.work-video {
  background: #fff;
  padding: 1rem;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
  -webkit-box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.video-badge {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a5a2b;
  margin-bottom: 0.75rem;
}

/* Mobile < 768px */
@media (max-width: 768px) {
  .main-nav {
    flex-direction: column;
    gap: 1rem;
  }
}

.section {
  padding: 4rem 2rem; /* Desktop */
}

@media (max-width: 768px) {
  .section {
    padding: 1rem 1rem; /* Mobile etwas enger, aber nicht zu gequetscht */
  }

  .features li {
    margin-bottom: 1.5rem; /* Mehr Abstand zwischen Listenelementen */
  }
}

.video-portrait-wrapper video {
  width: 100%;
  height: auto;
}

/* Kleine Geräte (Handys) */
@media (max-width: 480px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.5rem 0;
  }

  .main-nav {
    width: 100%;
    gap: 0.3rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.75rem;
    padding: 0.4rem 0.5rem;
    white-space: nowrap;
  }

  .main-nav a.cta {
    padding: 0.3rem 0.4rem;
    font-size: 0.7rem;
  }

  .brand {
    gap: 0.3rem;
  }

  .brand img {
    height: 24px;
  }

  .brand .name {
    font-size: 0.9rem;
  }

  .brand .tagline {
    font-size: 0.7rem;
  }
}

/* Mittel (Tablets) */
@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .main-nav {
    width: 100%;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .main-nav a {
    font-size: 0.9rem;
    padding: 0.5rem 0.7rem;
  }

  .main-nav a.cta {
    padding: 0.4rem 0.6rem;
    font-size: 0.85rem;
  }
}

/* Große Tablets / kleine Laptops */
@media (max-width: 1024px) {
  .main-nav a {
    font-size: 0.9rem;
  }
}

/* =========================
   Mobile Navigation
========================= */

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}

/* Mobile */
@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    background: var(--accent);
    display: none;
    flex-direction: column;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 10px 30px rgba(0,0,0,.15);
  }

  .nav-links a {
    color: #fff;
    font-size: 1rem;
  }

  .nav-links.open {
    display: flex;
  }

  /* Desktop-Nav ausblenden */
  .main-nav {
    position: relative;
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* ← DAS ist der Abstand */
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {

  /* Hamburger sichtbar */
  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  /* Links beim Laden verstecken */
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent);
    display: none;            /* WICHTIG */
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    z-index: 999;
  }

  /* Sichtbar nach Klick */
  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.1rem;
  }
}

.nav-toggle {
  padding: 0.5rem;            /* größere Klickfläche */
  margin-right: 1.5rem;       /* Abstand zum Rand */
}

@media (max-width: 768px) {

  .nav-toggle {
    align-self: flex-start;    /* nach oben */
    padding-top: 0.2rem;       /* zusätzlicher Abstand nach oben */
  }

}

/* =========================
   Navigation – Desktop
========================= */

@media (min-width: 769px) {
  .nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
  }

  .nav-toggle {
    display: none;
  }
}

/* =========================
   Navigation – Mobile
========================= */

@media (max-width: 768px) {

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    margin-right: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #fff;
    font-size: 1.1rem;
  }
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: left;
  margin-right: auto;
  margin-right: 30%;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 768px) {
  /* Hamburger-Button unabhängig positionieren */
  .site-header {
    position: relative; /* Referenz für absolute Position */
  }

  .nav-toggle {
    position: absolute;
    top: 0.5rem;      /* Abstand vom oberen Rand */
    right: 0.75rem;   /* wie bisher */
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;    /* sicherstellen, dass es über allem liegt */
  }
}

.nav-toggle {
  background: rgb(255, 255, 255);
}

@media (max-width: 768px) {
  .brand {
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    position: absolute;
    top: 0.5rem;      /* Abstand vom oberen Rand */
    right: 0.75rem;   /* Abstand vom rechten Rand */
    z-index: 1000;    /* über allem */
  }
}

.site-header .container {
  overflow: visible;
}
.nav-links {
  z-index: 999;
}

@media (max-width: 768px) {
  .site-header .container {
    display: block; /* keine Flex-Höhe mehr */
    position: relative;
    padding: 0.5rem 1rem; /* optional */
  }

  .nav-toggle {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    z-index: 1000;
  }

  .nav-links {
    top: 100%;
  }
}

@media (max-width: 768px) {

  .site-header {
    position: relative;
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: auto; /* wichtig, sonst zieht Flex die Höhe */
    padding: 0.5rem 1rem;
  }

  .brand {
    margin: 0;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    z-index: 1000;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--accent);
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: #ffffff;
    font-size: 1.1rem;
  }
}

/* =========================
   Mobile Navigation
========================= */
@media (max-width: 768px) {

  .site-header {
    position: relative; /* Referenz für Hamburger */
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
  }

  .brand {
    display: flex;
    align-items: center;
    margin: 0;
  }

  /* Hamburger sichtbar */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    position: relative; /* wichtig: relativ innerhalb nav */
    z-index: 1000;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgb(255, 255, 255); /* Test sichtbar */
    border-radius: 2px;
    display: block;
  }

  /* Navigation verstecken */
  .nav-links {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem 1rem;
    background: var(--accent);
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
  }

  .nav-links.open {
    display: flex;
  }
}

/* Desktop Navigation */
@media (min-width: 769px) {
  .nav-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    position: static;
    background: none;
    padding: 0;
  }
}

.site-header {
  position: relative; /* Referenz für absolute Position */
}
.nav-toggle {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  z-index: 1000;
}

.site-header .container {
  overflow: visible;
}

@media (max-width: 768px) {
  .site-header {
    position: relative;
  }

  .site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 1rem;
    position: relative; /* Jetzt Absolut-Position der nav-toggle innerhalb Container */
  }

  .nav-toggle {
    position: absolute;
    top: 50%; /* vertikal mittig im Container */
    right: -1rem; /* rechts innen */
    transform: translateY(-90%); /* wirklich zentriert vertikal */
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
  }

  .nav-toggle span {
    width: 24px;
    height: 2px;
    background: rgb(255, 255, 255); /* Test sichtbar */
    border-radius: 2px;
  }
}

/* =========================
   Mobile Width Fixes
========================= */

@media (max-width: 768px) {
  /* Services Cards - verhindere horizontales Scrollen */
  .services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  .service-card {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 1.5rem;
  }
  
  /* Eco-Grid anpassen */
  .eco-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
  }
  
  .eco-card {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
    margin: 0;
    padding: 1.5rem;
  }
  
  /* Sicherstellen, dass Container nicht überbreit werden */
  .services-extra,
  .eco-section .container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
  }
  
  /* Text Container anpassen */
  .services-extra-intro {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
}

/* Für sehr kleine Bildschirme zusätzliche Anpassungen */
@media (max-width: 480px) {
  .service-card,
  .eco-card {
    padding: 1.2rem;
    border-radius: 10px;
  }
  
  /* Eventuelle negative Margins oder Paddings entfernen */
  .services,
  .eco-section {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  
  .services .container,
  .eco-section .container {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
}

/* Verhindere horizontales Scrollen auf Body-Ebene */
@media (max-width: 768px) {
  body {
    overflow-x: hidden;
    width: 100%;
  }
  
  main {
    overflow-x: hidden;
    width: 100%;
  }
  
  .container {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}

/* =========================
   Mobile Anpassungen für alle Features-Listen
========================= */

@media (max-width: 768px) {
  /* Alle Features-Listen auf 1 Spalte setzen */
  .features,
  .features--safety {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Einzelne Feature-Items */
  .features li,
  .features--safety li {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box;
    margin: 0 0 1rem 0 !important;
    padding: 1.2rem 1rem 1.2rem 3rem !important;
    display: block !important;
  }
  
  /* Sicherstellen, dass nichts über den Rand hinausragt */
  .features li:last-child,
  .features--safety li:last-child {
    margin-bottom: 0 !important;
  }
  
  /* Verhindere horizontales Scrollen in den Section-Containern */
  .section.container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  /* Spezifisch für "Bienenhaltung als Unternehmenslösung" */
  #unternehmen .features,
  #leistung ~ .section .features,
  .section.alt .features {
    display: flex !important;
    flex-direction: column !important;
  }
}

/* Für sehr kleine Bildschirme */
@media (max-width: 480px) {
  .features li,
  .features--safety li {
    padding: 1rem 0.8rem 1rem 2.5rem !important;
  }
  
  .features li::before,
  .features--safety li::before {
    left: 0.8rem !important;
    top: 1rem !important;
  }
  
  /* Textanpassungen für bessere Lesbarkeit */
  .features li strong,
  .features--safety li strong {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.3rem;
  }
  
  .features li span,
  .features--safety li span {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}

/* =========================
   Mobile Fix: Beute-Explainer
========================= */

@media (max-width: 768px) {
  /* Grid auf 1 Spalte setzen */
  .beute-explainer {
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 1rem !important;
    box-sizing: border-box !important;
    margin: 3rem auto !important;
  }
  
  /* Bild-Container anpassen */
  .beute-visual {
    width: 100% !important;
    max-width: 100% !important;
    order: 2; /* Bild nach unten verschieben */
  }
  
  .beute-visual img {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;
  }
  
  /* Info-Container anpassen */
  .beute-info {
    width: 100% !important;
    max-width: 100% !important;
    order: 1; /* Info nach oben */
    padding: 1.5rem !important;
    margin: 0 !important;
    box-sizing: border-box !important;
  }
  
  /* Hotspots anpassen für Mobile */
  .honeycomb {
    transform: scale(0.8) translate(-50%, -50%) !important;
  }
  
  .honeycomb::after {
    font-size: 0.75rem !important;
    white-space: normal !important;
    max-width: 150px !important;
    text-align: center;
  }
}

/* =========================
   DRINGEND: Hero Mobile Fix
========================= */

@media (max-width: 768px) {
  /* Reset des gesamten Hero-Bereichs */
  .hero {
    width: 100vw !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
  }
  
  .hero .wrap.container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: auto !important;
  }
  
  .hero .overlay {
    width: calc(100% - 2rem) !important; /* 1rem Abstand links und rechts */
    max-width: 100% !important;
    margin: 2rem 1rem !important; /* Zentriert mit Abstand */
    padding: 1.5rem !important;
    border-radius: 12px !important;
    box-sizing: border-box !important;
    display: block !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    
    /* Box-Shadow reduzieren für Mobile */
    box-shadow: 
      0 5px 15px rgba(30,20,10,.08),
      inset 0 1px 0 rgba(255,255,255,.4) !important;
  }
  
  /* Hero-Hintergrund fixen */
  .hero-bg {
    width: 100vw !important;
    left: 50% !important;
    right: 50% !important;
    margin-left: -50vw !important;
    margin-right: -50vw !important;
  }
  
  /* Text sicherstellen */
  .hero h1,
  .hero p {
    width: 100% !important;
    max-width: 100% !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
  }
  
  .hero h1 {
    font-size: 1.6rem !important;
    line-height: 1.3 !important;
    margin-bottom: 1rem !important;
  }
  
  .hero p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
  }
  
  /* Buttons fixen */
  .hero-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.8rem !important;
    width: 100% !important;
    margin-top: 1.5rem !important;
  }
  
  .hero-actions .btn {
    width: 100% !important;
    display: block !important;
    text-align: center !important;
    padding: 0.9rem 1.2rem !important;
    box-sizing: border-box !important;
    margin: 0 !important;
  }
  
  .hero-actions .btn + .btn {
    margin-left: 0 !important;
  }
}

/* =========================
   MOBILE HERO FIX - ATOMIC
========================= */

@media (max-width: 768px) {
  /* 1. Hero-Bereich komplett neu definieren */
  .hero {
    position: relative;
    background: var(--bg) !important;
    overflow: hidden;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
      linear-gradient(rgba(247, 239, 230, 0.98), rgba(247, 239, 230, 0.95)),
      url("../images/IMG_2508.JPEG") center/cover !important;
    z-index: 0;
    opacity: 1 !important;
    filter: none !important;
  }
  
  /* 2. Overlay mit sehr hoher Spezifität */
  body .hero .wrap.container .overlay {
    background: white !important;
    background-color: white !important;
    background-image: none !important;
    opacity: 1 !important;
    
    /* Box-Shadow für bessere Abgrenzung */
    box-shadow: 
      0 10px 30px rgba(0,0,0,0.08),
      inset 0 0 0 1px rgba(0,0,0,0.03) !important;
    
    /* Border für klare Kante */
    border: 1px solid rgba(0,0,0,0.05) !important;
  }
  
  /* 3. Hero::after für sauberen Übergang */
  .hero::after {
    content: "" !important;
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 80px !important;
    background: linear-gradient(
      to bottom,
      transparent,
      var(--bg) 90%
    ) !important;
    z-index: 1 !important;
    pointer-events: none !important;
  }
  
  /* 4. Erste Sektion fixen */
  #unternehmen.section {
    position: relative;
    z-index: 2;
    background: var(--bg);
    margin-top: -20px;
    padding-top: 3rem;
  }
  
  #unternehmen.section::before {
    content: "";
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    height: 20px;
    background: var(--bg);
    z-index: 2;
  }
}