/* ===========================
   Rollwagen – Theme (Option B)
   Holz bleibt sichtbar + Vignette/Overlay “edel”
   =========================== */

:root{
  --bg: #fbfaf8;
  --text: #1b1b22;
  --muted: rgba(27,27,34,.72);
  --border: rgba(27,27,34,.10);

  /* Holz/Industrie Akzent */
  --accent: #c8743b;                 /* warmes Orange */
  --accentSoft: rgba(200,116,59,.18);

  --shadow: 0 18px 40px rgba(20,20,30,.10);
  --shadowHover: 0 26px 60px rgba(20,20,30,.14);
}

/* Base + Holz */
html, body{ max-width: 100%; overflow-x: clip; }
@supports not (overflow-x: clip) { html, body{ overflow-x: hidden; } }

.rollwagen-page{
  color: var(--text);
  min-height: 100vh;

}

/* Option B: Vignette + “milchiges” Overlay über Holz (macht es ruhiger/edler) */
.rollwagen-page::before{
  content:"";
  position: fixed;
  inset: 0;
  pointer-events: none;

  background:
    /* oben leicht heller */
    radial-gradient(circle at 50% 12%, rgba(255,255,255,.28), transparent 58%),
    /* unten leicht dunkler (Tiefe) */
    radial-gradient(circle at 50% 92%, rgba(0,0,0,.12), transparent 62%),
    /* Grund-“Milk” damit Text/Flächen sauber wirken */
    linear-gradient(rgba(225,213,183,.24), rgba(225,213,183,.24));

  z-index: -1;
}

/* iOS: fixed background kann ruckeln -> abschalten */
@media (max-width: 991.98px){
  .rollwagen-page{
    background-attachment: scroll;
  }
  .rollwagen-page::before{
    position: absolute; /* mobile stabiler */
  }
}

a{ color: inherit; }
.rw-muted{ color: var(--muted); }

/* ===========================
   Navbar
   =========================== */
.rw-nav{
  position: sticky;
  top: 0;
  z-index: 50;
  padding: .75rem 0;

  /* leicht transparenter “Glass” auf dem Holz */
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(27,27,34,.08);
  backdrop-filter: blur(16px);
}

.rw-logo-img{
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 10px;
}

@media (max-width: 575.98px){
  .rw-logo-img{ height: 34px; }
}

.rw-brand-title{
  font-weight: 750;
  letter-spacing: .01em;
  line-height: 1.1;
}
.rw-brand-sub{
  font-size: .82rem;
  color: var(--muted);
}

.rw-nav-links .nav-link{
  color: rgba(27,27,34,.82);
  font-weight: 550;
  padding: .4rem .85rem;
  position: relative;
}

.rw-nav-links .nav-link::after{
  content:"";
  position:absolute;
  left:.85rem;
  right:.85rem;
  bottom: .1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease-out;
  opacity: .9;
}

.rw-nav-links .nav-link:hover{ color: rgba(27,27,34,1); }
.rw-nav-links .nav-link:hover::after{ transform: scaleX(1); }

.rw-nav-toggler{
  border: 1px solid rgba(27,27,34,.18);
  border-radius: 999px;
  padding: .25rem .65rem;
}

.rw-top-contact a{
  text-decoration:none;
  color: rgba(27,27,34,.70);
  font-size: .92rem;
}
.rw-top-contact a:hover{ text-decoration: underline; }

/* ===========================
   Buttons
   =========================== */
.rw-btn-primary{
  border: 0 !important;
  color: #111 !important;
  font-weight: 700;
  border-radius: 999px;
  padding: .85rem 1.6rem;
  background: var(--accent) !important;
  box-shadow: 0 14px 30px var(--accentSoft);
}
.rw-btn-primary:hover,
.rw-btn-primary:focus{
  filter: saturate(1.06) contrast(1.02);
  color:#111 !important;
}

.rw-btn-ghost{
  border-radius: 999px;
  padding: .85rem 1.6rem;
  border: 1px solid rgba(27,27,34,.16) !important;
  background: rgba(255,255,255,.86);
  color: var(--text);
}

/* ===========================
   Hero
   =========================== */
.rw-hero{
  position: relative;
  padding: 8.5rem 0 4.5rem;
  overflow: hidden;
  background: transparent;
}



.rw-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  filter: saturate(1.08) contrast(1.08) brightness(.96);
}


.rw-hero-overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(251, 250, 248, 0.648) 0%,
      rgba(251, 250, 248, 0.551) 42%,
      rgba(225,213,183,1) 100%   /* <- hier in Beige */
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 50%);
}

.rw-hero-content{ position: relative; z-index: 2; }

.rw-eyebrow{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: rgba(27,27,34,.70);
  margin-bottom: .75rem;
}

.rw-hero-title{
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: .8rem;
  font-weight: 800;
}

.rw-accent{ color: var(--accent); }

.rw-hero-subtitle{
  max-width: 44rem;
  color: rgba(27,27,34,.78);
  font-size: 1.02rem;
  line-height: 1.65;
  margin-bottom: 1.2rem;
}

.rw-chip-row{
  display:flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin: 1rem 0 1.4rem;
}

.rw-chip{
  font-size: .78rem;
  padding: .35rem .75rem;
  border-radius: 999px;
  border: 1px solid rgba(27,27,34,.12);
  background: rgba(255,255,255,.86);
  color: rgba(27,27,34,.86);
}

.rw-cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
  margin-top: .4rem;
}

/* ===========================
   Cards
   =========================== */
.rw-card{
  position: relative;
  border-radius: 20px;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(27,27,34,.10);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rw-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadowHover);
}

.rw-card-body{ padding: 1.6rem 1.5rem; }

.rw-icon-pill{
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: var(--accent);
  box-shadow: 0 14px 30px var(--accentSoft);
  color: #111;
  margin-bottom: .9rem;
}

.rw-hero-card{ position: relative; max-width: 440px; margin-left: auto; }

/* Holz-Schild (Hero-Karte) – optimiert */
.rw-card-inner{
  position: relative;
  z-index: 1;

  border-radius: 28px;
  padding: 1.85rem 1.85rem;

  /* Holz + “Milchglas” für Lesbarkeit */
  background:
    linear-gradient(
      rgba(255,255,255,.75),
      rgba(255,255,255,.75)
    ),
    url("../img/holz-schild.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Rahmen wirkt mehr wie echtes Schild */
  border: 1px solid rgba(60,40,30,.22);

  /* mehr “Gewicht” nach unten + leichte Innenkante */
  box-shadow:
    0 26px 52px rgba(0,0,0,.22),
    0 10px 18px rgba(0,0,0,.10),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -10px 18px rgba(0,0,0,.08);

  /* minimal “handgemacht”, aber nicht wackelig */
  transform: rotate(-0.35deg);
  transform-origin: 50% 35%;

  /* falls du mal pseudo-elemente nutzt */
  overflow: hidden;
}

/* leichte Vignette am Rand -> mehr Tiefe, bleibt subtil */
.rw-card-inner::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events:none;
  background:
    radial-gradient(circle at 50% 30%, rgba(255,255,255,.10), transparent 55%),
    radial-gradient(circle at 50% 120%, rgba(0,0,0,.12), transparent 55%);
  mix-blend-mode: multiply;
  opacity: .55;
}

/* Optional: auf Mobile Rotation aus (ruhiger) */
@media (max-width: 576px){
  .rw-card-inner{ transform: none; }
}

.rw-card-title{ font-size: 1.15rem; margin-bottom: .5rem; font-weight: 800; }
.rw-card-text{ color: rgba(27,27,34,.76); }

.rw-mini-list{
  list-style: none;
  padding-left: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .45rem;
}
.rw-mini-list i{ margin-right: .5rem; }

.rw-about-img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
  display: block;
}
@media (max-width: 991.98px){
  .rw-about-img{ height: 280px; }
}

/* ===========================
   Sections
   =========================== */
.rw-section{ padding: 4.5rem 0; }

/* Wichtig: alt nur sehr subtil, damit Holz weiterhin “durch” wirkt */
.rw-section-alt{
  background: rgba(241, 237, 226, 0.32);
}

.rw-section-header{
  text-align:center;
  max-width: 760px;
  margin: 0 auto 2.6rem;
}
.rw-section-header p{
  color: rgba(27,27,34,.72);
  line-height: 1.65;
}

.rw-divider{
  width: 180px;
  height: 4px;
  border-radius: 999px;
  background: var(--accent);
  margin: 1.1rem auto 0;
}

.rw-bullets{
  margin: .9rem 0 0;
  padding-left: 1.2rem;
  color: rgba(27,27,34,.78);
}
.rw-bullets li{ margin-bottom: .35rem; }

/* ===========================
   Timeline
   =========================== */
.rw-timeline{
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding-left: 1.3rem;
}
.rw-timeline::before{
  content:"";
  position:absolute;
  left: 12px;
  top: .3rem;
  bottom: .3rem;
  width: 2px;
  border-radius: 999px;
  background: var(--accent);
  opacity: .28;
}

.rw-step{ position: relative; padding-left: 3.2rem; margin-bottom: 1.6rem; }

.rw-step-marker{
  position:absolute; left: 0; top: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--accent);
  color: #111;
  font-weight: 800;
  box-shadow: 0 14px 30px var(--accentSoft);
}

.rw-step-card{
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(27,27,34,.10);
  box-shadow: var(--shadow);
  padding: 1.2rem 1.25rem;
}
.rw-step-card p{ margin-bottom: 0; color: rgba(27,27,34,.78); }

.rw-summary{
  text-align:center;
  max-width: 760px;
  margin: 2rem auto 0;
  color: rgba(27,27,34,.78);
}

/* ===========================
   FAQ
   =========================== */
.rw-accordion{ padding: 0; }
.rw-accordion summary{
  cursor:pointer;
  list-style:none;
  padding: 1.2rem 1.25rem;
  font-weight: 750;
}
.rw-accordion summary::-webkit-details-marker{ display:none; }

.rw-accordion-body{
  padding: 0 1.25rem 1.2rem;
  color: rgba(27,27,34,.76);
  line-height: 1.6;
}

/* ===========================
   Footer
   =========================== */
.rw-footer{
  padding: 4.5rem 0 2.5rem;
  background: rgba(251,250,248,.95);
  border-top: 1px solid rgba(27,27,34,.08);
  backdrop-filter: blur(10px);
}

