/* ============================================
   CLEAN FIX GEBÄUDESERVICE — Design Tokens
   Helles Theme, Gold/Gelb als Hauptakzent.
   ============================================ */
:root{
  --ink: #2E323A;
  --ink-soft: #4A4F58;
  --surface: #FAF7F0;
  --paper: #FFFFFF;
  --text-light: #F5F6F4;
  --text-dark: #2E323A;
  --muted: #6B7280;
  --teal: #E0A93A;
  --teal-dim: #B8860F;
  --teal-wash: #FBF1DA;
  --gold: #F2C14E;

  --font-display: 'Manrope', sans-serif;
  --font-brand: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --ease: cubic-bezier(.22,1,.36,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *{ animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; }

.eyebrow{
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal-dim);
  margin: 0 0 0.5rem;
}
.eyebrow--center{ text-align: center; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn--primary{
  background: var(--teal);
  color: var(--ink);
  box-shadow: 0 10px 24px -8px rgba(224,169,58,0.4);
}
.btn--primary:hover{ background: var(--teal-dim); color: #ffffff; transform: translateY(-2px); }
.btn--ghost{
  background: var(--paper);
  color: var(--text-dark);
  border: 1px solid rgba(30,34,42,0.14);
}
.btn--ghost:hover{ border-color: var(--teal); color: var(--teal-dim); transform: translateY(-2px); }

/* ============ NAV ============ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(250,247,240,0.86);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30,34,42,0.07);
}
.nav__brand{
  font-family: var(--font-brand);
  font-weight: 500;
  font-style: normal;
  font-size: 1.34rem;
  color: var(--ink-soft);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.nav__brand .accent{ color: var(--gold); }
.nav__links{ display: flex; align-items: center; gap: 0.25rem; flex-wrap: wrap; }
.nav__winlink{
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  color: var(--text-dark);
  font-size: 0.84rem;
  opacity: 0.82;
  transition: opacity .2s var(--ease), background .2s var(--ease), color .2s var(--ease);
}
.nav__winlink:hover{ opacity: 1; background: var(--teal-wash); color: var(--teal-dim); }
.nav__winlink-label{ font-weight: 600; }
.nav__winlink--sub{ font-size: 0.78rem; opacity: 0.6; }
.nav__item{ position: relative; }
.nav__item--has-drop > .nav__winlink{ display: flex; align-items: center; }
.nav__caret{ width: 9px; height: 9px; margin-left: 0.15rem; transition: transform .2s var(--ease); }
.nav__item--has-drop:hover .nav__caret,
.nav__item--has-drop.is-open .nav__caret{ transform: rotate(180deg); }
.nav__dropdown{
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 260px;
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.08);
  border-radius: 14px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.28);
  padding: 0.5rem;
  display: grid;
  gap: 0.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
}
.nav__item--has-drop:hover .nav__dropdown,
.nav__item--has-drop.is-open .nav__dropdown{
  opacity: 1; visibility: visible; transform: translateY(0);
}
.nav__dropdown a{
  display: block;
  padding: 0.55rem 0.7rem;
  border-radius: 8px;
  font-size: 0.85rem;
  color: var(--text-dark);
}
.nav__dropdown a:hover{ background: var(--teal-wash); color: var(--teal-dim); }
.nav__dropdown-all{
  margin-top: 0.3rem;
  padding-top: 0.55rem !important;
  border-top: 1px solid rgba(30,34,42,0.08);
  font-weight: 600;
  color: var(--teal-dim) !important;
}
.nav__item--legal .nav__dropdown{ left: auto; right: 0; min-width: 180px; }
.nav__burger-btn{
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: var(--text-dark);
}
.nav__burger-icon{ width: 18px; height: 13px; display: block; }


/* ============ HERO (Startseite, zweispaltig) ============ */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7.5rem clamp(1.2rem, 5vw, 4rem) 3rem;
  background:
    radial-gradient(ellipse 55% 50% at 88% 4%, rgba(242,193,78,0.12), transparent 65%),
    radial-gradient(ellipse 45% 40% at 6% 96%, rgba(242,169,59,0.10), transparent 60%),
    var(--surface);
  overflow: hidden;
}
.hero--skyline{
  background:
    radial-gradient(ellipse 55% 50% at 88% 4%, rgba(242,193,78,0.10), transparent 65%),
    radial-gradient(ellipse 70% 62% at 50% 38%, rgba(250,247,240,0.90) 0%, rgba(250,247,240,0.66) 45%, rgba(250,247,240,0.28) 75%, transparent 100%),
    linear-gradient(180deg, rgba(250,247,240,0.30) 0%, transparent 28%, transparent 68%, var(--surface) 100%),
    url("bilder/frankfurt-skyline.jpg");
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: center, center, center, center 68%;
  background-size: cover, cover, cover, cover;
}
.hero__grid{
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}
.hero__grid--center{
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}
.hero__grid--center .hero__intro{ max-width: 720px; }
.hero__grid--center .hero__sub{ margin-left: auto; margin-right: auto; }
.hero__grid--center .hero__ctas{ justify-content: center; }
.hero__intro{ max-width: 560px; }
.hero__headline{
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text-dark);
}
.hero__headline .accent{ color: var(--teal); }
.eyebrow--match{ color: var(--text-dark); text-shadow: 0 1px 12px rgba(250,247,240,0.85); }
.hero__headline--match{ color: var(--text-dark); text-shadow: 0 2px 18px rgba(250,247,240,0.9); }
.hero__sub{
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 0 1.8rem;
  line-height: 1.6;
}
.hero__sub--match{
  font-family: var(--font-display);
  color: var(--text-dark);
  text-shadow: 0 1px 12px rgba(250,247,240,0.85);
}
.hero__ctas{ display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero__media{ position: relative; }
.hero__media svg{ width: 100%; height: auto; display: block; }
.hero__img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
  object-fit: cover;
}

/* ============ SEITEN-HERO (kompakt, Unterseiten) ============ */
.page-hero{
  position: relative;
  min-height: auto;
  padding: 8.5rem clamp(1.2rem, 5vw, 4rem) 3rem;
  background:
    radial-gradient(ellipse 50% 60% at 92% 0%, rgba(242,193,78,0.10), transparent 65%),
    var(--surface);
}
.page-hero__grid{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(1.6rem, 4vw, 3rem);
}
.page-hero--center .page-hero__grid{ grid-template-columns: 1fr; text-align: center; justify-items: center; }
.page-hero__intro{ max-width: 620px; }
.page-hero__headline{
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  line-height: 1.06;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.7rem;
  color: var(--text-dark);
}
.page-hero__headline .accent{ color: var(--teal); }
.page-hero__sub{
  font-size: 0.98rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.6;
  margin: 0;
}
.page-hero--center .page-hero__sub{ margin: 0 auto; }
.page-hero__media svg{ width: 100%; height: auto; display: block; }
.page-hero__img{
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  box-shadow: 0 18px 40px -18px rgba(30,34,42,0.35);
}

/* ============ Leistungs-Kacheln (Startseite Übersicht) ============ */
.tiles-section{
  padding: 4.5rem clamp(1.2rem, 5vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
}
.tiles-section__head{ max-width: 620px; margin: 0 0 2.2rem; }
.tiles-section__title{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.5rem;
}
.tiles-section__sub{ color: var(--muted); margin: 0; }
.tiles{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.tile{
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.4rem 1.3rem;
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 16px;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}
.tile:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -22px rgba(0,0,0,0.28);
  border-color: var(--teal);
}
.tile__icon{
  width: 2.4rem; height: 2.4rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--teal-wash);
  color: var(--teal-dim);
}
.tile__icon svg{ width: 1.3rem; height: 1.3rem; }
.tile__title{ font-family: var(--font-display); font-weight: 700; font-size: 0.98rem; }
.tile__link{ font-size: 0.82rem; color: var(--teal-dim); font-weight: 600; margin-top: auto; }

/* Leistungen — einzelne aufklappbare "Fenster" pro Dienstleistung */
.services{
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 5rem;
  text-align: center;
}
.services__title{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 0.6rem;
  color: var(--text-dark);
}
.services__hint{
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 460px;
  margin: 0 auto 2rem;
}
.services__hint a{ color: var(--teal-dim); text-decoration: underline; }
.services__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.1rem;
  text-align: left;
}
.services__grid--single{
  grid-template-columns: 1fr;
  max-width: 640px;
  margin: 0 auto;
}
.services__closing-note{
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 620px;
  margin: 2.4rem auto 0;
  line-height: 1.6;
  text-align: center;
}
.service-window{
  border-radius: 12px;
  border: 1px solid rgba(30,34,42,0.08);
  background: var(--paper);
  box-shadow: 0 10px 24px -14px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), transform .25s var(--ease);
  align-self: start;
}
.service-window:hover{
  border-color: var(--teal-dim);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -16px rgba(0,0,0,0.24);
}
.service-window.is-open{ border-color: var(--teal); }
.service-window__bar{
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 0.85rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(30,34,42,0.06);
  text-align: left;
  cursor: pointer;
}
.service-window__title{
  flex: 1;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}
