/* ============================================================
   AMIS MALEREI & GIPSEREI AG - amisgipser.ch
   Reproduction statique HTML/CSS/JS du site WordPress/Elementor
   Verwaltet von Anunet.ch
   ============================================================ */

/* ---------- Variables ---------- */
:root {
  --orange: #f58735;
  --orange-dark: #e0741f;
  --black: #000;
  --text: #555;
  --heading: #333;
  --white: #fff;
  --gray-bg: #f0f0f0;
  --container: 1120px;
  --font-body: "Roboto", sans-serif;
  --font-head: "Roboto Condensed", sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea { font-family: inherit; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ---------- Boutons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  border-radius: 4px;
  padding: 15px 30px;
  transition: all .25s ease;
  border: 2px solid transparent;
}
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-solid {
  background: var(--orange);
  color: var(--white);
}
.btn-solid:hover { background: var(--orange-dark); }
.btn-outline-white {
  background: rgba(255, 255, 255, .08);
  border-color: var(--white);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--orange); }
.btn-white {
  background: var(--white);
  color: var(--orange);
  box-shadow: 0 4px 18px rgba(0, 0, 0, .12);
}
.btn-white:hover { background: var(--orange); color: var(--white); }
.btn-pill {
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  padding: 10px 22px;
  border-radius: 50px;
}
.btn-pill svg { width: 13px; height: 13px; }
.btn-pill:hover { background: var(--orange-dark); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  padding: 10px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 24px;
}
.topbar-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; color: var(--white); }
.topbar-item svg { width: 14px; height: 14px; flex: none; }
.topbar-item:hover { opacity: .85; }

/* ---------- Header ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 108px;
  gap: 20px;
}
.logo img { width: 196px; height: auto; }

.main-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.main-nav ul { display: flex; align-items: center; }
.main-nav li { display: flex; align-items: center; }
/* point orange entre les items comme sur l'original */
.main-nav li + li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  margin: 0 17px;
  flex: none;
}
.main-nav a {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 500;
  color: #000;
  letter-spacing: .3px;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color .2s;
  padding: 8px 0;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); }
.main-nav .nav-kontakt { display: none; }
.header-cta { padding: 13px 26px; font-size: 15px; }

/* Burger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 42px;
  height: 42px;
  position: relative;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--orange);
  margin: 5px auto;
  border-radius: 2px;
  transition: all .3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---------- Hero (accueil) ---------- */
.hero {
  position: relative;
  height: 690px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.hero-slide.active {
  opacity: 1;
  animation: kenburns 10s ease-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.14); }
}
/* trame de points par-dessus les photos (comme l'overlay Vegas 04) */
.hero::after, .page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/overlay-04.png");
  background-repeat: repeat;
  pointer-events: none;
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
}
.hero-box {
  background: rgba(245, 135, 53, .93);
  color: var(--white);
  max-width: 560px;
  padding: 48px 52px 44px;
}
.hero-box h1 {
  font-family: var(--font-body);
  font-size: 38px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 26px;
}
.hero-box h2 {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 30px;
}
.hero-box p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 34px;
}

/* ---------- Bannière pages intérieures ---------- */
.page-banner {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.page-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: kenburns 12s ease-out forwards;
}
.page-banner .container { position: relative; z-index: 3; width: 100%; }
.banner-box {
  background: rgba(245, 135, 53, .9);
  color: var(--white);
  max-width: 620px;
  padding: 40px 48px;
}
.banner-box h1 {
  font-family: var(--font-body);
  font-size: 37px;
  font-weight: 300;
  line-height: 1.45;
}
.banner-box h1 strong { font-weight: 500; }

/* ---------- Bande orange fine + bande d'icônes ---------- */
.divider-orange { height: 21px; background: var(--orange); }

.icons-strip { padding: 46px 0 30px; background: var(--white); }
.icons-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.icons-strip .s-icon { width: 62px; height: 62px; flex: none; }
.icons-strip .s-icon svg { width: 100%; height: 100%; fill: var(--orange); }

/* ---------- Sections génériques ---------- */
.section { padding: 70px 0; }
.section-title {
  font-family: var(--font-head);
  font-size: 47px;
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: .1px;
  color: var(--orange);
  margin-bottom: 28px;
}
.section p { font-size: 15px; line-height: 1.75; margin-bottom: 16px; }

.two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

/* ---------- Accueil : Fachkräfte ---------- */
.fachkraefte .col-text .btn { margin-top: 18px; }
.fachkraefte .col-img img { border-radius: 10px; width: 100%; object-fit: cover; }