.rw-footer-eyebrow{
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .78rem;
  color: rgba(27,27,34,.68);
  margin-bottom: .6rem;
}
.rw-footer-title{ font-weight: 850; margin-bottom: .8rem; }
.rw-footer-text{
  color: rgba(27,27,34,.78);
  max-width: 40rem;
  line-height: 1.7;
}

.rw-contact-list{
  display:grid;
  gap: .55rem;
  margin-top: 1.1rem;
  color: rgba(27,27,34,.78);
}
.rw-contact-list .rw-k{
  display:inline-block;
  min-width: 90px;
  color: rgba(27,27,34,.60);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.rw-form .form-label{ font-weight: 650; color: rgba(27,27,34,.80); }
.rw-input{
  border-radius: 14px;
  border: 1px solid rgba(27,27,34,.14);
  background: rgba(255,255,255,.95);
}
.rw-input:focus{
  border-color: rgba(200,116,59,.65);
  box-shadow: 0 0 0 2px rgba(200,116,59,.18);
}

.rw-form-hint{
  margin-top: .9rem;
  font-size: .92rem;
  color: rgba(27,27,34,.70);
}

.rw-footer-meta{
  margin-top: 2.2rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(27,27,34,.10);
  display:flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
  color: rgba(27,27,34,.62);
  font-size: .9rem;
}

.rw-footer-link{
  color: rgba(27,27,34,.70);
  text-decoration: none;
}
.rw-footer-link:hover{ text-decoration: underline; }

/* ===========================
   Reveal
   =========================== */
.rw-reveal{
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .65s ease, transform .65s ease;
  will-change: opacity, transform;
}
.rw-reveal.is-visible{ opacity: 1; transform: translateY(0); }
.rw-reveal--left{ transform: translateX(-18px); }
.rw-reveal--right{ transform: translateX(18px); }
.rw-reveal--up{ transform: translateY(22px); }
.rw-reveal--scale{ transform: scale(.98); }

@media (prefers-reduced-motion: reduce){
  .rw-reveal{ opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* Parallax */
.rw-parallax{ will-change: transform; transform: translateY(0); }

/* Mobile: verhindert seitliches Overflow durch translateX */
@media (max-width: 768px){
  .rw-reveal--left,
  .rw-reveal--right{
    transform: translate3d(0, 18px, 0) !important;
  }
}

/* Navbar: optisch mittig + sauberer Zeilenabstand */
.rw-nav .navbar-collapse { width: 100%; }

.rw-nav-links{
  gap: .2rem;
  align-items: center;
}

@media (min-width: 992px){
  .rw-nav-links{
    justify-content: center; /* wichtig */
    width: 100%;
  }
  
  .rw-nav .navbar-collapse{
    padding-top: 1.6rem;
  }
  .rw-nav-right{
    margin-left: auto; /* rechts fixieren */
    white-space: nowrap;
  }
  
  .rw-nav .navbar-collapse{
    padding-top: 2rem;
    }
}
@media (max-width: 991.98px){
  .rw-nav{
    padding: .95rem 0;
  }

  .rw-nav .container{
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .rw-nav .navbar-collapse{
    padding-top: 1.9rem;
  }

  .rw-nav-links{
    gap: 1.15rem;
  }

  .rw-nav-links .nav-link{
    font-size: 1rem;
    font-weight: 700;
    padding: .25rem 0;
  }

  .rw-nav-right{
    width: 100%;
    justify-content: center;
    margin-top: 1.8rem !important;
    text-align: center;
  }

  .rw-nav-right .rw-btn-primary{
    margin: 0 auto;
    display: inline-flex;
    justify-content: center;
  }
}

/* optional: kleine Feinjustierung der Link-Höhe */
.rw-nav-links .nav-link{
  padding: .45rem .85rem;
  line-height: 1.2;
}


.rw-certificates{
  background: #e1d5b7;
  padding: 2.2rem 0;
  border-top: 1px solid rgba(27,27,34,.06);
  border-bottom: 1px solid rgba(27,27,34,.06);
}

.rw-cert-row{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: clamp(1.2rem, 4vw, 3.2rem);
  flex-wrap: wrap;
}

.rw-cert-row img{
  height: 58px;       /* anpassen je nach Datei */
  width: auto;
  opacity: .95;
  filter: saturate(1.02) contrast(1.02);
}

@media (max-width: 575.98px){
  .rw-cert-row img{ height: 46px; }
}

/* Holz nur in dieser Section */
.rw-wood-band{
  position: relative;
  overflow: hidden;

  /* Holz + warmer “Paper”-Wash */
  background:
    /* warmes “Wash” oben drüber */
    linear-gradient(
      rgba(225,213,183,.86),
      rgba(225,213,183,.78)
    ),
    url("../img/wood.jpg");

  background-size: cover;
  background-position: center;
}

/* Optional: leichtes "Paper" Gefühl */
.rw-wood-band .rw-card{
  background: rgba(255,255,255,.92);
}
#leistungen{
  padding-top: 6rem;   /* vorher waren es 4.5rem über .rw-section */
}

/* Warmes Band (ohne Holz) – passend zu #e1d5b7 */
.rw-warm-band{
  position: relative;
  overflow: hidden;

  /* ruhiger, warmer Verlauf */
  background:
    linear-gradient(
      to bottom,
      rgba(225,213,183,.72) 0%,
      rgba(225,213,183,.52) 55%,
      rgba(251,250,248,.96) 100%
    );
}


.rw-warm-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.18), transparent 55%),
              radial-gradient(circle at 70% 80%, rgba(0,0,0,.06), transparent 60%);
}


/* ===========================
   Hero – persönliche Version
   =========================== */



.rw-hero-subtitle{
  max-width: 42rem;
}

.rw-hero-welcome{
  max-width: 40rem;
  color: rgba(27,27,34,.76);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rw-hero-signature{
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  line-height: 1.1;
  color: rgba(110,70,45,.92);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
}

.rw-hero-globe{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.rw-globe-wrap{
  text-align: center;
  padding: 1rem;
}

.rw-globe-img{
  width: min(280px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.14));
}

.rw-globe-caption{
  margin-top: 1rem;
  display: inline-block;
  padding: .55rem .95rem;

  font-size: 1rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.25;

  color: #4b3124;
  background: linear-gradient(
    to bottom,
    rgba(255,255,255,.62),
    rgba(225,213,183,.78)
  );
  border: 1px solid rgba(75,49,36,.14);
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
}

@media (max-width: 991.98px){
  .rw-hero-signature{
    font-size: 1.7rem;
  }

  .rw-globe-img{
    width: min(220px, 100%);
  }

  .rw-globe-caption{
    font-size: 1rem;
  }
}


/* ===========================
   Subpage Hero – Wir über uns
   =========================== */

.rw-hero-page .rw-hero-title{
  max-width: 14ch;
}

.rw-hero-page .rw-hero-subtitle{
  max-width: 42rem;
}

.rw-hero-welcome{
  max-width: 40rem;
  color: rgba(27,27,34,.76);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.rw-hero-signature{
  margin-top: 1rem;
  margin-bottom: 1.4rem;
  font-size: 2rem;
  line-height: 1.1;
  color: rgba(110,70,45,.92);
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
}

/* Globe Hero */
.rw-hero-globe{
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.rw-globe-wrap{
  text-align: center;
  padding: 1rem;
}

.rw-globe-img{
  width: min(280px, 100%);
  height: auto;
  display: block;
  margin: 0 auto 1rem;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0,0,0,.14));
}

.rw-globe-caption{
  margin: 1.1rem auto 0;
  max-width: 18rem;
  font-size: .95rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(78,52,36,.95);
  text-align: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
  border: 1px solid rgba(60,40,30,.10);
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
}

/* ===========================
   History Timeline
   =========================== */

.rw-history--focused{
  max-width: 860px;
  margin: 0 auto;
}

.rw-history{
  position: relative;
  padding-left: 2rem;
}

.rw-history::before{
  content:"";
  position:absolute;
  left: 18px;
  top: 6px;
  bottom: 6px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(
    to bottom,
    rgba(200,116,59,.45),
    rgba(200,116,59,.18)
  );
}

.rw-history-item{
  position: relative;
  padding-left: 4.2rem;
  margin-bottom: 1.6rem;
}

.rw-history-year{
  position: absolute;
  left: -8px;
  top: .25rem;
  width: 52px;
  min-width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 50%;
  background: #cf7e47;
  color: #111;
  font-weight: 800;
  font-size: .68rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 10px 18px rgba(200,116,59,.22);
}

.rw-history-content{
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(27,27,34,.10);
  border-radius: 16px;
  padding: 1.15rem 1.35rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.08);
}

.rw-history-content h3{
  margin-bottom: .35rem;
  font-size: 1rem;
}

.rw-history-content p{
  margin-bottom: 0;
  line-height: 1.65;
  color: rgba(27,27,34,.78);
}

.rw-history-item--today .rw-history-year{
  background: #b95f27;
  color: #fff;
}

.rw-history-item--today .rw-history-content{
  border-color: rgba(185,95,39,.20);
  box-shadow: 0 14px 32px rgba(185,95,39,.12);
}

/* ===========================
   Neue Inhaber & Wandel
   =========================== */

.rw-change{
  max-width: 980px;
  margin: 0 auto;
}

.rw-change-side{
  height: 100%;
  padding: 1.5rem 1.4rem;
  border-radius: 18px;
  background: rgba(225,213,183,.24);
  border: 1px solid rgba(60,40,30,.10);
}

