:root {
  --color-dark: #1f1f1f;
  --color-yellow: #f6e300;
  --color-text: #ffffff;
}

.section {
  padding: 0 0 4.5rem 0;
}

.abstand {
  margin-top: 3rem;
}

.content-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

/* ===== Reset ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  /*font-family: Arial, Helvetica, sans-serif;*/
  font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

/* ===== Header ===== */
.site-header {
  background-color: var(--color-dark);
  border-bottom: 4px solid var(--color-yellow);
  position: relative;
  z-index: 1000;
}

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

.logo img {
  height: 100px;
  width: auto;
}


/* ===== Navigation Desktop ===== */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.main-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 600;
  display: block;
}

.main-nav a:hover {
  color: var(--color-yellow);
}

.has-dropdown {
  position: relative;
}

/* Dropdown Basis */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  background-color: #2a2a2a;
  
  min-width: 260px;
}

.dropdown a {
  display: block;
  width: 100%;

  padding: 0.9rem 1.5rem;   /* mehr Höhe + seitlicher Raum */
  line-height: 1.4;

  color: #ffffff;
  font-weight: 500;
  text-decoration: none;

  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}


.dropdown a:hover {
  background-color: rgba(246, 227, 0, 0.12);
  color: var(--color-yellow);
  padding-left: 1.5rem;
}

.dropdown a.active {
  background: none;
  color: var(--color-text);
  position: relative;
}


.dropdown a.active::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 6px;
  height: 2px;
  background-color: var(--color-yellow);
}






.has-dropdown > a::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 0.4rem;
  display: inline-block;
  transition: transform 0.2s ease;
}

.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}








.dropdown ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

/* Desktop Hover */
@media (min-width: 901px) {
  .has-dropdown:hover .dropdown {
    display: block;
  }

  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 10px;
    bottom: -10px;
  }
}

/* ===== Hamburger Button ===== */
.nav-toggle {
  display: none;
  background: none;
  color: white;
  font-size: 1.8rem;
  border: none;
  cursor: pointer;
}

/* ===== Hero ===== */
.hero {
  height: 70vh;
  background-image: url("../assets/images/slider-firmengebaeude.jpg");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 5%;
  color: white;
  max-width: 1200px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
}




/* ===== Mobile Navigation ===== */
@media (max-width: 1086px) {

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 1100;
  }

  .main-nav {
    position: fixed;
    top: 125px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--color-dark);

    display: none;              /* 🔴 WICHTIG */
    flex-direction: column;

    z-index: 1000;
  }

  .main-nav.open {
    display: flex;              /* 🔴 HIER öffnen wir es */
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .main-nav li {
    border-top: 1px solid #333;
  }

  .main-nav a {
    padding: 1rem;
  }

  .dropdown {
    position: static;
    display: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }
}





/* ===== Utility ===== */
.no-scroll {
  overflow: hidden;
}


/* ===== Footer ===== */