/* ---------- Accueil : Willkommen (fond orange) ---------- */
.willkommen {
  position: relative;
  background: url("../img/hero-1.jpg") center/cover no-repeat;
  color: var(--white);
  padding: 80px 0;
}
.willkommen::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 135, 53, .96);
}
.willkommen .container { position: relative; }
.willkommen h2 {
  font-family: var(--font-head);
  font-size: 76px;
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
}
.willkommen p { font-size: 15px; line-height: 1.8; margin-bottom: 34px; }
.willkommen .frame {
  border: 5px solid var(--white);
  padding: 22px;
  display: flex;
  justify-content: center;
}
.willkommen .frame img { max-height: 480px; width: auto; }

/* ---------- Accueil : Arbeitsbereiche ---------- */
.arbeitsbereiche { padding: 70px 0; }
.arbeitsbereiche .grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: end;
}
.arb-box {
  background: var(--orange);
  color: var(--white);
  padding: 46px 50px;
  box-shadow: 0 15px 40px rgba(245, 135, 53, .35);
}
.arb-box h2 {
  font-family: var(--font-head);
  font-size: 50px;
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 30px;
}
.arb-box li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .25);
}
.arb-box li:last-child { border-bottom: 0; }
.arb-box li svg { width: 13px; height: 13px; flex: none; }
.arbeitsbereiche .col-img img { margin: 0 auto; }

/* ---------- Accueil : CTA + bande slogan ---------- */
.cta-band { padding: 40px 0 55px; text-align: center; }

.slogan-band {
  position: relative;
  background: var(--black) url("../img/hero-2.jpg") center right/cover no-repeat;
  padding: 150px 0;
  text-align: center;
}
.slogan-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(245, 135, 53, .89);
}
.slogan-band h2 {
  position: relative;
  font-family: var(--font-head);
  font-size: 54px;
  font-weight: 300;
  color: var(--white);
  line-height: 1.2;
}

/* ---------- Dienstleistungen : cartes ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}
.service-card {
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, .1);
  padding: 14px 14px 26px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .16);
}
.service-card img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 5px;
}
.service-card h3 {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--orange);
  margin: 20px 0 18px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
/* ---------- Über uns ---------- */
.about-intro .col-img img { border-radius: 10px; }
.team-section { text-align: center; padding: 60px 0 70px; }
.team-section > .container > h2 {
  font-family: var(--font-body);
  font-size: 29px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 45px;
}
.team-card {
  display: inline-block;
  border: 1px solid var(--orange);
  border-radius: 10px;
  padding: 12px 12px 18px;
  max-width: 250px;
}
.team-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}
.team-card h3 {
  font-size: 15px;
  font-weight: 500;
  color: var(--orange);
  margin-top: 14px;
}
.team-card span { font-size: 12px; color: var(--text); }

.team-list {
  background: #fdf1e7;
  padding: 65px 0 110px;
}
.team-list h2 {
  font-family: var(--font-body);
  font-size: 29px;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 12px;
}
.team-list h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 2px;
  background: var(--orange);
  margin-top: 10px;
}
.team-list ul { margin-top: 26px; }
.team-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--heading);
  padding: 10px 0;
  border-bottom: 1px solid rgba(245, 135, 53, .25);
}
.team-list li svg { width: 16px; height: 16px; flex: none; }
.team-list .btn { margin-top: 34px; }