.rw-change-kicker{
  display: inline-block;
  margin-bottom: .75rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-change-side h3{
  margin-bottom: .75rem;
  font-size: 1.2rem;
  line-height: 1.2;
}

.rw-change-side p{
  margin-bottom: 0;
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.rw-change-main{
  padding: .15rem 0;
}

.rw-change-main p{
  margin-bottom: 1rem;
  color: rgba(27,27,34,.80);
  line-height: 1.8;
  font-size: 1.02rem;
}

.rw-change-closing{
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 1.02rem;
  color: rgba(78,52,36,.95);
}

/* ===========================
   Responsive
   =========================== */

@media (max-width: 991.98px){
  .rw-change-side{
    margin-bottom: .4rem;
  }
}

@media (max-width: 767.98px){
  .rw-history{
    padding-left: 1rem;
  }

  .rw-history::before{
    left: 14px;
  }

  .rw-history-item{
    padding-left: 3.4rem;
    margin-bottom: 1.3rem;
  }

  .rw-history-year{
    width: 40px;
    min-width: 40px;
    height: 40px;
    font-size: .60rem;
  }

  .rw-transition-title{
    font-size: 1.25rem;
  }

  .rw-hero-signature{
    font-size: 1.7rem;
  }

  .rw-globe-img{
    width: min(220px, 100%);
  }

  .rw-globe-caption{
    font-size: .9rem;
  }
}

/* ===========================
   Leistungsseite – Hero
   =========================== */

.rw-hero-page .rw-hero-title{
  max-width: 14ch;
}

.rw-hero-page .rw-hero-subtitle{
  max-width: 44rem;
}

/* ===========================
   Leistungsseite – Bereichsnavigation
   =========================== */

.rw-section-nav{
  position: relative;
  z-index: 5;
  padding: 1.1rem 0 1.4rem;
  background: rgba(225,213,183,.78);
  border-top: 1px solid rgba(60,40,30,.08);
  border-bottom: 1px solid rgba(60,40,30,.08);
  backdrop-filter: blur(8px);
}

.rw-section-nav-inner{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem;
}

.rw-section-pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  font-size: .92rem;
  color: rgba(60,40,30,.90);
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 8px 18px rgba(0,0,0,.05);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.rw-section-pill:hover{
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(0,0,0,.08);
  background: rgba(255,255,255,.95);
}

.rw-section-pill--accent{
  background: rgba(200,116,59,.92);
  color: #111;
  border-color: rgba(200,116,59,.92);
}

.rw-section-pill--accent:hover{
  background: rgba(185,95,39,.95);
}

/* Scroll-Anker */
#kisten,
#paletten,
#dienstleistungen,
#vor-ort,
#transport,
#extras,
#kontakt{
  scroll-margin-top: 120px;
}

@media (max-width: 767.98px){
  .rw-section-nav{
    padding: .9rem 0 1.1rem;
  }

  .rw-section-pill{
    font-size: .85rem;
    padding: .65rem .9rem;
  }
}

/* ===========================
   Leistungsseite – Holzpackmittel
   =========================== */

.rw-service-intro{
  max-width: 980px;
  margin: 0 auto 2.8rem;
}

.rw-service-intro p{
  color: rgba(27,27,34,.80);
  line-height: 1.8;
}

.rw-service-note{
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
  background: rgba(225,213,183,.28);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 10px 24px rgba(0,0,0,.05);
}

.rw-service-note strong{
  display: block;
  margin-bottom: .45rem;
  font-size: 1.05rem;
}

.rw-service-note span{
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.rw-product-block{
  max-width: 980px;
  margin: 0 auto 2rem;
}

.rw-product-block--alt{
  margin-bottom: 0;
}

.rw-product-image-wrap{
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(0,0,0,.10);
  background: rgba(255,255,255,.7);
}

.rw-product-image{
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

.rw-product-content{
  padding: .4rem 0;
}

.rw-product-content h3{
  margin-bottom: .6rem;
  font-size: 1.5rem;
}

.rw-product-content p{
  color: rgba(27,27,34,.78);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rw-tag-row{
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}

.rw-tag{
  display: inline-flex;
  align-items: center;
  padding: .45rem .8rem;
  border-radius: 999px;
  background: rgba(255,255,255,.84);
  border: 1px solid rgba(60,40,30,.10);
  font-size: .88rem;
  font-weight: 600;
  color: rgba(60,40,30,.92);
}

@media (max-width: 991.98px){
  .rw-product-image{
    height: 220px;
  }
}

@media (max-width: 767.98px){
  .rw-service-intro{
    margin-bottom: 2rem;
  }

  .rw-product-content h3{
    font-size: 1.25rem;
  }

  .rw-product-image{
    height: 200px;
  }
}

.rw-service-lead{
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 600;
  margin-bottom: .8rem;
  color: rgba(27,27,34,.92);
}

/* ===========================
   Dienstleistungen
   =========================== */

.rw-service-stage{
max-width: 1040px;
margin: 0 auto;
}

.rw-service-image-card{
border-radius: 22px;
overflow: hidden;
background: rgba(255,255,255,.75);
box-shadow: 0 18px 36px rgba(0,0,0,.10);
}

.rw-service-image{
display: block;
width: 100%;
height: 420px;
object-fit: cover;
object-position: center;
}

.rw-service-content{
padding: .4rem 0;
}

.rw-service-lead{
font-size: 1.15rem;
line-height: 1.75;
margin-bottom: 1.2rem;
color: rgba(27,27,34,.86);
}

.rw-service-points{
display: grid;
gap: .8rem;
margin-bottom: 1.2rem;
}

.rw-service-point{
padding: .9rem 1rem;
border-radius: 16px;
background: rgba(255,255,255,.72);
border: 1px solid rgba(60,40,30,.08);
box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.rw-service-point strong{
display:block;
margin-bottom:.2rem;
font-size:.95rem;
}

.rw-service-point span{
font-size:.9rem;
color:rgba(27,27,34,.75);
}

.rw-service-note{
font-weight:600;
color:rgba(78,52,36,.95);
}

/* ===========================
   Transportarten
   =========================== */

.rw-transport-grid{
  max-width: 1100px;
  margin: 0 auto;
}

.rw-transport-card{
  height: 100%;
  padding: 1.4rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rw-transport-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,.09);
}

.rw-transport-icon{
  width: 48px;
  height: 48px;
  margin-bottom: .9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-size: 1rem;
}

.rw-transport-card h3{
  margin-bottom: .55rem;
  font-size: 1.15rem;
}

.rw-transport-card p{
  margin-bottom: 0;
  line-height: 1.7;
  color: rgba(27,27,34,.75);
}

.rw-transport-note{
  max-width: 780px;
  margin: 1.8rem auto 0;
  text-align: center;
}

.rw-transport-note p{
  margin-bottom: 0;
  color: rgba(78,52,36,.88);
  line-height: 1.75;
  font-weight: 500;
}
/* ===========================
   Vor Ort / Inhouse
   =========================== */

.rw-process-compare{
  max-width: 1080px;
  margin: 0 auto;
}

.rw-process-card{
  height: 100%;
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
}

.rw-process-head{
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  margin-bottom: 1rem;
}

.rw-process-icon{
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-size: 1rem;
  flex-shrink: 0;
}

.rw-process-kicker{
  margin: 0 0 .2rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(120,70,40,.88);
}

.rw-process-head h3{
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.2;
}

.rw-process-text{
  color: rgba(27,27,34,.76);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rw-process-list{
  display: grid;
  gap: .7rem;
}

.rw-process-item{
  padding: .85rem 1rem;
  border-radius: 14px;
  background: rgba(225,213,183,.18);
  border: 1px solid rgba(60,40,30,.06);
  color: rgba(27,27,34,.80);
  line-height: 1.55;
}

@media (max-width: 767.98px){
  .rw-process-card{
    padding: 1.2rem 1rem;
  }

  .rw-process-head h3{
    font-size: 1.12rem;
  }
}
/* ===========================
   Zusatzleistungen
   =========================== */

.rw-extra-stage{
  max-width: 1080px;
  margin: 0 auto;
}

.rw-extra-card{
  height: 100%;
  padding: 1.15rem 1.1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 12px 26px rgba(0,0,0,.05);
}

.rw-extra-card h3{
  margin-bottom: .45rem;
  font-size: 1.05rem;
  line-height: 1.2;
}

.rw-extra-card p{
  margin-bottom: 0;
  color: rgba(27,27,34,.76);
  line-height: 1.65;
}

.rw-extra-note{
  max-width: 780px;
  margin: 1.8rem auto 0;
  text-align: center;
}

.rw-extra-note p{
  margin-bottom: 0;
  color: rgba(78,52,36,.92);
  font-weight: 600;
  line-height: 1.75;
}

@media (max-width: 767.98px){
  .rw-extra-card{
    padding: 1rem .95rem;
  }
}

/* ===========================
   Karriere Hero
   =========================== */

.rw-career-badge{
  padding: 1.8rem 1.5rem;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
  text-align: left;
}

.rw-career-badge-icon{
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-size: 1.15rem;
}

.rw-career-badge h2{
  margin-bottom: .6rem;
  font-size: 1.5rem;
  line-height: 1.2;
}

.rw-career-badge p{
  margin-bottom: 1rem;
  color: rgba(27,27,34,.76);
  line-height: 1.75;
}

.rw-career-badge-note{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(225,213,183,.42);
  border: 1px solid rgba(60,40,30,.08);
  font-size: .86rem;
  font-weight: 700;
  color: rgba(78,52,36,.95);
}

@media (max-width: 767.98px){
  .rw-career-badge{
    padding: 1.35rem 1.1rem;
  }

  .rw-career-badge h2{
    font-size: 1.25rem;
  }
}

/* ===========================
   Quick Apply
   =========================== */

.rw-quickapply{
  max-width: 1080px;
  margin: 0 auto;
}

.rw-quickapply-intro{
  padding: 1rem 0;
}

.rw-quickapply-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .45rem .8rem;
  margin-bottom: .85rem;
  border-radius: 999px;
  background: rgba(200,116,59,.10);
  border: 1px solid rgba(60,40,30,.08);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-quickapply-intro h3{
  margin-bottom: .75rem;
  font-size: 1.8rem;
  line-height: 1.2;
}

.rw-quickapply-intro p{
  color: rgba(27,27,34,.76);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.rw-quickapply-points{
  display: grid;
  gap: .7rem;
  margin-top: 1rem;
}

.rw-quickapply-point{
  display: flex;
  align-items: center;
  gap: .7rem;
  color: rgba(27,27,34,.82);
  font-weight: 500;
}

.rw-quickapply-point i{
  color: rgba(120,70,40,.95);
}

.rw-quickapply-form{
  border-radius: 24px;
}

@media (max-width: 767.98px){
  .rw-quickapply-intro h3{
    font-size: 1.4rem;
  }
}

/* ===========================
   Karriere – Warum Rollwagen
   =========================== */

.rw-why-grid{
  max-width: 1100px;
  margin: 0 auto;
}

.rw-why-card{
  height: 100%;
  padding: 1.4rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rw-why-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,.09);
}

.rw-why-icon{
  width: 48px;
  height: 48px;
  margin-bottom: .9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-size: 1rem;
}

.rw-why-card h3{
  margin-bottom: .55rem;
  font-size: 1.1rem;
}

.rw-why-card p{
  margin-bottom: 0;
  line-height: 1.7;
  color: rgba(27,27,34,.75);
}

/* ===========================
   Karriere – Arbeitsalltag
   =========================== */

.rw-career-image img{
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
}

.rw-career-text{
  max-width: 520px;
}

.rw-career-kicker{
  display: inline-block;
  margin-bottom: .7rem;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(200,116,59,.12);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(120,70,40,.95);
}

.rw-career-text h2{
  margin-bottom: .8rem;
  font-size: 2rem;
  line-height: 1.2;
}

.rw-career-text p{
  color: rgba(27,27,34,.78);
  line-height: 1.75;
}

.rw-career-points{
  margin-top: 1rem;
  display: grid;
  gap: .6rem;
}

.rw-career-point{
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 500;
}

.rw-career-point i{
  color: var(--accent);
}

@media (max-width: 991.98px){

  .rw-career-image img{
    height: 280px;
  }

  .rw-career-text{
    max-width: none;
  }

}

/* ===========================
   Karriere – Benefits
   =========================== */

.rw-benefit{
  height: 100%;
  padding: 1.4rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 14px 28px rgba(0,0,0,.06);
  text-align: left;
  transition: transform .18s ease, box-shadow .18s ease;
}

.rw-benefit:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 34px rgba(0,0,0,.09);
}

.rw-benefit-icon{
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .8rem;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-size: 1rem;
}

.rw-benefit h3{
  font-size: 1.1rem;
  margin-bottom: .45rem;
}

.rw-benefit p{
  margin-bottom: 0;
  line-height: 1.7;
  color: rgba(27,27,34,.75);
}

/* ===========================
   Karriere – Job Listing
   =========================== */

.rw-job-list{
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  gap: 1.15rem;
}

.rw-job-card{
  padding: 1.4rem 1.35rem;
  border-radius: 22px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 16px 32px rgba(0,0,0,.06);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rw-job-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 20px 38px rgba(0,0,0,.09);
}

.rw-job-top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: .9rem;
}

.rw-job-top h3{
  margin: .35rem 0 0;
  font-size: 1.25rem;
  line-height: 1.25;
}

.rw-job-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .35rem .7rem;
  border-radius: 999px;
  background: rgba(200,116,59,.12);
  border: 1px solid rgba(60,40,30,.08);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-job-text{
  margin-bottom: 1rem;
  color: rgba(27,27,34,.78);
  line-height: 1.75;
}

.rw-job-meta{
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.2rem;
  color: rgba(27,27,34,.68);
  font-size: .94rem;
}

.rw-job-meta span{
  display: inline-flex;
  align-items: center;
  gap: .45rem;
}

.rw-job-meta i{
  color: rgba(120,70,40,.9);
}

.rw-job-btn{
  flex-shrink: 0;
  white-space: nowrap;
}

@media (max-width: 767.98px){
  .rw-job-card{
    padding: 1.15rem 1rem;
  }

  .rw-job-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .rw-job-top h3{
    font-size: 1.12rem;
  }

  .rw-job-btn{
    width: 100%;
  }
}

.rw-hero-contact-list{
  margin: 1rem 0 1.1rem;
  display: grid;
  gap: .65rem;
}

.rw-hero-contact-item{
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .85rem;
  border-radius: 14px;
  background: rgba(255,255,255,.54);
  border: 1px solid rgba(60,40,30,.08);
  text-decoration: none;
  color: rgba(27,27,34,.88);
  transition: background .18s ease, transform .18s ease;
}

.rw-hero-contact-item:hover{
  background: rgba(255,255,255,.72);
  transform: translateY(-1px);
  text-decoration: none;
}

.rw-hero-contact-item i{
  color: rgba(120,70,40,.95);
  width: 16px;
  text-align: center;
}

/* ===========================
   Navbar Dropdown Hover
   =========================== */

.rw-nav-links{
  align-items: center;
}

.rw-nav-dropdown{
  position: relative;
}

.rw-nav-dropdown > .nav-link{
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}

.rw-nav-dropdown > .nav-link::before{
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: rotate(45deg);
  margin-left: .45rem;
  margin-top: -3px;
  opacity: .7;
  order: 2;
}

.rw-dropdown-menu{
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);

  z-index: 1000;
  min-width: 260px;
  margin: 0;
  padding: .45rem;
  list-style: none;

  background: rgba(255,255,255,.98);
  border: 1px solid rgba(60,40,30,.08);
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.rw-nav-dropdown:hover > .rw-dropdown-menu,
.rw-nav-dropdown:focus-within > .rw-dropdown-menu{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.rw-dropdown-menu li{
  list-style: none;
  margin: 0;
  padding: 0;
}

.rw-dropdown-item{
  display: block;
  padding: .6rem .85rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 550;
  color: rgba(27,27,34,.82);
  transition: background .18s ease, color .18s ease;
  white-space: nowrap;
}

.rw-dropdown-item:hover,
.rw-dropdown-item:focus{
  background: rgba(225,213,183,.28);
  color: rgba(27,27,34,1);
  text-decoration: none;
}

.rw-mobile-parent{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
}

.rw-mobile-parent .nav-link{
  margin-bottom: 0;
}

.rw-mobile-subtoggle{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(200,116,59,.12);
  color: rgba(120,70,40,.95);
  flex-shrink: 0;
}

.rw-mobile-subtoggle i{
  font-size: .85rem;
  transition: transform .18s ease;
}

.rw-nav-dropdown.is-open .rw-mobile-subtoggle i{
  transform: rotate(180deg);
}

@media (min-width: 992px){
  .rw-mobile-subtoggle{
    display: none;
  }

  .rw-mobile-parent{
    display: block;
  }
}

/* Desktop only */
@media (min-width: 992px){
  .rw-nav-links{
    gap: .2rem;
  }
}

/* Mobile */
@media (max-width: 991.98px){

  .rw-nav-dropdown{
    width: 100%;
  }

  .rw-mobile-parent{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .65rem;
  }

  .rw-mobile-parent .nav-link{
    margin-bottom: 0;
  }

  .rw-mobile-subtoggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: rgba(200,116,59,.14);
    color: rgba(120,70,40,.95);
    flex-shrink: 0;
    transition: background .18s ease, transform .18s ease;
  }

  .rw-mobile-subtoggle i{
    font-size: .9rem;
    transition: transform .22s ease;
  }

  .rw-nav-dropdown.is-open .rw-mobile-subtoggle i{
    transform: rotate(180deg);
  }

  .rw-mobile-submenu{
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition:
      max-height .32s ease,
      opacity .22s ease,
      margin-top .22s ease;
    margin-top: 0;
  }

  .rw-nav-dropdown.is-open .rw-mobile-submenu{
    max-height: 420px;
    opacity: 1;
    margin-top: .5rem;
  }

  .rw-dropdown-menu{
    position: static;
    min-width: 100%;
    margin: 0;
    padding: .15rem 0 0 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    list-style: none;
    text-align: center;
    transform: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .rw-dropdown-menu li{
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .rw-dropdown-item{
    display: inline-block;
    padding: .45rem .85rem;
    margin: .18rem 0;
    border-radius: 999px;
    background: rgba(255,255,255,.58);
    border: 1px solid rgba(60,40,30,.08);
    text-decoration: none;
    font-size: .95rem;
    font-weight: 550;
    color: rgba(27,27,34,.78);
    white-space: normal;
  }

  .rw-dropdown-item:hover,
  .rw-dropdown-item:focus{
    background: rgba(225,213,183,.55);
    color: rgba(27,27,34,1);
    text-decoration: none;
  }
}

/* ===========================
   Anfrage konfigurieren
   =========================== */

.rw-configurator{
  max-width: 1180px;
  margin: 0 auto;
}

.rw-config-layout{
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 1.4rem;
  align-items: start;
}

.rw-config-main,
.rw-config-summary{
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 18px 38px rgba(0,0,0,.08);
}

.rw-config-main{
  padding: 1.4rem;
}

.rw-config-sidebar{
  position: sticky;
  top: 110px;
}

.rw-config-summary{
  padding: 1.3rem 1.2rem;
}

.rw-config-summary h3{
  margin: .5rem 0 1rem;
  font-size: 1.25rem;
}



.rw-config-summary-group strong{
  display: block;
  margin-bottom: .25rem;
  font-size: .88rem;
  color: rgba(78,52,36,.94);
}

.rw-config-summary-group p{
  margin: 0;
  color: rgba(27,27,34,.72);
  line-height: 1.55;
}

.rw-config-summary-note{
  margin-top: 1rem;
  padding: .85rem;
  border-radius: 16px;
  background: rgba(225,213,183,.28);
  color: rgba(78,52,36,.92);
  line-height: 1.55;
  font-size: .92rem;
}

.rw-config-progress{
  margin-bottom: 1.4rem;
}

.rw-config-progress-top{
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .55rem;
  color: rgba(27,27,34,.70);
  font-size: .9rem;
}

.rw-config-progress-track{
  height: 10px;
  border-radius: 999px;
  background: rgba(60,40,30,.10);
  overflow: hidden;
}

.rw-config-progress-bar{
  height: 100%;
  border-radius: 999px;
  background: var(--accent);
  transition: width .25s ease;
}

.rw-config-step{
  display: none;
}

.rw-config-step.is-active{
  display: block;
}

.rw-config-header{
  margin-bottom: 1.2rem;
}

.rw-config-header h2{
  margin: .4rem 0 .55rem;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
  line-height: 1.15;
}

.rw-config-header p{
  max-width: 680px;
  color: rgba(27,27,34,.76);
  line-height: 1.75;
}

.rw-config-hint{
  margin: 1.3rem 0 .75rem;
  font-size: .9rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-config-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.rw-config-option{
  cursor: pointer;
}

.rw-config-option input[type="radio"],
.rw-config-option input[type="checkbox"]{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.rw-config-option-box{
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .45rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.045);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.rw-config-option-box i{
  color: var(--accent);
  font-size: 1.55rem;
}

.rw-config-option-box strong{
  line-height: 1.25;
}

.rw-config-option-box small{
  color: rgba(27,27,34,.64);
  line-height: 1.45;
}

.rw-config-option:hover .rw-config-option-box{
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(0,0,0,.075);
}

.rw-config-option input:checked + .rw-config-option-box{
  background: rgba(225,213,183,.36);
  border-color: rgba(200,116,59,.52);
  box-shadow: 0 14px 30px rgba(200,116,59,.12);
}

.rw-config-inline-input{
  width: 100%;
  margin-top: .3rem;
  padding: .55rem .7rem;
  border-radius: 12px;
  border: 1px solid rgba(60,40,30,.14);
  background: rgba(255,255,255,.9);
  font-size: .92rem;
}

.rw-config-actions{
  margin-top: 1.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(60,40,30,.08);
  display: flex;
  justify-content: space-between;
  gap: .8rem;
}

@media (max-width: 991.98px){
  .rw-config-layout{
    grid-template-columns: 1fr;
  }

  .rw-config-sidebar{
    position: static;
  }

  .rw-config-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .rw-config-main{
    padding: 1rem;
  }

  .rw-config-grid{
    grid-template-columns: 1fr;
  }

  .rw-config-progress-top{
    flex-direction: column;
    gap: .25rem;
  }

  .rw-config-actions{
    flex-direction: column-reverse;
  }

  .rw-config-actions .btn{
    width: 100%;
  }
}

.rw-config-option-box{
  position: relative;
}

.rw-config-info{
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 999px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.95);
  font-weight: 800;
  line-height: 1;
  cursor: help;
  z-index: 3;
}

.rw-config-tooltip{
  position: absolute;
  right: .75rem;
  top: 2.7rem;
  width: min(260px, calc(100vw - 3rem));
  padding: .75rem .85rem;
  border-radius: 14px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 14px 28px rgba(0,0,0,.12);
  color: rgba(27,27,34,.78);
  font-size: .86rem;
  line-height: 1.5;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  z-index: 20;
  pointer-events: none;
}

.rw-config-info:hover + .rw-config-tooltip,
.rw-config-info:focus + .rw-config-tooltip{
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ===========================
   Konfigurator – Step 2 Packgut
   =========================== */

.rw-config-grid--compact{
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 520px;
}

.rw-packgut-list{
  display: grid;
  gap: 1rem;
}

.rw-packgut{
  padding: 1.1rem;
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(60,40,30,.08);
}

.rw-packgut-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: .9rem;
}

.rw-packgut-head h3{
  margin: 0;
  font-size: 1.05rem;
}

.rw-remove-packgut{
  border: 0;
  border-radius: 999px;
  padding: .4rem .75rem;
  background: rgba(200,70,55,.10);
  color: rgba(140,45,35,.95);
  font-weight: 700;
}

.rw-config-fields-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
}

.rw-config-field{
  min-height: 138px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .55rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.045);
}

.rw-config-field i{
  color: var(--accent);
  font-size: 1.45rem;
}

.rw-config-field input,
.rw-config-field select{
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(27,27,34,.35);
  background: transparent;
  padding: .35rem 0;
  outline: none;
  color: rgba(27,27,34,.86);
}

.rw-config-field input:focus,
.rw-config-field select:focus{
  border-bottom-color: var(--accent);
}

.rw-config-field span{
  font-weight: 700;
  color: rgba(27,27,34,.80);
}

.rw-add-packgut{
  margin-top: 1rem;
  border: 0;
  background: transparent;
  color: rgba(120,70,40,.95);
  font-weight: 800;
  padding: .4rem 0;
}

.rw-add-packgut:hover{
  text-decoration: underline;
}

.rw-config-small-note{
  margin: .35rem 0 0;
  color: rgba(27,27,34,.58);
  font-size: .9rem;
}

@media (max-width: 991.98px){
  .rw-config-fields-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .rw-config-grid--compact,
  .rw-config-fields-grid{
    grid-template-columns: 1fr;
  }
}

.rw-config-option-box img{
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}

.rw-config-contact-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.2rem;
  margin-top: 1rem;
}

.rw-config-input{
  display: grid;
  gap: .35rem;
}

.rw-config-input span{
  font-weight: 700;
  color: rgba(27,27,34,.74);
}

.rw-config-input input,
.rw-config-input textarea{
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(27,27,34,.30);
  background: transparent;
  padding: .55rem 0;
  outline: none;
  color: rgba(27,27,34,.90);
}

.rw-config-input textarea{
  border: 2px solid rgba(27,27,34,.18);
  border-radius: 14px;
  padding: .8rem;
  resize: vertical;
  background: rgba(255,255,255,.55);
}

.rw-config-input input:focus,
.rw-config-input textarea:focus{
  border-color: var(--accent);
}

.rw-config-input--full{
  grid-column: 1 / -1;
}

.rw-config-check{
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  margin: 1rem 0;
  color: rgba(27,27,34,.78);
  line-height: 1.55;
}

.rw-config-check input{
  width: 20px;
  height: 20px;
  margin-top: .15rem;
  accent-color: var(--accent);
  flex-shrink: 0;
}

.rw-config-check a{
  color: var(--accent);
  font-weight: 700;
}

.rw-config-privacy-note{
  margin: 1.3rem 0 .6rem;
  color: rgba(27,27,34,.66);
  line-height: 1.65;
}

@media (max-width: 767.98px){
  .rw-config-contact-grid{
    grid-template-columns: 1fr;
  }
}
.rw-config-step-nav{
  width: 100%;
  display: block;
  text-align: left;
  border-left: 3px solid transparent;
  cursor: pointer;
  background: transparent;
}

.rw-config-step-nav:hover{
  background: rgba(225,213,183,.20);
}

.rw-config-step-nav.is-active{
  border-left-color: var(--accent);
  background: rgba(225,213,183,.24);
}
.rw-config-step-nav.is-locked{
  opacity: .45;
  cursor: not-allowed;
}

.rw-config-step-nav.is-locked:hover{
  background: transparent;
}
.rw-config-summary{
  padding: 1.4rem;
}

.rw-config-summary h3{
  margin: .8rem 0 1.2rem;
  font-size: 1.45rem;
}

.rw-config-step-nav{
  width: 100%;
  display: block;
  text-align: left;
  border: 0;
  border-left: 4px solid transparent;
  border-radius: 16px;
  padding: .95rem 1rem;
  margin-bottom: .65rem;
  background: rgba(255,255,255,.55);
  box-shadow: inset 0 0 0 1px rgba(60,40,30,.07);
  cursor: pointer;
  transition: background .18s ease, box-shadow .18s ease, transform .18s ease, border-color .18s ease;
}

.rw-config-step-nav:hover{
  background: rgba(225,213,183,.26);
  transform: translateY(-1px);
}

.rw-config-step-nav.is-active{
  border-left-color: var(--accent);
  background: rgba(225,213,183,.34);
  box-shadow:
    inset 0 0 0 1px rgba(200,116,59,.16),
    0 10px 22px rgba(0,0,0,.055);
}

.rw-config-step-nav.is-locked{
  opacity: .55;
  cursor: not-allowed;
}

.rw-config-step-nav.is-locked:hover{
  background: rgba(255,255,255,.55);
  transform: none;
}

.rw-config-step-nav strong{
  display: block;
  margin-bottom: .35rem;
  font-size: .95rem;
  color: rgba(78,52,36,.96);
}

.rw-config-step-nav p{
  margin: .1rem 0 0;
  color: rgba(27,27,34,.62);
  line-height: 1.45;
  font-size: .92rem;
}

.rw-config-step-nav.is-active p{
  color: rgba(27,27,34,.78);
}

.rw-config-summary-note{
  margin-top: 1.1rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(225,213,183,.28);
  color: rgba(78,52,36,.92);
  line-height: 1.6;
  font-size: .94rem;
}

/* ===========================
   Branchen Bild-Kacheln
   =========================== */

.rw-industry-tiles{
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .9rem;
}

.rw-industry-tile{
  position: relative;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #e1d5b7;
  box-shadow: var(--shadow);
  border: 1px solid rgba(60,40,30,.10);
}

.rw-industry-tile:nth-child(1),
.rw-industry-tile:nth-child(2){
  grid-column: span 3;
}

.rw-industry-tile:nth-child(3),
.rw-industry-tile:nth-child(4),
.rw-industry-tile:nth-child(5){
  grid-column: span 2;
}

.rw-industry-tile img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.rw-industry-tile-overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.58), rgba(0,0,0,.08) 58%, rgba(255,255,255,.10)),
    linear-gradient(rgba(200,116,59,.06), rgba(200,116,59,.06));
  z-index: 1;
}