.service-window__more{
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--teal-dim);
  white-space: nowrap;
}
.service-window__body{
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.service-window.is-open .service-window__body{ max-height: 900px; }
.service-window__list{
  list-style: none;
  margin: 0;
  padding: 0.65rem 0.8rem 0.15rem;
}
.service-window__li{
  position: relative;
  padding-left: 1.15rem;
  margin-bottom: 0.4rem;
  font-size: 0.83rem;
  color: var(--text-dark);
  line-height: 1.32;
  opacity: 0;
}
.service-window.is-open .service-window__li{
  animation: bulletPopIn .38s var(--ease) forwards;
  animation-delay: calc(var(--i) * 260ms);
}
.service-window__li::before{
  content: "−";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}
.service-window__li--special{ color: var(--teal-dim); }
.service-window__badge{
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0.05rem 0.4rem;
  border-radius: 999px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  vertical-align: middle;
}
@keyframes bulletPopIn{
  from{ opacity: 0; transform: translateX(-16px); }
  to{ opacity: 1; transform: translateX(0); }
}
.service-window__note{
  margin: 0 0.8rem 0.8rem;
  font-style: italic;
  font-size: 0.78rem;
  color: var(--muted);
}
.service-window__cta{
  display: block;
  margin: 0 0.8rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--teal-dim);
}