.site-footer {
  background-color: #1a1a1a;
  color: #ccc;
  margin-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.footer-col strong {
  color: white;
  display: block;
  margin-bottom: 0.75rem;
}

.site-footer a {
  color: #ccc;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--color-yellow);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #333;
  font-size: 0.9rem;
}


/* ===== Floating Widget ===== */

.contact-widget {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
}

/*.contact-toggle {
  background-color: var(--color-dark);
  color: white;
  border: none;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  margin-right: 1rem;
}*/

/*.contact-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-yellow);
  color: #1f1f1f;
  font-size: 1.4rem;
  border: none;
  cursor: pointer;
  margin-right: 0.8rem;

  display: flex;
  align-items: center;
  justify-content: center;

  transition:
    background-color 0.25s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}*/

.contact-toggle {
  position: fixed;
  right: 1rem;
  bottom: 1.2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  /*background: var(--color-accent);*/
  background: var(--color-yellow);
  z-index: 1200;
  font-size: 1.4rem;
}



.contact-panel {
  background-color: #1a1a1a;
  color: #ccc;
  padding: 1.5rem 1.75rem;   /* mehr Luft innen */
  width: 400px;              /* vorher meist ~260 */
  margin-right: 10px;
  border-radius: 12px;
  line-height: 1.5;
  display: none;
}




.contact-panel a {
  color: var(--color-yellow);
  text-decoration: none;
}

.contact-widget.open .contact-panel {
  display: block;
}

.contact-toggle:hover {
  transform: scale(1.05);
}

.contact-toggle.active {
  background-color: #1f1f1f;
  color: #ffffff;
  /*box-shadow: 0 8px 20px rgba(246, 227, 0, 0.4);*/
}

@keyframes phone-bounce {
  0%   { transform: rotate(0deg); }
  25%  { transform: rotate(-10deg); }
  50%  { transform: rotate(10deg); }
  75%  { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}

.contact-toggle.active {
  animation: phone-bounce 0.4s ease;
}

/* ===== Contact Widget – Mobile ===== */
@media (max-width: 768px) {

  .contact-widget {
    width: 90%;
    max-width: 320px;
    right: 1rem;
    bottom: 5.5rem; /* höher wegen iOS-Gesten */
    border-radius: 16px;
    font-size: 0.95rem;
  }

  .contact-widget h4 {
    font-size: 1rem;
  }

  .contact-widget p {
    margin-bottom: 0.4rem;
  }

}




/* ===== Services ===== */

.services-overview {
  background-color: #ffffff;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1rem;
}

.services-inner h2 {
  margin-bottom: 2.5rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: #f4f4f4;
  padding: 2rem;
  text-decoration: none;
  color: var(--color-dark);
  border-left: 4px solid var(--color-yellow);
  min-height: 260px;

  display: flex;
  flex-direction: column;   /* 👈 wichtig */
  height: 100%;             /* 👈 wichtig */

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  margin-bottom: 0.75rem;
  padding-left: 1.6rem;
  position: relative;
}

.service-card li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: bold;
}

.service-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: #555;
  margin-top: auto;   /* 👈 schiebt Text sauber nach unten */
  line-height: 1.5;
}


.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===== Service Cards – saubere Typografie ===== */

.service-card {
  display: flex;
  flex-direction: column;
}

.service-card h3 {
  margin: 0 0 0.75rem 0;   /* fester, einheitlicher Abstand */
  line-height: 1.25;
}

.service-card p {
  margin: 0;              /* 🔑 kein eigener Abstand */
  line-height: 1.5;
}





/* ===== Unterseiten ===== */

.page-hero {
  background-color: #e5e5e5;
}

.page-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.page-hero h1 {
  margin-bottom: 0.5rem;
}

.page-hero p {
  color: #555;
}

.page-content {
  background-color: #ffffff;
}

.content-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

.service-list {
  margin-top: 2rem;
  padding-left: 1.25rem;
}

.service-list li {
  margin-bottom: 0.5rem;
}

/* =========================
   SUB HERO
========================= */