.rw-industry-tile h3{
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.15rem;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 1.08rem;
  line-height: 1.2;
  font-weight: 850;
  letter-spacing: .03em;
  text-transform: uppercase;
  text-shadow: 0 2px 16px rgba(0,0,0,.35);
}

.rw-industry-tile:hover img{
  transform: scale(1.08);
  filter: saturate(1.06) contrast(1.04);
}

@media (max-width: 991.98px){
  .rw-industry-tiles{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rw-industry-tile,
  .rw-industry-tile:nth-child(1),
  .rw-industry-tile:nth-child(2),
  .rw-industry-tile:nth-child(3),
  .rw-industry-tile:nth-child(4),
  .rw-industry-tile:nth-child(5){
    grid-column: span 1;
  }
}

@media (max-width: 575.98px){
  .rw-industry-tiles{
    grid-template-columns: 1fr;
  }

  .rw-industry-tile{
    min-height: 220px;
  }
}

/* ===========================
   Branchen Bild-Kacheln – ruhiger mit weißer Textleiste
   =========================== */

.rw-industry-tile{
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  box-shadow: var(--shadow);
  border: 1px solid rgba(60,40,30,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}

.rw-industry-tile:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadowHover);
}

.rw-industry-tile img{
  width: 100%;
  height: calc(100% - 64px);
  object-fit: cover;
  display: block;
  transform: scale(1.01);
  transition: transform .45s ease, filter .45s ease;
}