/* ---------- Referenzen : galerie ---------- */
.gallery-section { padding: 55px 0 80px; }
.gallery-section .section-title { text-align: left; }
.gallery-sub {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  color: var(--heading);
  margin-bottom: 6px;
}
.gallery {
  columns: 4 240px;
  column-gap: 10px;
  margin-top: 36px;
}
.gallery a {
  display: block;
  margin-bottom: 10px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery img {
  width: 100%;
  transition: transform .35s ease, opacity .35s ease;
}
.gallery a:hover img { transform: scale(1.05); opacity: .88; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 92vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  box-shadow: 0 0 60px rgba(0, 0, 0, .6);
}
.lightbox button {
  position: absolute;
  background: none;
  border: 0;
  color: #fff;
  font-size: 46px;
  line-height: 1;
  opacity: .8;
  transition: opacity .2s;
}
.lightbox button:hover { opacity: 1; }
.lb-close { top: 18px; right: 28px; }
.lb-prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lb-next { right: 18px; top: 50%; transform: translateY(-50%); }

/* ---------- Kontakt ---------- */
.contact-section { background: var(--gray-bg); padding: 75px 0 85px; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: start;
}
.contact-grid h2 {
  font-family: var(--font-body);
  font-size: 21px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 26px;
}
.contact-links li {
  border-bottom: 1px solid #cfcfcf;
  padding: 13px 2px;
}
.contact-links a {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--heading);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-links a:hover { color: var(--orange); }
.contact-links svg { width: 16px; height: 16px; flex: none; }

/* Honeypot anti-spam : hors écran, invisible pour les humains */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form .field { margin-bottom: 14px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #c9c9c9;
  border-radius: 3px;
  background: var(--white);
  padding: 11px 14px;
  font-size: 14px;
  color: var(--heading);
  transition: border-color .2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-form .btn { border: 0; margin-top: 6px; padding: 13px 30px; }
.form-note { font-size: 12px; color: #999; margin-top: 12px; }

/* ---------- Pages légales ---------- */
.legal-section { padding: 70px 0; }
.legal-section .container { max-width: 900px; }
.legal-section h1 {
  font-family: var(--font-head);
  font-size: 42px;
  font-weight: 300;
  color: var(--orange);
  margin-bottom: 34px;
}
.legal-content { font-size: 14px; line-height: 1.8; color: var(--text); }
.legal-content p { margin-bottom: 14px; }
.legal-content strong { color: var(--heading); }
.legal-content a { color: var(--orange); word-break: break-word; }
.legal-content a:hover { text-decoration: underline; }

/* ---------- Page 404 animée : le rouleau peint le 404 ---------- */
.nf-section {
  text-align: center;
  padding: 90px 0 110px;
  overflow: hidden;
}
.nf-scene {
  position: relative;
  max-width: 620px;
  margin: 0 auto 46px;
  height: clamp(150px, 34vw, 210px);
}
/* la bande de peinture se révèle de gauche à droite */
.nf-stripe {
  position: absolute;
  inset: 24px 0 0 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .14) 0 8%, transparent 8% 92%, rgba(0, 0, 0, .08) 92%),
    var(--orange);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(0 100% 0 0);
  animation: nf-paint 1.7s ease-out .3s forwards;
}
.nf-404 {
  font-family: var(--font-head);
  font-size: clamp(84px, 20vw, 138px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: 12px;
  text-shadow: 0 4px 0 rgba(0, 0, 0, .1);
  margin-left: 12px;
}
@keyframes nf-paint {
  to { clip-path: inset(0 0 0 0); }
}
/* le rouleau accompagne le bord de la peinture puis rebondit doucement */
.nf-roller {
  position: absolute;
  top: 0;
  left: -6%;
  width: clamp(52px, 12vw, 78px);
  animation:
    nf-roll 1.7s ease-out .3s forwards,
    nf-bob 2.6s ease-in-out 2.2s infinite alternate;
  filter: drop-shadow(0 8px 14px rgba(0, 0, 0, .22));
}
@keyframes nf-roll {
  to { left: calc(97% - 52px); }
}
@keyframes nf-bob {
  to { transform: translateY(8px) rotate(2deg); }
}
/* coulures de peinture séchées sous la bande */
.nf-run {
  position: absolute;
  top: calc(100% - 26px);
  width: 9px;
  border-radius: 0 0 6px 6px;
  background: var(--orange);
  height: 0;
  animation: nf-run 1s ease-out forwards;
}
.nf-run::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--orange-dark);
}
.nf-run1 { left: 16%; animation-delay: 1s; }
.nf-run2 { left: 47%; animation-delay: 1.5s; }
.nf-run3 { left: 81%; animation-delay: 2s; }
@keyframes nf-run {
  to { height: 34px; }
}
.nf-run2 { width: 7px; }
.nf-run2::after { width: 7px; height: 7px; }
@keyframes nf-run2 { to { height: 22px; } }
.nf-run2 { animation-name: nf-run2; }
/* une goutte qui tombe en boucle */
.nf-drop {
  position: absolute;
  top: calc(100% - 26px);
  left: 63%;
  width: 12px;
  height: 13px;
  border-radius: 50% 50% 52% 48% / 42% 42% 58% 58%;
  background: var(--orange);
  opacity: 0;
  animation: nf-fall 3.8s ease-in 2.6s infinite;
}
@keyframes nf-fall {
  0%   { transform: translateY(0) scale(.5); opacity: 0; }
  12%  { transform: translateY(6px) scale(1); opacity: 1; }
  70%  { transform: translateY(38px) scale(1); opacity: 1; }
  100% { transform: translateY(55px) scale(.9); opacity: 0; }
}
.nf-title {
  font-size: 21px;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 8px;
  opacity: 0;
  animation: nf-fade .8s ease-out 1.9s forwards;
}
.nf-sub {
  margin-bottom: 34px;
  opacity: 0;
  animation: nf-fade .8s ease-out 2.15s forwards;
}
.nf-section .btn {
  opacity: 0;
  animation: nf-fade .8s ease-out 2.4s forwards;
}
@keyframes nf-fade {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}
/* accessibilité : sans animation, tout est affiché directement */
@media (prefers-reduced-motion: reduce) {
  .nf-stripe, .nf-roller, .nf-run, .nf-title, .nf-sub, .nf-section .btn {
    animation: none;
  }
  .nf-stripe { clip-path: none; }
  .nf-roller { left: calc(97% - 52px); }
  .nf-run { height: 34px; }
  .nf-run2 { height: 22px; }
  .nf-drop { display: none; }
  .nf-title, .nf-sub, .nf-section .btn { opacity: 1; }
}