/* ============ EINZELNE DIENSTLEISTUNGS-SEITE ============ */
.service-detail{
  max-width: 780px;
  margin: 0 auto;
  padding: 4rem clamp(1.2rem, 5vw, 4rem) 5rem;
}
.service-detail__list{ list-style: none; margin: 0 0 1.6rem; padding: 0; }
.service-detail__list li{
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.65rem;
  line-height: 1.5;
  color: var(--text-dark);
}
.service-detail__list li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.5em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--teal);
}
.service-detail__note{
  background: var(--teal-wash);
  border-radius: 12px;
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
}
.service-detail__ctas{ display: flex; gap: 0.8rem; flex-wrap: wrap; }

/* ============ REFERENZEN ============ */
.gallery{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.3rem;
  align-items: start;
}
.gallery__card{
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 16px;
  overflow: hidden;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.gallery__card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(0,0,0,0.28); }
.gallery__card[open]{ transform: none; }
.gallery__summary{
  cursor: pointer;
  list-style: none;
}
.gallery__summary::-webkit-details-marker{ display: none; }
.gallery__media{ aspect-ratio: 4/3; background: var(--teal-wash); overflow: hidden; }
.gallery__media img{ width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery__body{ padding: 1.1rem 1.2rem 1.3rem; }
.gallery__tag{ font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--teal-dim); }
.gallery__title{ font-family: var(--font-display); font-weight: 700; font-size: 1rem; margin: 0.3rem 0 0.3rem; }
.gallery__desc{ font-size: 0.85rem; color: var(--muted); margin: 0; }
.gallery__note{
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  padding: 0 clamp(1.2rem, 5vw, 4rem);
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
}