.rw-industry-tile-overlay{
  position: absolute;
  inset: 0 0 64px 0;
  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,.08),
      rgba(0,0,0,.18)
    ),
    linear-gradient(
      rgba(200,116,59,.05),
      rgba(200,116,59,.05)
    );
  z-index: 1;
  pointer-events: none;
}

.rw-industry-tile h3{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 64px;

  display: flex;
  align-items: center;

  margin: 0;
  padding: 1rem 1.25rem;

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );

  border-top: 1px solid rgba(60,40,30,.09);

  color: rgba(78,52,36,.96);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: .035em;
  text-transform: uppercase;
  text-shadow: none;

  z-index: 2;
}

.rw-industry-tile h3::before{
  content: "";
  width: 4px;
  height: 28px;
  border-radius: 999px;
  background: var(--accent);
  margin-right: .8rem;
  flex-shrink: 0;
}

.rw-industry-tile:hover img{
  transform: scale(1.06);
  filter: saturate(1.04) contrast(1.03);
}

@media (max-width: 575.98px){
  .rw-industry-tile{
    min-height: 245px;
  }

  .rw-industry-tile img{
    height: calc(100% - 58px);
  }

  .rw-industry-tile-overlay{
    inset: 0 0 58px 0;
  }

  .rw-industry-tile h3{
    min-height: 58px;
    padding: .85rem 1rem;
    font-size: .92rem;
  }
}