/* ---------- Bande de cercles avant footer ---------- */
.circles-strip {
  position: relative;
  z-index: 5;
  margin-bottom: -52px;
}
.circles-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.circle-icon {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--orange);
  border: 4px solid rgba(255, 255, 255, .55);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.circle-icon svg { width: 46px; height: 46px; fill: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--orange);
  color: var(--white);
  padding: 90px 0 45px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr;
  gap: 50px;
  align-items: start;
}
.site-footer h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.site-footer h3.light { font-weight: 500; font-size: 19px; }
.footer-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 14px;
  padding: 5px 0;
}
.footer-list svg { width: 15px; height: 15px; flex: none; margin-top: 4px; }
.footer-list a:hover { text-decoration: underline; }
.footer-legal {
  display: flex;
  gap: 34px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .4);
  font-size: 13px;
  font-weight: 600;
}
.footer-legal a:hover { text-decoration: underline; }
.footer-map iframe {
  width: 100%;
  height: 205px;
  border: 0;
  border-radius: 4px;
  display: block;
}
.copyright {
  background: var(--black);
  color: var(--white);
  text-align: center;
  font-size: 12px;
  padding: 13px 10px;
}
.copyright a { color: var(--white); }
.copyright a:hover { text-decoration: underline; }

/* ---------- Bandeau cookies ---------- */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #3d3d3d;
  color: #eee;
  font-size: 13px;
  padding: 16px 0;
  z-index: 1500;
  display: none;
}
.cookie-banner.show { display: block; }
.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner .btn { padding: 10px 22px; font-size: 13px; }

/* ---------- Animations d'apparition ---------- */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-box h1 { font-size: 32px; }
  .hero-box h2 { font-size: 29px; }
  .willkommen h2 { font-size: 54px; }
  .arb-box h2 { font-size: 40px; }
  .section-title { font-size: 38px; }
  .slogan-band h2 { font-size: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .circle-icon { width: 74px; height: 74px; }
  .circle-icon svg { width: 36px; height: 36px; }
}

@media (max-width: 860px) {
  .two-cols, .arbeitsbereiche .grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid { gap: 40px; }
  .icons-strip .s-icon { width: 44px; height: 44px; }
}

@media (max-width: 767px) {
  .topbar .container { justify-content: center; }
  .topbar-right { display: none; }

  .site-header .container { min-height: 84px; }
  .logo img { width: 150px; }
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, .98);
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 1000;
    margin: 0;
  }
  .main-nav.open { transform: none; }
  .main-nav ul { flex-direction: column; gap: 6px; text-align: center; }
  .main-nav li { justify-content: center; }
  .main-nav li + li::before { display: none; }
  .main-nav a { font-size: 22px; }
  .main-nav .nav-kontakt { display: flex; }
  .header-cta { display: none; }

  .hero { height: 560px; }
  .hero-box { padding: 34px 28px; }
  .hero-box h1 { font-size: 27px; margin-bottom: 16px; }
  .hero-box h2 { font-size: 23px; margin-bottom: 20px; }
  .page-banner { height: 440px; }
  .banner-box { padding: 28px 26px; }
  .banner-box h1 { font-size: 25px; }

  .section { padding: 50px 0; }
  .section-title { font-size: 31px; }
  .willkommen h2 { font-size: 38px; }
  .willkommen .frame img { max-height: 340px; }
  .arb-box { padding: 32px 26px; }
  .arb-box h2 { font-size: 31px; }
  .slogan-band { padding: 90px 0; }
  .slogan-band h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery { columns: 2 140px; }
  .circles-strip { display: none; }
  .site-footer { padding-top: 60px; }
}