/* ---- Referenzen: aufklappbare Foto-Übersicht (kein JavaScript nötig) ---- */
.gallery__full-grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 4px;
  padding: 0 0 0.9rem;
}
.ref-photo{ aspect-ratio: 4/3; overflow: hidden; }
.ref-photo img{ width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ AUFTRAG / FORMULAR ============ */
.order{
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 5rem;
}
.order__form{
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 20px;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  display: grid;
  gap: 1.1rem;
  box-shadow: 0 24px 48px -30px rgba(0,0,0,0.3);
}
.order__row{ display: grid; gap: 0.4rem; }
.order__row--split{ grid-template-columns: 1fr 1fr; display: grid; gap: 1.1rem; }
.order__label{ font-size: 0.82rem; font-weight: 600; color: var(--text-dark); }
.order__input, .order__select, .order__textarea{
  font: inherit;
  padding: 0.75rem 0.9rem;
  border-radius: 10px;
  border: 1px solid rgba(30,34,42,0.14);
  background: var(--surface);
  color: var(--text-dark);
}
.order__input:focus, .order__select:focus, .order__textarea:focus{
  outline: none;
  border-color: var(--teal);
  background: var(--paper);
}
.order__textarea{ resize: vertical; min-height: 120px; }
.order__hint{ font-size: 0.78rem; color: var(--muted); margin: 0; }
.order__submit{ justify-self: start; border: none; cursor: pointer; }

/* ============ KONTAKT ============ */
.contact{
  max-width: 1000px;
  margin: 0 auto;
  padding: 5rem clamp(1.2rem, 5vw, 4rem);
  text-align: center;
  background: var(--surface);
  color: var(--text-dark);
}
.contact--page{
  max-width: none;
  min-height: 100vh;
  padding-top: 8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact--page .contact__grid{ max-width: 1000px; margin: 0 auto; }
.contact .eyebrow{ color: var(--teal-dim); }
.contact__title{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 0.6rem;
}
.contact__sub{ color: var(--muted); margin-bottom: 2.6rem; }
.contact__grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.contact__card--static{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: inherit;
}
.contact__card{
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  padding: 2rem 1.1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.contact__card:hover{
  transform: translateY(-6px);
  box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18);
  border-color: var(--teal);
}
.contact__icon{ display: inline-flex; align-items: center; justify-content: center; width: 1.6rem; height: 1.6rem; color: var(--teal-dim); }
.contact__icon svg{ width: 100%; height: 100%; }
.contact__label{ font-family: var(--font-display); font-weight: 600; }
.contact__value{ color: var(--muted); font-size: 0.88rem; }

/* ============ FOOTER ============ */
.footer{
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 2rem clamp(1.2rem, 4vw, 3rem);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid rgba(30,34,42,0.07);
}
.footer__row{ display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.8rem; }
.footer__links{ display: flex; gap: 1rem; flex-wrap: wrap; }
.footer a:hover{ color: var(--teal-dim); }

/* ============ LEGAL (Impressum / Datenschutz / AGB) ============ */
.legal{
  min-height: 100vh;
  background: var(--surface);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 1.5rem 3rem;
}
.legal__box{ max-width: 680px; width: 100%; background: var(--paper); border-radius: 20px; padding: clamp(1.6rem, 4vw, 2.8rem); border: 1px solid rgba(30,34,42,0.07); }
.legal__title{
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 2.3rem);
  margin: 0 0 1.4rem;
  text-align: center;
}
.legal__box h2{
  font-family: var(--font-display);
  font-size: 1.02rem;
  margin: 1.7rem 0 0.5rem;
  color: var(--teal-dim);
}
.legal__box p{ color: var(--muted); font-size: 0.92rem; line-height: 1.65; margin: 0 0 0.4rem; }
.legal__box a{ color: var(--teal-dim); text-decoration: underline; }
.legal__note{
  margin-top: 2.2rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(30,34,42,0.1);
  font-size: 0.8rem;
  color: var(--muted);
  font-style: italic;
}

/* ============ Startseite: Über uns ============ */
.stage{ max-width: 1100px; margin: 0 auto; padding: 0 clamp(1.2rem, 5vw, 4rem); }
.stage__intro{ max-width: 640px; margin: 0 auto; text-align: center; }
.stage--compact{ padding-top: 1rem; padding-bottom: 1rem; }

/* ============ RESPONSIVE ============ */
@media (max-width: 980px){
  .hero__grid, .page-hero__grid{ grid-template-columns: 1fr; text-align: center; }
  .hero__intro, .page-hero__intro{ max-width: 620px; margin: 0 auto; }
  .hero__sub, .page-hero__sub{ margin-left: auto; margin-right: auto; }
  .hero__ctas{ justify-content: center; }
  .hero__media, .page-hero__media{ order: -1; max-width: 380px; margin: 0 auto; }
}
@media (max-width: 980px){
  .nav{ flex-wrap: wrap; row-gap: 0.5rem; }
  .nav__links{ gap: 0.05rem; }
  .nav__winlink{ padding: 0.45rem 0.5rem; font-size: 0.78rem; }
  .tiles{ grid-template-columns: repeat(2, 1fr); }
  .contact__grid{ grid-template-columns: 1fr; }
  .order__row--split{ grid-template-columns: 1fr; }
}
@media (max-width: 640px){
  .nav__brand{ font-size: 1.1rem; }
  .nav__winlink{ padding: 0.4rem 0.4rem; font-size: 0.72rem; }
  .nav__caret{ margin-left: 0.05rem; }
}
/* ============ RUNDUMPAKET (wie storm-dienstleistungen.de) ============ */
.rundum{
  max-width: 780px;
  margin: 0 auto;
  padding: 1rem clamp(1.2rem, 5vw, 4rem) 4.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.rundum__title{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  margin: 0 0 1rem;
}
.rundum__list{ list-style: none; margin: 0; padding: 0; display: grid; gap: 0.9rem; }
.rundum__list li{
  position: relative;
  padding-left: 1.6rem;
  color: var(--muted);
  line-height: 1.6;
}
.rundum__list li::before{
  content: "";
  position: absolute;
  left: 0; top: 0.45em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

/* ============ FEATURE-KARTEN (Qualität / Nachhaltigkeit / Beratung) ============ */
.feature-cards{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 4.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
}
.feature-card{
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 18px;
  padding: 1.8rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.feature-card:hover{ transform: translateY(-4px); box-shadow: 0 20px 40px -22px rgba(0,0,0,0.28); }
.feature-card__icon{
  width: 2.6rem; height: 2.6rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: var(--teal-wash);
  color: var(--teal-dim);
}
.feature-card__icon svg{ width: 1.4rem; height: 1.4rem; }
.feature-card__title{ font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; margin: 0; }
.feature-card__text{ color: var(--muted); font-size: 0.9rem; line-height: 1.6; margin: 0; }
.feature-card__link{ font-size: 0.85rem; font-weight: 600; color: var(--teal-dim); margin-top: auto; }

/* ============ PROJEKTE-VORSCHAU (Startseite) ============ */
.projects-preview{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 4.5rem;
}
.projects-preview__strip{
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x proximity;
}
.projects-preview__card{
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 14px;
  overflow: hidden;
}
.projects-preview__media{ aspect-ratio: 4/3; background: var(--teal-wash); }
.projects-preview__media svg{ width: 100%; height: 100%; }
.projects-preview__label{ padding: 0.7rem 0.9rem; font-size: 0.82rem; font-weight: 600; }

/* ============ CTA-BANNER ============ */
.cta-banner{
  background: linear-gradient(120deg, var(--teal), var(--teal-dim));
  color: var(--ink);
  text-align: center;
  padding: 3.5rem clamp(1.2rem, 5vw, 4rem);
}
.cta-banner__title{
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  margin: 0 0 0.6rem;
}
.cta-banner__sub{ opacity: 0.78; margin: 0 0 1.6rem; }
.cta-banner .btn--primary{ background: var(--paper); color: var(--teal-dim); box-shadow: none; }
.cta-banner .btn--primary:hover{ background: var(--ink); color: #ffffff; transform: translateY(-2px); }

/* ============ GESCHÄFTSZEITEN ============ */
.hours{
  max-width: 780px;
  margin: 0 auto;
  padding: 4.5rem clamp(1.2rem, 5vw, 4rem);
  text-align: center;
}
.hours__title{ font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 0 0 0.5rem; }
.hours__sub{ color: var(--muted); margin: 0 0 2rem; }
.hours__table{ display: grid; gap: 0.6rem; max-width: 380px; margin: 0 auto; }
.hours__row{
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--paper);
  border: 1px solid rgba(30,34,42,0.07);
  border-radius: 10px;
  font-size: 0.9rem;
}
.hours__row span:first-child{ font-weight: 600; }
.hours__row span:last-child{ color: var(--muted); }

/* ============ MINI-KONTAKT (Startseite) ============ */
.mini-contact{
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 5vw, 4rem) 5rem;
  text-align: center;
}
.mini-contact__title{ font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2rem); margin: 0 0 0.5rem; }
.mini-contact__sub{ color: var(--muted); margin: 0 0 2rem; }
.mini-contact__grid{ display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; margin-bottom: 2rem; }

@media (max-width: 860px){
  .rundum{ grid-template-columns: 1fr; }
  .feature-cards{ grid-template-columns: 1fr; }
  .mini-contact__grid{ grid-template-columns: 1fr; }
}