/* ===========================
   Produktseite – angeglichen an Startseite
   =========================== */

.rw-product-hero{
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #e1d5b7;
}

.rw-product-hero-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.rw-product-hero-shade{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

.rw-product-hero .container{
  position: relative;
  z-index: 2;
}

.rw-product-hero-content{
  max-width: 680px;
  padding: 5.2rem 0 4.2rem;
}

.rw-product-hero-content .rw-eyebrow{
  color: rgba(27,27,34,.66);
}

.rw-product-hero-content h1{
  margin-bottom: 1rem;
  color: var(--text);
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.rw-product-hero-content p{
  max-width: 560px;
  color: rgba(27,27,34,.78);
  font-size: 1.05rem;
  line-height: 1.7;
}

.rw-product-hero .rw-btn-ghost{
  background: rgba(255,255,255,.88);
  border-color: rgba(27,27,34,.12) !important;
  color: var(--text);
}

/* Produktbereich */

.rw-products-page-section{
  background:
    linear-gradient(
      rgba(225,213,183,.86),
      rgba(225,213,183,.78)
    ),
    url("../img/wood.jpg");
  background-size: cover;
  background-position: center;
  padding: 4.5rem 0 5rem;
}

.rw-product-card-grid{
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}

.rw-product-big-card{
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rw-product-big-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}

.rw-product-big-image{
  height: 250px;
  overflow: hidden;
  background: rgba(225,213,183,.45);
}

.rw-product-big-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform .45s ease, filter .45s ease;
}

.rw-product-big-card:hover .rw-product-big-image img{
  transform: scale(1.07);
  filter: saturate(1.05) contrast(1.04);
}

.rw-product-big-content{
  position: relative;
  padding: 1.5rem 1.3rem 1.4rem;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
}

.rw-product-number{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: .9rem;
  border-radius: 999px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  font-weight: 900;
  font-size: .85rem;
}

.rw-product-big-content h3{
  margin-bottom: .65rem;
  color: rgba(78,52,36,.98);
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 900;
}

.rw-product-big-content p{
  min-height: 105px;
  margin-bottom: 1.05rem;
  color: rgba(27,27,34,.74);
  line-height: 1.68;
}

.rw-product-badges{
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
}

.rw-product-badges span{
  display: inline-flex;
  align-items: center;
  padding: .38rem .68rem;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,40,30,.08);
  color: rgba(78,52,36,.94);
  font-size: .8rem;
  font-weight: 750;
}

/* Spezifikation */

.rw-product-spec-section{
  padding: 4.2rem 0;
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.98),
      rgba(241,237,226,.52)
    );
}

.rw-product-spec-box{
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .95fr 1.45fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
  border-radius: 24px;
  background: rgba(255,255,255,.90);
  border: 1px solid rgba(60,40,30,.08);
  box-shadow: 0 14px 32px rgba(0,0,0,.07);
}

.rw-product-spec-intro h2{
  margin-bottom: .8rem;
  color: rgba(27,27,34,.96);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  font-weight: 900;
}

.rw-product-spec-intro p{
  margin-bottom: 0;
  color: rgba(27,27,34,.72);
  line-height: 1.75;
}

.rw-product-spec-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem;
}

.rw-product-spec-item{
  padding: 1.15rem 1.1rem;
  border-radius: 20px;
  background: rgba(225,213,183,.24);
  border: 1px solid rgba(60,40,30,.07);
}

.rw-product-spec-item i{
  width: 42px;
  height: 42px;
  margin-bottom: .75rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
}

.rw-product-spec-item strong{
  display: block;
  margin-bottom: .3rem;
  color: rgba(78,52,36,.98);
  font-size: 1rem;
}

.rw-product-spec-item span{
  display: block;
  color: rgba(27,27,34,.70);
  line-height: 1.55;
  font-size: .92rem;
}

/* Mini CTA */

.rw-product-mini-cta{
  padding: 2rem 0;
  background: rgba(225,213,183,.58);
  border-top: 1px solid rgba(60,40,30,.06);
  border-bottom: 1px solid rgba(60,40,30,.06);
}

.rw-product-mini-cta-inner{
  max-width: 1160px;
  margin: 0 auto;
  padding: 1.1rem 1.2rem;
  border-radius: 20px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,40,30,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  box-shadow: 0 12px 28px rgba(0,0,0,.06);
}

.rw-product-mini-cta-inner strong{
  color: rgba(27,27,34,.92);
  font-size: 1.1rem;
}

@media (max-width: 991.98px){
  .rw-product-hero{
    min-height: auto;
  }

  .rw-product-hero-content{
    padding: 4.8rem 0 3.8rem;
  }

  .rw-product-card-grid{
    grid-template-columns: 1fr;
    max-width: 640px;
  }

  .rw-product-big-card{
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
  }

  .rw-product-big-image{
    height: auto;
    min-height: 260px;
  }

  .rw-product-big-content p{
    min-height: 0;
  }

  .rw-product-spec-box{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px){
  .rw-product-hero-content h1{
    font-size: 2.45rem;
  }

  .rw-product-big-card{
    display: block;
  }

  .rw-product-big-image{
    height: 220px;
    min-height: 0;
  }

  .rw-product-spec-box{
    padding: 1.25rem;
    border-radius: 24px;
  }

  .rw-product-spec-grid{
    grid-template-columns: 1fr;
  }

  .rw-product-mini-cta-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .rw-product-mini-cta-inner .btn{
    width: 100%;
    justify-content: center;
  }
}



/* ===========================
   Index – Hero Angleichung an Produktseite
   =========================== */

body.home .rw-hero,
.rw-home-hero{
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 5.2rem 0 4.2rem;
}

body.home .rw-hero-overlay,
.rw-home-hero .rw-hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

body.home .rw-hero-img,
.rw-home-hero .rw-hero-img{
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

body.home .rw-hero-title,
.rw-home-hero .rw-hero-title{
  max-width: 760px;
  font-size: clamp(2.25rem, 4.4vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

body.home .rw-hero-subtitle,
.rw-home-hero .rw-hero-subtitle{
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(27,27,34,.78);
}

body.home .rw-hero-welcome,
.rw-home-hero .rw-hero-welcome{
  max-width: 600px;
  color: rgba(27,27,34,.74);
}

body.home .rw-globe-img,
.rw-home-hero .rw-globe-img{
  width: min(300px, 100%);
  filter: drop-shadow(0 18px 30px rgba(0,0,0,.16));
}

body.home .rw-globe-caption,
.rw-home-hero .rw-globe-caption{
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(60,40,30,.10);
  color: rgba(78,52,36,.95);
}

/* ===========================
   Index – Leistungen Angleichung
   =========================== */

.rw-home-services .rw-card,
#leistungen .rw-card{
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-home-services .rw-card-body,
#leistungen .rw-card-body{
  padding: 1.55rem 1.35rem 1.45rem;
}

.rw-home-services .rw-card-title,
#leistungen .rw-card-title{
  color: rgba(78,52,36,.98);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1.15;
}

.rw-home-services .rw-card-text,
#leistungen .rw-card-text{
  color: rgba(27,27,34,.74);
  line-height: 1.68;
}

.rw-home-services .rw-icon-pill,
#leistungen .rw-icon-pill{
  width: 46px;
  height: 46px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  box-shadow: none;
}

/* ===========================
   Index – Über uns Block
   =========================== */