.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.sub-hero-content {
  position: relative;
  z-index: 1;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.sub-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.sub-hero p {
  max-width: 600px;
  font-size: 1.1rem;
}

.sub-hero {
  height: 45vh;
  min-height: 360px;
  background-size: cover;
  background-position: center;
  position: relative;
  border-bottom: 4px solid var(--color-yellow);
}

/*.sub-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}*/




/* Hero-Bilder pro Leistung */
.sub-hero--strasse {
  background-image: url("../../assets/images/hero/hero-strasseninstandsetzung.png");
}

.sub-hero--baum {
  background-image: url("../../assets/images/hero/hero-baumfaellarbeiten.png");
}

.sub-hero--vermietung {
  background-image: url("../../assets/images/hero/hero-vermietung.jpg");
}

.sub-hero--patcher {
  background-image: url("../../assets/images/hero/hero-einmann-patcher.png");
}

.sub-hero--multicarpatcher {
  background-image: url("../../assets/images/hero/hero-multicar-patcher.png");
}

.sub-hero--startseite {
  background-image: url("../../assets/images/hero/hero-startseite-02.png");
}

.sub-hero--trimmer {
  background-image: url("../../assets/images/hero/hero-tree-trimmer.jpg");
}

.sub-hero--fraese {
  background-image: url("../../assets/images/hero/hero-stubben-fraese.jpg");
}

/* =========================
   CONTENT
========================= */
.content {
  max-width: 1200px;
  margin: 4rem auto;
  padding: 0 5%;
}

/*.intro-text {
  margin-bottom: 3rem;
  font-size: 1.1rem;
  line-height: 1.6;
}*/

.intro-text {
  max-width: 800px;
  margin-bottom: 3rem;
  line-height: 1.7;
}


/* =========================
   SERVICE GRID
========================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.services-grid--patch {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.service-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
  text-decoration: none;
  color: #fff;
}

.service-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.25)
  );
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.service-tile h3 {
  margin: 0 0 0.5rem;
  color: #f2c200;
}

.service-tile:hover img {
  transform: scale(1.05);
}


/* =========================
   GALLERY
========================= */
.image-gallery {
  margin-top: 5rem;
}

.image-gallery h2 {
  margin-bottom: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}


/* =========================
   Infobox
========================= */


.info-box-modern {
  background: #ffffff;
  border-left: 5px solid var(--color-yellow);
  padding: 2.5rem 3rem;
  max-width: 900px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.info-box-modern h3 {
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
}

.info-box-modern ul {
  list-style: none;
}

.info-box-modern li {
  margin-bottom: 0.75rem;
  padding-left: 1.6rem;
  position: relative;
}

.info-box-modern li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--color-yellow);
  font-weight: bold;
}

.info-box-dark {
  background: #1f1f1f;
  color: #fff;
  padding: 3rem;
  max-width: 1000px;
}

.info-box-dark h3 {
  color: var(--color-yellow);
  margin-bottom: 1.5rem;
}

.info-box-dark li::before {
  color: var(--color-yellow);
}




/* =========================
   Breadcrumbs
========================= */

.breadcrumbs {
  background: #1f1f1f;
  border-bottom: 1px solid #333;
  font-size: 0.9rem;
  padding: 1rem 0;
}




.breadcrumbs .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.breadcrumbs a {
  color: #ccc;
  text-decoration: none;
}

.breadcrumbs a:hover {
  color: var(--color-yellow);
}

.breadcrumbs span {
  color: #777;
}

.breadcrumbs .current {
  color: #fff;
  font-weight: 500;
}



/* =========================
   Gallery
========================= */


.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.gallery-item {
  overflow: hidden;
  background: #eee;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  aspect-ratio: 4 / 3;     /* wichtig für sauberes Grid */
  object-fit: cover;
  transition: transform 0.35s ease;
  cursor: pointer;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Tablet */
@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}




/* =========================
   Lightbox
========================= */


.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
}


/* =========================
   Downloads
========================= */

.hero-downloads {
  background-image: url("../assets/images/hero-downloads.jpg");
}

.downloads-section {
  margin-top: 4rem;
}

.downloads-section h2 {
  margin-bottom: 1.5rem;
}

.download-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
}

.download-list li {
  margin-bottom: 1rem;
}

.download-list a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: #efefef;
  border-left: 4px solid var(--color-yellow);
  color: #111;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease;
}

.download-list a:hover {
  background: #e5e5e5;
  transform: translateX(4px);
}

.download-icon {
  font-size: 1.4rem;
}




/* =========================
   Videos
========================= */

.video-grid {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.video-card {
  background: #1e1e1e;
  border-radius: 8px;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,.35);
}

.video-thumb {
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  display: block;
}

.video-thumb iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.35);
}

.play-icon::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: #ffd600;
}

.video-card h3 {
  padding: 16px 16px 8px;
  margin: 0;
}

.video-card p {
  padding: 0 16px 20px;
  color: #ccc;
}

.video-embed {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  margin: 1.5rem auto;
}

.video-embed iframe {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}

.video-card {
  background: #1f1f1f;
  color: #fff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
}

.video-card h3 {
  margin-bottom: 1rem;
  color: #ffd200; /* Mainka-Gelb */
}

.video-card p {
  margin-top: 1rem;
  color: #ddd;
}


/* =========================
   Legal / Text Sections
   ========================= */

.legal-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #333;
}

.legal-section h1 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.legal-section h2 {
  font-size: 1.5rem;
  margin-top: 3rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.legal-section h3 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 1rem;
}

.legal-section a {
  color: inherit;
  text-decoration: underline;
}

.legal-section a:hover {
  text-decoration: none;
}

.legal-section hr {
  margin: 3rem 0;
  border: none;
  border-top: 1px solid #ddd;
}

/* Optional: mobile Anpassung */
@media (max-width: 600px) {
  .legal-section {
    padding: 3rem 1rem;
    font-size: 0.95rem;
  }

  .legal-section h1 {
    font-size: 1.8rem;
  }
}

/* Listen in Impressum & Datenschutz */
.legal-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  padding-left: 1.25rem;
}

.legal-section li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}



/* =========================
   Info + Media Section
   ========================= */

.info-media-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* Medien rechts */
.info-media img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* PDF Box */
.pdf-box {
  display: inline-flex;
  align-items: center;
  padding: 1rem 1.25rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
  transition: all 0.2s ease;
}

.pdf-box:hover {
  background: #f5f5f5;
  border-color: #ccc;
}

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

  .info-media {
    margin-top: 1.5rem;
  }
}



.section-about p {
  max-width: 900px;
  line-height: 1.7;
}

.about-quote {
  margin-top: 2rem;
  font-style: italic;
  font-weight: 500;
  color: #ffd200;
  font-size: 2rem;
}


.section-contacts h2 {
  margin-bottom: 1.5rem;
}

.contact-general {
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: #f9f9f9;
  border-left: 4px solid var(--color-yellow);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #f4f4f4;
  padding: 1.5rem;
  border-left: 4px solid var(--color-yellow);
}

.contact-card h4 {
  margin-bottom: 0.25rem;
}

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-card a {
  text-decoration: underline;
}




.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}




/* NAV BASIS */
/*.main-nav {
  position: relative;
  z-index: 2000;
}*/

/*.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
}*/

/* Menü-Zeile */
.menu-item {
  display: flex;
  justify-content: space-between;
  /*align-items: center;*/
}

/* Dropdown Toggle */
.dropdown-toggle {
  background: none;
  border: none;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 0 0 0.5rem;
}

/* ===== Mobile Menu Arrows ===== */
@media (max-width: 1086px) {

  .dropdown-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

}

/* Dropdown */
/*.dropdown {
  display: none;
  list-style: none;
  padding-left: 1rem;
}*/

/* Offen */
.has-dropdown.open > .dropdown {
  display: block;
}


/* ===== Sub-Hero Text Fix – Mobile ===== */
@media (max-width: 768px) {

  .sub-hero-content {
    padding: 0 1rem;          /* 🔑 verhindert Randüberlauf */
    max-width: 100%;
    box-sizing: border-box;
  }

  .sub-hero h1 {
    font-size: 2rem;          /* etwas kleiner */
    line-height: 1.15;
    word-break: break-word;  /* 🔑 erzwingt Umbruch */
    hyphens: auto;           /* 🔑 Silbentrennung (DE!) */
  }

  .sub-hero p {
    font-size: 1rem;
    line-height: 1.4;
    max-width: 100%;
  }

}