.rw-home-about-card,
.rw-about-feature{
  border-radius: 24px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-about-img{
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-home-about-card h3,
.rw-about-feature h3{
  color: rgba(27,27,34,.96);
  font-weight: 900;
  letter-spacing: -.02em;
}

.rw-home-about-card .rw-tag,
.rw-about-feature .rw-tag{
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(60,40,30,.08);
  color: rgba(78,52,36,.94);
}

/* ===========================
   Über-uns-Seite – Angleichung
   =========================== */

.rw-about-hero{
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5.2rem 0 4.2rem;
}

.rw-about-hero .rw-hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

.rw-about-hero .rw-hero-img{
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.rw-about-hero .rw-hero-title{
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.rw-about-hero .rw-hero-subtitle{
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Werte-Cards */

.rw-about-values-section .rw-card,
.rw-wood-band .rw-card{
  border-radius: 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-about-values-section .rw-card-body{
  padding: 1.5rem 1.3rem 1.4rem;
}

.rw-about-values-section .rw-icon-pill{
  width: 46px;
  height: 46px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  box-shadow: none;
}

.rw-about-values-section h3{
  color: rgba(78,52,36,.98);
  font-size: 1.35rem;
  font-weight: 900;
}

/* ===========================
   Karriereseite – Angleichung an Produktseite
   =========================== */

.rw-career-hero{
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5.2rem 0 4.2rem;
}

.rw-career-hero .rw-hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

.rw-career-hero .rw-hero-img{
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.rw-career-hero .rw-hero-title{
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.rw-career-hero .rw-hero-subtitle{
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(27,27,34,.78);
}

.rw-career-hero .rw-hero-welcome{
  max-width: 600px;
  color: rgba(27,27,34,.74);
}

/* Hero-Badge rechts */

.rw-career-hero .rw-career-badge{
  width: min(420px, 100%);
  margin-left: auto;
  padding: 1.65rem 1.45rem;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.rw-career-badge-icon{
  width: 46px;
  height: 46px;
  margin-bottom: .95rem;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  box-shadow: none;
}

.rw-career-badge h2{
  margin-bottom: .65rem;
  color: rgba(27,27,34,.96);
  font-size: 1.45rem;
  line-height: 1.15;
  font-weight: 900;
}

.rw-career-badge p{
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.rw-career-badge-note{
  background: rgba(225,213,183,.34);
  border: 1px solid rgba(60,40,30,.08);
  color: rgba(78,52,36,.96);
}

/* Einheitliche Karriere-Cards */

.rw-why-card,
.rw-benefit,
.rw-job-card,
.rw-quickapply-form,
#stellen .rw-card,
.career-page .rw-card{
  border-radius: 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rw-why-card:hover,
.rw-benefit:hover,
.rw-job-card:hover,
.career-page .rw-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}

.rw-why-icon,
.rw-benefit-icon,
.career-page .rw-icon-pill{
  width: 46px;
  height: 46px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  box-shadow: none;
}

.rw-why-card h3,
.rw-benefit h3,
.career-page .rw-card h3{
  color: rgba(78,52,36,.98);
  font-weight: 900;
  line-height: 1.15;
}

.rw-why-card p,
.rw-benefit p,
.career-page .rw-card p{
  color: rgba(27,27,34,.74);
  line-height: 1.68;
}

/* Arbeitsalltag-Block */

.rw-career-image img{
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-career-kicker,
.rw-quickapply-badge{
  background: rgba(200,116,59,.12);
  border: 1px solid rgba(60,40,30,.08);
  color: rgba(120,70,40,.96);
}

.rw-career-text h2{
  color: rgba(27,27,34,.96);
  font-size: clamp(1.65rem, 2.8vw, 2.35rem);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -.025em;
}

.rw-career-text p{
  color: rgba(27,27,34,.74);
  line-height: 1.75;
}

.rw-career-point i,
.rw-quickapply-point i{
  color: rgba(120,70,40,.96);
}

/* Offene Stellen */

.rw-job-list{
  max-width: 1060px;
}

.rw-job-card{
  padding: 1.45rem 1.35rem;
}

.rw-job-badge{
  background: rgba(200,116,59,.14);
  border: 1px solid rgba(60,40,30,.08);
  color: rgba(120,70,40,.96);
}

.rw-job-top h3{
  color: rgba(78,52,36,.98);
  font-weight: 900;
}

.rw-job-text{
  color: rgba(27,27,34,.74);
  line-height: 1.7;
}

.rw-job-meta{
  color: rgba(27,27,34,.66);
}

.rw-job-meta i{
  color: rgba(120,70,40,.96);
}

/* Quick Apply */

.rw-quickapply{
  max-width: 1060px;
}

.rw-quickapply-intro h3{
  color: rgba(27,27,34,.96);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.15;
  font-weight: 900;
}

.rw-quickapply-intro p{
  color: rgba(27,27,34,.74);
  line-height: 1.75;
}

.rw-quickapply-form{
  overflow: hidden;
}

.rw-quickapply-form .rw-card-body{
  padding: 1.55rem 1.35rem;
}

/* Responsive */

@media (max-width: 991.98px){
  .rw-career-hero{
    min-height: auto;
  }

  .rw-career-hero .rw-career-badge{
    margin-left: 0;
  }
}

@media (max-width: 575.98px){
  .rw-career-hero .rw-hero-title{
    font-size: 2.45rem;
  }

  .rw-career-badge{
    padding: 1.3rem 1.1rem;
  }

  .rw-job-card{
    padding: 1.2rem 1rem;
  }
}

/* ===========================
   Karriere – Wen wir suchen + Benefits kombiniert
   =========================== */

.rw-career-fit-section{
  padding: 4.5rem 0 5rem;
}

.rw-career-fit-grid{
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.15rem;
}

.rw-career-fit-card{
  height: 100%;
  padding: 1.45rem 1.25rem;
  border-radius: 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  transition: transform .2s ease, box-shadow .2s ease;
}

.rw-career-fit-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 22px 48px rgba(0,0,0,.14);
}

.rw-career-fit-icon{
  width: 46px;
  height: 46px;
  margin-bottom: .9rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
}

.rw-career-fit-kicker{
  margin-bottom: .45rem;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-career-fit-card h3{
  margin-bottom: .65rem;
  color: rgba(78,52,36,.98);
  font-size: 1.25rem;
  line-height: 1.15;
  font-weight: 900;
}

.rw-career-fit-card p{
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.rw-career-fit-card ul{
  margin: .9rem 0 0;
  padding-left: 1.1rem;
  color: rgba(27,27,34,.74);
}

.rw-career-fit-card li{
  margin-bottom: .35rem;
}

.rw-career-fit-card--benefits{
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.98),
      rgba(225,213,183,.30)
    );
}

.rw-career-benefit-list{
  display: grid;
  gap: .55rem;
  margin-top: 1rem;
}

.rw-career-benefit-list span{
  display: flex;
  align-items: center;
  gap: .55rem;
  color: rgba(27,27,34,.78);
  font-weight: 650;
}

.rw-career-benefit-list i{
  color: rgba(120,70,40,.96);
}

@media (max-width: 1199.98px){
  .rw-career-fit-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 575.98px){
  .rw-career-fit-grid{
    grid-template-columns: 1fr;
  }

  .rw-career-fit-card{
    padding: 1.25rem 1.05rem;
  }
}

/* ===========================
   Konfigurator – Hero Angleichung
   =========================== */

.rw-config-hero{
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5.2rem 0 4.2rem;
}

.rw-config-hero .rw-hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

.rw-config-hero .rw-hero-img{
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.rw-config-hero .rw-hero-title{
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.rw-config-hero .rw-hero-subtitle{
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(27,27,34,.78);
}

.rw-config-hero .rw-career-badge{
  width: min(420px, 100%);
  margin-left: auto;
  padding: 1.65rem 1.45rem;
  border-radius: 24px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
  backdrop-filter: blur(10px);
}

.rw-config-hero .rw-career-badge-icon{
  width: 46px;
  height: 46px;
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
  box-shadow: none;
}

/* ===========================
   Dienstleistungsseite – final mit Bildankern
   =========================== */

#dienstleistungen,
#verpackung,
#transport,
#lagerung,
#containerstau,
#zusatzleistungen{
  scroll-margin-top: 120px;
}

/* Hero */

.rw-services-hero{
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: 5.2rem 0 4.2rem;
}

.rw-services-hero .rw-hero-overlay{
  background:
    linear-gradient(
      to bottom,
      rgba(251,250,248,.64) 0%,
      rgba(251,250,248,.54) 44%,
      rgba(225,213,183,.96) 100%
    ),
    linear-gradient(
      90deg,
      rgba(251,250,248,.76) 0%,
      rgba(251,250,248,.62) 42%,
      rgba(251,250,248,.28) 72%,
      rgba(251,250,248,.14) 100%
    ),
    radial-gradient(circle at 20% 30%, rgba(200,116,59,.22), transparent 52%);
}

.rw-services-hero .rw-hero-img{
  filter: saturate(1.06) contrast(1.04) brightness(.96);
}

.rw-services-hero .rw-hero-title{
  max-width: 760px;
  font-size: clamp(2.2rem, 4.6vw, 4rem);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -.035em;
}

.rw-services-hero .rw-hero-subtitle{
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(27,27,34,.78);
}

.rw-services-hero .rw-hero-welcome{
  max-width: 600px;
  color: rgba(27,27,34,.74);
}

/* Allgemeine Service-Angleichung */

.services-page .rw-service-stage,
.services-page .rw-extra-stage{
  max-width: 1040px;
  margin: 0 auto;
}

.services-page .rw-service-image-card,
.services-page .rw-process-card,
.services-page .rw-transport-card,
.services-page .rw-extra-card,
.services-page .rw-service-point{
  border-radius: 22px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 14px 30px rgba(0,0,0,.08);
}

.services-page .rw-service-point{
  box-shadow: 0 8px 18px rgba(0,0,0,.04);
}

.services-page .rw-process-icon,
.services-page .rw-transport-icon{
  background: rgba(200,116,59,.14);
  color: rgba(120,70,40,.96);
}

.services-page .rw-process-card h3,
.services-page .rw-transport-card h3,
.services-page .rw-extra-card h3,
.services-page .rw-service-point strong{
  color: rgba(78,52,36,.98);
  font-weight: 850;
}

.services-page .rw-process-text,
.services-page .rw-transport-card p,
.services-page .rw-extra-card p,
.services-page .rw-service-point span{
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.services-page .rw-service-note{
  color: rgba(78,52,36,.95);
  font-weight: 700;
}

.services-page .rw-service-lead{
  color: rgba(27,27,34,.86);
}

/* Verpackung – Bild-Intro */

.rw-services-image-intro{
  max-width: 1040px;
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: 420px minmax(0, 1fr);
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-services-image-intro img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
}

.rw-services-image-intro-content{
  padding: 1.7rem 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rw-services-image-intro-content h3{
  margin-bottom: .65rem;
  color: rgba(78,52,36,.98);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  font-weight: 900;
}

.rw-services-image-intro-content p{
  color: rgba(27,27,34,.74);
  line-height: 1.7;
}

/* Containerstau mit Bild */

.rw-containerstau-layout{
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 430px minmax(0, 1fr);
  gap: 1.15rem;
  align-items: stretch;
}

.rw-containerstau-image{
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.80);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-containerstau-image img{
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}

.rw-containerstau-cards{
  display: grid;
  gap: 1rem;
}

/* Zusatzleistungen Intro */

.rw-services-addon-intro{
  max-width: 1040px;
  margin: 0 auto 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,.96),
      rgba(251,250,248,.94)
    );
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 16px 34px rgba(0,0,0,.10);
}

.rw-services-addon-intro > div{
  padding: 1.65rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rw-services-addon-intro h3{
  margin-bottom: .65rem;
  color: rgba(78,52,36,.98);
  font-size: clamp(1.35rem, 2.4vw, 1.9rem);
  line-height: 1.15;
  font-weight: 900;
}

.rw-services-addon-intro p{
  color: rgba(27,27,34,.74);
  line-height: 1.7;
}

.rw-services-addon-intro img{
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  display: block;
}

/* Responsive */

@media (max-width: 991.98px){
  .rw-services-hero{
    min-height: auto;
  }

  .rw-services-image-intro,
  .rw-containerstau-layout,
  .rw-services-addon-intro{
    grid-template-columns: 1fr;
  }

  .rw-containerstau-image img,
  .rw-services-image-intro img,
  .rw-services-addon-intro img{
    min-height: 240px;
  }
}

@media (max-width: 575.98px){
  .rw-services-hero .rw-hero-title{
    font-size: 2.45rem;
  }

  .rw-services-image-intro-content,
  .rw-services-addon-intro > div{
    padding: 1.25rem 1.05rem;
  }

  .rw-containerstau-image img,
  .rw-services-image-intro img,
  .rw-services-addon-intro img{
    min-height: 210px;
  }
}

/* ===========================
   Dienstleistungen – Feinschliff
   =========================== */

/* Gleichmäßige Breiten */
.services-page .rw-service-stage,
.services-page .rw-process-compare,
.rw-services-image-intro,
.rw-containerstau-layout,
.rw-services-addon-intro{
  max-width: 1080px;
}

/* Sections etwas kompakter und ruhiger */
.services-page .rw-section{
  padding-top: 4.2rem;
  padding-bottom: 4.4rem;
}

.services-page .rw-section-header{
  margin-bottom: 2.2rem;
}

/* Textflächen besser lesbar */
.services-page .rw-service-content{
  padding: .3rem 0;
}

.services-page .rw-service-lead{
  font-size: 1.08rem;
  line-height: 1.72;
  margin-bottom: 1rem;
}

/* Bilder angleichen */
.services-page .rw-service-image,
.rw-services-image-intro img,
.rw-containerstau-image img,
.rw-services-addon-intro img{
  filter: saturate(1.03) contrast(1.03);
}

/* Oberes Intro-Bild nicht zu hart wirken lassen */
.services-page #dienstleistungen .rw-service-image{
  height: 330px;
  border-radius: 22px;
}

/* Verpackungs-Intro harmonischer */
.rw-services-image-intro{
  margin-bottom: 1.25rem;
}

.rw-services-image-intro img{
  min-height: 230px;
}

.rw-services-image-intro-content{
  padding: 1.45rem 1.45rem;
}

/* Prozesskarten gleichmäßiger */
.services-page .rw-process-card{
  height: 100%;
}

.services-page .rw-process-list{
  gap: .55rem;
}

.services-page .rw-process-item{
  padding: .72rem .9rem;
  border-radius: 12px;
  background: rgba(225,213,183,.18);
}

/* Transportkarten etwas stabiler */
.services-page .rw-transport-card{
  min-height: 190px;
  padding: 1.25rem 1.1rem;
}

.services-page .rw-transport-card h3{
  font-size: 1.05rem;
}

/* Lagerung: Bild und Inhalt besser austarieren */
#lagerung .rw-service-image{
  height: 310px;
}

#lagerung .rw-service-stage{
  max-width: 1040px;
}

/* Containerstau: Bild weniger massiv */
.rw-containerstau-layout{
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 1.1rem;
}

.rw-containerstau-image img{
  min-height: 520px;
}

.rw-containerstau-cards .rw-process-card{
  padding: 1.25rem 1.15rem;
}

.rw-containerstau-cards .rw-process-text{
  margin-bottom: .8rem;
}

/* Zusatzleistungen: Intro kompakter */
.rw-services-addon-intro{
  grid-template-columns: minmax(0, 1fr) 330px;
  margin-bottom: 1.2rem;
}

.rw-services-addon-intro > div{
  padding: 1.45rem 1.35rem;
}

.rw-services-addon-intro img{
  min-height: 210px;
}

#zusatzleistungen .rw-extra-card{
  min-height: 118px;
  padding: 1.1rem 1rem;
}

#zusatzleistungen .rw-extra-card h3{
  font-size: 1.02rem;
  margin-bottom: .38rem;
}

#zusatzleistungen .rw-extra-card p{
  font-size: .9rem;
  line-height: 1.55;
}

/* Hover subtiler, konservativer */
.services-page .rw-process-card:hover,
.services-page .rw-transport-card:hover,
.services-page .rw-extra-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(0,0,0,.10);
}

/* Mobile Feinschliff */
@media (max-width: 991.98px){
  .rw-containerstau-layout{
    grid-template-columns: 1fr;
  }

  .rw-containerstau-image img{
    min-height: 280px;
  }

  .services-page #dienstleistungen .rw-service-image,
  #lagerung .rw-service-image{
    height: 260px;
  }
}

@media (max-width: 575.98px){
  .services-page .rw-section{
    padding-top: 3.4rem;
    padding-bottom: 3.6rem;
  }

  .services-page .rw-section-header{
    margin-bottom: 1.8rem;
  }

  .services-page #dienstleistungen .rw-service-image,
  #lagerung .rw-service-image,
  .rw-services-image-intro img,
  .rw-containerstau-image img,
  .rw-services-addon-intro img{
    min-height: 210px;
    height: 210px;
  }
}

.rw-config-destination{
  margin: 1.1rem 0 1.3rem;
  padding: 1rem;
  border-radius: 18px;
  background: rgba(255,255,255,.62);
  border: 1px solid rgba(60,40,30,.08);
}

.rw-config-destination .rw-config-input{
  margin: 0;
}

.rw-config-destination input{
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(27,27,34,.30);
  background: transparent;
  padding: .55rem 0;
  outline: none;
  color: rgba(27,27,34,.90);
}

.rw-config-destination input:focus{
  border-color: var(--accent);
}

/* ===========================
   Wir über uns – Neue Inhaber
   =========================== */

.rw-change-new{
  max-width: 1040px;
  margin: 0 auto;
}

.rw-change-portrait{
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.95);
  border: 1px solid rgba(60,40,30,.10);
  box-shadow: 0 18px 38px rgba(0,0,0,.09);
}

.rw-change-portrait img{
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center center;
}

.rw-change-portrait figcaption{
  padding: 1rem 1.15rem 1.15rem;
  background: rgba(255,255,255,.96);
  border-top: 1px solid rgba(60,40,30,.08);
}

.rw-change-portrait figcaption span{
  display: block;
  margin-bottom: .35rem;
  font-size: .74rem;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(120,70,40,.92);
}

.rw-change-portrait figcaption strong{
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: rgba(27,27,34,.92);
}

.rw-change-text-card{
  height: auto;
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(60,40,30,.09);
  box-shadow: 0 18px 38px rgba(0,0,0,.07);
}

.rw-change-highlight{
  margin-bottom: 1.25rem;
  padding: 1.25rem 1.25rem;
  border-radius: 18px;
  background: rgba(225,213,183,.28);
  border: 1px solid rgba(60,40,30,.08);
}

.rw-change-highlight h3{
  margin-bottom: .55rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.rw-change-highlight p{
  margin-bottom: 0;
  color: rgba(27,27,34,.74);
  line-height: 1.65;
}

.rw-change-copy p{
  margin-bottom: 1rem;
  color: rgba(27,27,34,.80);
  line-height: 1.8;
  font-size: 1.01rem;
}

.rw-change-copy p:last-child{
  margin-bottom: 0;
}

.rw-change-closing{
  margin-top: 1.15rem;
  font-weight: 750;
  color: rgba(78,52,36,.96) !important;
}

@media (max-width: 991.98px){
  .rw-change-portrait{
    max-width: 520px;
    margin: 0 auto;
  }

  .rw-change-portrait img{
    height: 420px;
  }

  .rw-change-text-card{
    padding: 1.25rem;
  }
}

@media (max-width: 575.98px){
  .rw-change-portrait img{
    height: 360px;
  }

  .rw-change-portrait,
  .rw-change-text-card{
    border-radius: 20px;
  }

  .rw-change-highlight{
    padding: 1rem;
  }
}

/* ===========================
   Impressum
   =========================== */

.rw-imprint-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.rw-imprint-block{
  padding: 1.25rem;
  border-radius: 18px;
  background: rgba(225,213,183,.22);
  border: 1px solid rgba(60,40,30,.08);
}

.rw-imprint-block h3{
  margin-bottom: .75rem;
  font-size: 1.15rem;
  color: rgba(78,52,36,.98);
}

.rw-imprint-block p{
  margin-bottom: .75rem;
  color: rgba(27,27,34,.78);
  line-height: 1.7;
}

.rw-imprint-block p:last-child{
  margin-bottom: 0;
}

.rw-imprint-block a{
  color: rgba(78,52,36,.96);
  font-weight: 700;
  text-decoration: none;
}

.rw-imprint-block a:hover{
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .rw-imprint-grid{
    grid-template-columns: 1fr;
  }

  .rw-imprint-block{
    padding: 1.05rem;
  }
}

/* ===========================
   Datenschutz
   =========================== */

.rw-privacy-content{
  padding: 2rem 1.8rem;
  max-width: 100%;
  overflow-wrap: anywhere;
  word-break: normal;
}

.rw-privacy-content section{
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(60,40,30,.08);
}

.rw-privacy-content section:first-child{
  padding-top: 0;
}

.rw-privacy-content section:last-child{
  padding-bottom: 0;
  border-bottom: 0;
}

.rw-privacy-content h2{
  margin-bottom: .75rem;
  color: rgba(78,52,36,.98);
  font-size: 1.35rem;
  line-height: 1.25;
  font-weight: 850;
}

.rw-privacy-content p{
  margin-bottom: .85rem;
  color: rgba(27,27,34,.78);
  line-height: 1.75;
}

.rw-privacy-content p:last-child{
  margin-bottom: 0;
}

.rw-privacy-content ul{
  margin: .6rem 0 1rem;
  padding-left: 1.2rem;
  color: rgba(27,27,34,.78);
}

.rw-privacy-content li{
  margin-bottom: .35rem;
  line-height: 1.65;
}

.rw-privacy-content a{
  color: rgba(78,52,36,.96);
  font-weight: 700;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.rw-privacy-content a:hover{
  text-decoration: underline;
}

@media (max-width: 767.98px){
  .rw-privacy-content{
    padding: 1.25rem 1rem;
  }

  .rw-privacy-content h2{
    font-size: 1.12rem;
    line-height: 1.3;
  }

  .rw-privacy-content p,
  .rw-privacy-content li{
    font-size: .95rem;
    line-height: 1.68;
  }

  .rw-privacy-content ul{
    padding-left: 1rem;
  }
}

@media (max-width: 575.98px){
  .rw-privacy-content{
    padding: 1.05rem .9rem;
  }

  .rw-privacy-content section{
    padding: 1rem 0;
  }
}

@media (max-width: 575.98px){
  .rw-privacy-content,
  .rw-privacy-content *{
    max-width: 100%;
  }

  .rw-privacy-content{
    display: block;
  }
}
/* Datenschutz nie per Reveal verstecken */
.rw-privacy-card,
.rw-privacy-content{
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}