:root{
  --ink:#12262E;
  --ink-soft:#1C343D;
  --petrol:#1E3F49;
  --steel:#55666E;
  --steel-light:#93A6AC;
  --concrete:#F4F2EC;
  --concrete-dark:#E4DFD0;
  --white:#FFFFFF;
  --gold:#D1AF6C;
  --gold-dark:#B8935A;
  --gold-light:#E9D9B2;
  --line:#DCD5C2;
  --font-display:'Archivo Black', sans-serif;
  --font-body:'Archivo', sans-serif;
  --font-mono:'IBM Plex Mono', monospace;
}

/* ---------- Lokal gehostete Schriften (DSGVO-konform, kein Google-Server-Aufruf) ----------
   Dateien müssen im Ordner /fonts/ liegen, siehe FONTS-README.txt */
@font-face{
  font-family:'Archivo Black';
  src:url('fonts/ArchivoBlack-Regular.woff') format('woff'),
      url('fonts/ArchivoBlack-Regular.ttf') format('truetype');
  font-weight:400 900;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('fonts/Archivo-Regular.woff') format('woff'),
      url('fonts/Archivo-Regular.ttf') format('truetype');
  font-weight:400;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('fonts/Archivo-Medium.woff') format('woff'),
      url('fonts/Archivo-Medium.ttf') format('truetype');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('fonts/Archivo-SemiBold.woff') format('woff'),
      url('fonts/Archivo-SemiBold.ttf') format('truetype');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'Archivo';
  src:url('fonts/Archivo-Bold.woff') format('woff'),
      url('fonts/Archivo-Bold.ttf') format('truetype');
  font-weight:700;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'IBM Plex Mono';
  src:url('fonts/IBMPlexMono-Medium.woff') format('woff'),
      url('fonts/IBMPlexMono-Medium.ttf') format('truetype');
  font-weight:500;
  font-style:normal;
  font-display:swap;
}
@font-face{
  font-family:'IBM Plex Mono';
  src:url('fonts/IBMPlexMono-SemiBold.woff') format('woff'),
      url('fonts/IBMPlexMono-SemiBold.ttf') format('truetype');
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--concrete);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}
a{color:inherit; text-decoration:none;}
img{max-width:100%; display:block;}
ul{list-style:none;}
section{padding:60px 24px;}
.wrap{max-width:1180px; margin:0 auto;}
.eyebrow{
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold-dark);
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:18px;
}
.eyebrow::before{
  content:"";
  width:22px; height:2px;
  background:var(--gold-dark);
  display:inline-block;
}
h1,h2,h3{font-family:var(--font-display); line-height:1.15; letter-spacing:-.01em;}
h1{font-size:32px;}
h2{font-size:22px; margin-bottom:16px;}
.lede{font-size:18px; color:var(--steel); max-width:640px;}
:focus-visible{outline:3px solid var(--gold-dark); outline-offset:3px;}

/* ---------- topbar ---------- */
.topbar{
  background:var(--ink);
  color:var(--concrete-dark);
  font-family:var(--font-mono);
  font-size:12.5px;
  letter-spacing:.03em;
}
.topbar .wrap{
  display:flex; justify-content:space-between; align-items:center;
  padding:9px 24px; max-width:1180px; margin:0 auto; gap:16px; flex-wrap:wrap;
}
.topbar a{color:var(--gold-light); border-bottom:1px solid transparent;}
.topbar a:hover{border-color:var(--gold); color:var(--gold);}
.topbar .status{color:var(--gold); font-weight:600;}

/* ---------- header / nav ---------- */
header.site{
  position:sticky; top:0; z-index:50;
  background:var(--white);
  border-bottom:1px solid var(--line);
}
nav.main{
  display:flex; align-items:center; justify-content:space-between;
  max-width:1180px; margin:0 auto; padding:12px 24px;
  gap:24px;
}
.logo-mark{display:flex; align-items:center; gap:10px;}
.logo-mark img{height:44px; width:auto;}
.nav-links{display:flex; gap:6px; align-items:center;}
.nav-links > li{position:relative;}
.nav-links > li > a{
  display:block; padding:10px 14px; font-weight:600; font-size:15px; border-radius:3px;
}
.nav-links > li > a:hover{background:var(--concrete); color:var(--gold-dark);}
.nav-links .sub{
  display:none;
  position:absolute; top:100%; left:0;
  background:var(--white);
  border:1px solid var(--line);
  min-width:200px;
  box-shadow:0 12px 24px rgba(18,38,46,.1);
  padding:6px;
  border-radius:4px;
}
.nav-links li:hover .sub{display:block;}
.nav-links .sub a{display:block; padding:9px 12px; font-size:14px; border-radius:3px;}
.nav-links .sub a:hover{background:var(--concrete); color:var(--gold-dark);}

/* Aktiver Menüpunkt: Desktop = Gold + fett, Mobile zusätzlich ein Punkt davor */
.nav-links a[aria-current="page"]{color:var(--gold-dark); font-weight:700;}
.nav-links .sub a[aria-current="page"]{background:var(--concrete);}

/* ---------- Mega-Menü "Gewerke" ---------- */
.has-mega{position:relative;}
.mega-menu{
  display:none;
  position:absolute; top:100%; left:50%; transform:translateX(-50%);
  width:580px;
  background:var(--white);
  border:1px solid var(--line);
  border-radius:8px;
  box-shadow:0 22px 48px rgba(18,38,46,.16);
  padding:18px;
  z-index:70;
}
.has-mega:hover .mega-menu{display:block;}
.mega-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:3px;}
.mega-item{
  display:flex; align-items:center; gap:13px;
  padding:11px 12px; border-radius:6px; color:var(--ink); font-weight:600; font-size:14.5px;
}
.mega-item:hover{background:var(--concrete);}
.mega-item svg{width:22px; height:22px; color:var(--gold-dark); flex:0 0 auto;}
.mega-item[aria-current="page"]{background:var(--concrete); color:var(--gold-dark);}
.mega-all{
  display:block; margin-top:14px; padding-top:14px; border-top:1px solid var(--line);
  text-align:center; font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--gold-dark);
}
.mega-all:hover{color:var(--ink);}
.cta-small{
  background:var(--gold-dark); color:var(--white); font-weight:700; font-size:14px;
  padding:11px 20px; border-radius:3px; white-space:nowrap;
}
.cta-small:hover{background:var(--ink);}
.burger{display:none;}
.mobile-cta{display:none;}
.mobile-call{display:none;}
.mobile-legal{display:none;}

/* ---------- hero ---------- */
.hero{
  background-image: url('images/index-header.jpg');
  background-size:cover;
  background-position:center 38%;
  color:var(--white);
  position:relative;
  overflow:hidden;
  padding:150px 24px 0;
  border-bottom:4px solid var(--gold);
  min-height:660px;
  display:flex;
  align-items:center;
}
.hero::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(209,175,108,.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(209,175,108,.09) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, black, transparent 85%);
}
.hero .wrap{position:relative; width:100%;}
.hero-grid{
  display:grid; grid-template-columns:1fr; align-items:start; margin-bottom:20px;
}
.hero h1{
  font-size:clamp(26px,3.4vw,38px);
  margin-bottom:22px;
  text-shadow:0 2px 18px rgba(0,0,0,.35);
}
.hero h1 em{font-style:normal; color:var(--gold);}
.hero p.lede{color:var(--concrete-dark); font-size:19px; max-width:560px; text-shadow:0 1px 10px rgba(0,0,0,.3);}
.hero-actions{display:flex; gap:14px; margin-top:52px; flex-wrap:wrap;}
.btn-primary{
  background:var(--gold); color:var(--ink); font-weight:700;
  padding:15px 26px; border-radius:3px; font-size:15px; display:inline-block;
}
.btn-primary:hover{background:var(--gold-light);}
.btn-ghost{
  border:1px solid rgba(255,255,255,.35); color:var(--white);
  padding:15px 26px; border-radius:3px; font-size:15px; font-weight:600; display:inline-block;
}
.btn-ghost:hover{border-color:var(--gold);}
.hero-side{
  font-family:var(--font-mono);
  border-left:2px solid var(--gold);
  padding-left:22px;
}
.hero-side p{color:var(--steel-light); font-size:13.5px; letter-spacing:.03em;}

/* stat strip */
.stats-band{background:var(--ink); padding:60px 24px;}
.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
}
.stat-card{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(209,175,108,.2);
  border-radius:8px;
  padding:28px 20px;
  text-align:center;
}
.stat-card svg{width:26px; height:26px; color:var(--gold); margin-bottom:14px;}
.stat-num{
  font-family:var(--font-mono); font-weight:600; font-size:clamp(24px,2.6vw,34px);
  color:var(--gold); line-height:1.1;
}
.stat-label{font-size:16px; color:var(--concrete-dark); margin-top:6px; line-height:1.4;}

/* ---------- intro ---------- */
.intro{background:var(--white); padding-bottom:40px;}
/* Bewusst mit Float statt Grid gelöst (siehe gewerke-hero-grid für Begründung) */
.intro-grid{}
.intro-grid::after{content:""; display:table; clear:both;}
.intro-grid .intro-text-1{float:left; width:62%;}
.intro-grid .intro-text-2{float:left; width:62%; clear:left;}
.intro-grid .quote-card{float:right; width:33%;}
.intro-grid p{margin-bottom:16px; color:var(--steel); font-size:16px;}
.intro-grid strong{color:var(--ink);}
.quote-card{
  background:var(--ink); color:var(--white);
  padding:28px; border-radius:8px; position:relative;
  max-width:300px; margin:0 auto; text-align:center;
}
/* Frank-Limbeck-Foto: großformatig statt kleinem Avatar, wie auf der alten Seite */
.quote-card img{
  width:100%;
  aspect-ratio:4/5;
  object-fit:cover;
  object-position:center 12%;
  border-radius:4px;
  margin-bottom:18px;
  border:2px solid var(--gold);
}
.quote-card q{font-size:16px; font-style:italic; line-height:1.5; display:block; margin-bottom:16px;}
.quote-card .who{font-family:var(--font-mono); font-size:13px; color:var(--concrete-dark);}
.quote-card .who b{color:var(--white); display:block; font-family:var(--font-body); font-size:15px; margin-bottom:2px;}

/* ---------- benefits ---------- */
.benefits{background:var(--concrete);}
.benefit-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin-top:40px;
}
.benefit{background:var(--white); padding:28px 26px;}
.benefit .n{
  font-family:var(--font-mono); color:var(--gold-dark); font-size:13px; font-weight:600; letter-spacing:.06em;
}
.benefit h3{font-family:var(--font-body); font-weight:700; font-size:17px; margin:10px 0 8px;}
.benefit p{color:var(--steel); font-size:14.5px;}

/* ---------- gewerke ---------- */
.gewerke{background:var(--white); padding-top:60px; padding-bottom:60px;}
.gewerke-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-top:40px;
}
.gewerke-tile{
  position:relative; aspect-ratio:4/5; overflow:hidden; border-radius:4px;
  background:var(--ink);
}
.gewerke-tile img{
  width:100%; height:100%; object-fit:cover;
  transition:transform .4s ease, filter .4s ease;
  filter:saturate(.9);
}
.gewerke-tile:hover img{transform:scale(1.06); filter:saturate(1.05);}
.gewerke-tile::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(to top, rgba(18,38,46,.88) 0%, rgba(18,38,46,.15) 55%, rgba(18,38,46,0) 100%);
}
.gewerke-tile .label{
  position:absolute; left:16px; right:16px; bottom:14px; z-index:2;
  color:var(--white); font-family:var(--font-body); font-weight:700; font-size:16px;
}
.gewerke-tile .label small{
  display:block; font-family:var(--font-mono); font-weight:500; font-size:11px;
  letter-spacing:.06em; color:var(--gold); margin-bottom:4px; text-transform:uppercase;
}
.gewerke-more{text-align:center; margin-top:36px;}

/* ---------- freie teams: slider ---------- */
.board{background:var(--ink); color:var(--white);}
.board .eyebrow{color:var(--gold);}
.board-head{
  display:flex; justify-content:space-between; align-items:flex-end; gap:24px; flex-wrap:wrap;
  margin-bottom:12px;
}
.board-head .lede{color:var(--steel-light);}
.board-legend{
  font-family:var(--font-mono); font-size:12px; color:var(--steel-light);
  display:flex; justify-content:space-between; align-items:center; gap:18px; margin-bottom:24px; flex-wrap:wrap;
  border-top:1px solid rgba(209,175,108,.18);
  padding-top:14px;
}
.board-legend .keys{display:flex; gap:18px; flex-wrap:wrap;}
.board-legend b{color:var(--gold);}

/* slider viewport */
.slider{position:relative;}
.slider-track{
  display:flex; gap:14px; overflow-x:auto; scroll-snap-type:x mandatory;
  padding-bottom:6px; scrollbar-width:none;
}
.slider-track::-webkit-scrollbar{display:none;}
.slider-track .ticket{
  scroll-snap-align:start;
  flex:0 0 auto;
  width:280px;
}
.slider-nav{display:flex; gap:10px; margin-top:22px; justify-content:flex-end;}
.slider-btn{
  width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(209,175,108,.4);
  background:var(--ink-soft); color:var(--gold);
  font-family:var(--font-mono); font-size:16px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:background .15s ease, border-color .15s ease;
}
.slider-btn:hover{background:var(--gold); color:var(--ink); border-color:var(--gold);}
.slider-btn:disabled{opacity:.35; cursor:default; background:var(--ink-soft); color:var(--gold);}

.ticket{
  background:var(--ink-soft);
  border:1px solid rgba(209,175,108,.12);
  border-left:3px solid var(--gold);
  padding:18px 18px 16px;
  transition:border-color .15s ease, transform .15s ease;
}
.ticket:hover{border-left-color:var(--gold-light);}

/* Rasterversion (freie-teams.html) statt Slider */
.ticket-grid{
  display:grid; grid-template-columns:repeat(auto-fill,minmax(270px,1fr)); gap:14px;
}
@media (max-width:600px){
  .ticket-grid{grid-template-columns:1fr;}
}
.ticket .tid{
  font-family:var(--font-mono); font-size:11.5px; color:var(--steel-light); letter-spacing:.05em;
  display:flex; justify-content:space-between;
}
.ticket .tid .avail{color:#8FCB9C;}
.ticket h3{
  font-family:var(--font-body); font-weight:700; font-size:15.5px; margin:10px 0 8px; line-height:1.3;
}
.ticket p{font-size:13.5px; color:var(--steel-light); margin-bottom:14px;}
.ticket a.more{
  font-family:var(--font-mono); font-size:12.5px; font-weight:600; color:var(--gold);
  border-bottom:1px solid transparent;
}
.ticket a.more:hover{border-color:var(--gold);}
.board-more{
  text-align:center; margin-top:30px;
}

/* ---------- page header (Unterseiten) ---------- */
.page-header{
  background:var(--ink); color:var(--white);
  padding:56px 24px 44px;
  border-bottom:4px solid var(--gold);
  position:relative; overflow:hidden;
}
.page-header::before{
  content:"";
  position:absolute; inset:0;
  background-image:
    linear-gradient(rgba(209,175,108,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(209,175,108,.08) 1px, transparent 1px);
  background-size:44px 44px;
  mask-image:linear-gradient(to bottom, black, transparent 90%);
}
.page-header .wrap{position:relative;}

/* Fotovariante für Seiten mit Kopfbild (z.B. Sicherheit) */
.page-header--photo{
  background-image:
    linear-gradient(180deg, rgba(18,38,46,.82) 0%, rgba(18,38,46,.92) 60%, var(--ink) 100%),
    var(--header-image);
  background-size:cover;
  background-position:center 42%;
  padding:70px 24px 54px;
}
.page-header--tall{
  padding:150px 24px 90px;
}
@media (max-width:640px){
  .page-header--tall{padding:110px 24px 60px;}
}
/* XL-Testvariante: Zielformat der neuen Kopfbilder ca. 1600x772px */
.page-header--xl{
  min-height:660px;
  display:flex;
  align-items:center;
  padding:56px 24px 64px;
}
.page-header--xl .wrap{width:100%;}
.page-header--xl .breadcrumb{margin-bottom:26px;}
.page-header--xl h1{
  font-size:32px;
  text-shadow:0 2px 16px rgba(0,0,0,.35);
}
.page-header--xl .header-subtitle{
  font-family:var(--font-body);
  font-weight:600;
  font-size:clamp(15px,1.8vw,19px);
  color:var(--concrete-dark);
  line-height:1.5;
  margin-top:12px;
  max-width:620px;
  text-shadow:0 1px 8px rgba(0,0,0,.3);
}

/* Freundliche Variante: kein dunkler Overlay-Layer, Text sitzt in einer
   hellen Karte über dem Foto statt weiß auf abgedunkeltem Bild.
   Generisch gehalten, damit auch der Hero (Startseite) sie nutzen kann. */
.page-header--photo.page-header--bright{
  background-image: var(--header-image);
}
@media (max-width:700px){
  .page-header--photo.page-header--bright{
    background-image: var(--header-image-mobile, var(--header-image));
  }
}
.header-card{
  background:rgba(255,253,248,.8);
  padding:34px 38px;
  border-radius:10px;
  max-width:600px;
  box-shadow:0 24px 55px rgba(18,38,46,.22);
  border-left:4px solid var(--gold);
  margin-top:140px;
}
.header-card .breadcrumb{color:var(--steel);}
.header-card .breadcrumb a{color:var(--steel);}
.header-card .breadcrumb a:hover{color:var(--gold-dark);}
.header-card .breadcrumb span{color:var(--gold-dark);}
.header-card h1{color:var(--ink); text-shadow:none;}

/* ---------- Einheitliches Muster: H1 in der 1. Sektion, Header = nur Slogan ---------- */
.section-first{padding-top:60px;}
.content-col{max-width:820px;}
h1.page-title{
  color:var(--gold-dark);
  font-size:32px;
  margin-bottom:16px;
  line-height:1.15;
}
.header-card .header-subtitle{color:var(--steel); text-shadow:none;}
.header-card .btn-ghost{border-color:var(--ink); color:var(--ink);}
.header-card .btn-ghost:hover{border-color:var(--gold-dark); color:var(--gold-dark);}

/* ---------- Test-Variante: kein Karten-Hintergrund, nur Text auf dunklem
   Verlauf (oben transparent, unten abgedunkelt) ---------- */
.page-header--photo.page-header--darkfade{
  background-image:
    linear-gradient(180deg, rgba(18,38,46,0) 0%, rgba(18,38,46,.35) 55%, rgba(18,38,46,.78) 100%),
    var(--header-image);
}
@media (max-width:700px){
  .page-header--photo.page-header--darkfade{
    background-image:
      linear-gradient(180deg, rgba(18,38,46,0) 0%, rgba(18,38,46,.35) 55%, rgba(18,38,46,.78) 100%),
      var(--header-image-mobile, var(--header-image));
  }
}
.page-header--darkfade .header-card{
  background:none; border:none; box-shadow:none; padding:0; margin-top:220px; max-width:640px;
}
.page-header--darkfade .breadcrumb a{color:rgba(255,255,255,.8);}
.page-header--darkfade .breadcrumb a:hover{color:var(--gold-light);}
.page-header--darkfade .breadcrumb span{color:var(--gold-light);}
.page-header--darkfade .header-subtitle{
  color:#fff;
  font-weight:700;
  font-size:28px;
  text-shadow:0 2px 14px rgba(0,0,0,.55);
}
@media (max-width:640px){
  .page-header--darkfade .header-card{margin-top:180px; padding:0;}
}
@media (max-width:640px){
  .header-card{padding:26px 24px; margin-top:160px;}
}
@media (max-width:640px){
  .page-header--xl{min-height:440px; padding:36px 24px 44px;}
}

.breadcrumb{
  font-family:var(--font-mono); font-size:12px; color:var(--steel-light);
  display:flex; gap:8px; margin-bottom:18px; flex-wrap:wrap;
}
.breadcrumb a:hover{color:var(--gold);}
.breadcrumb span{color:var(--gold);}
.page-header h1{
  font-size:clamp(26px,3vw,36px);
  margin-bottom:12px;
}
.page-header p.lede{color:var(--concrete-dark); max-width:640px;}

/* ---------- team ---------- */
.team-section{background:var(--concrete); padding-bottom:40px;}
.team-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px;
}
.team-card{
  background:var(--white); border:1px solid var(--line); border-radius:4px;
  overflow:hidden; transition:transform .15s ease, box-shadow .15s ease;
}
.team-card:hover{transform:translateY(-3px); box-shadow:0 14px 28px rgba(18,38,46,.10);}
.team-photo{aspect-ratio:4/5; overflow:hidden; background:var(--ink);}
.team-photo img{width:100%; height:100%; object-fit:cover;}
.team-photo img.pos-top{object-position:center 8%;}
.team-body{padding:16px 18px 20px;}
.team-body h3{font-family:var(--font-body); font-weight:700; font-size:16px; margin-bottom:4px;}
.team-role{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-dark); font-weight:600; margin-bottom:10px; display:block;
}
.team-dept{font-size:13.5px; color:var(--steel); margin-bottom:10px; line-height:1.4; min-height:19px;}
.team-phone{
  font-family:var(--font-mono); font-size:13px; color:var(--ink); font-weight:600;
  display:inline-block; border-bottom:1px solid transparent;
}
.team-phone:hover{color:var(--gold-dark); border-color:var(--gold-dark);}

@media (max-width:860px){
  .team-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .team-grid{grid-template-columns:1fr;}
}

/* ---------- content / legal page ---------- */
.content-section{background:var(--white); padding-top:40px; padding-bottom:40px;}
#kontakt{padding-top:60px; padding-bottom:60px;}
.content-section.section-first{padding-top:60px;}
.content-section .content-grid{
  display:grid; grid-template-columns:1.15fr .85fr; gap:64px; align-items:start;
}
.content-section p{color:var(--steel); font-size:16px; margin-bottom:16px; max-width:620px;}
.callout{
  background:var(--concrete); border-left:4px solid var(--gold);
  padding:22px 26px; margin:28px 0; border-radius:2px;
}
.callout p{
  color:var(--ink); font-weight:700; font-size:17px; margin-bottom:0;
  font-family:var(--font-body); line-height:1.4;
}
.partner-box{
  background:var(--ink); color:var(--white); border-radius:4px; padding:28px;
  position:relative; overflow:hidden;
}
.partner-box::before{content:""; position:absolute; top:0; left:0; width:100%; height:4px; background:var(--gold);}
.partner-box .eyebrow{color:var(--gold);}
.partner-box p{color:var(--steel-light); font-size:15px; margin-bottom:18px;}
.partner-box a.partner-link{
  font-family:var(--font-mono); font-size:13px; font-weight:600; color:var(--gold);
  border-bottom:1px solid transparent;
}
.partner-box a.partner-link:hover{border-color:var(--gold);}

.docs-grid{
  display:grid; grid-template-columns:repeat(2,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin:36px 0;
}
.doc-card{background:var(--white); padding:22px 24px;}
.doc-card .tag{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gold-dark); font-weight:600; display:block; margin-bottom:8px;
}
.doc-card h3{font-family:var(--font-body); font-weight:700; font-size:16px; margin-bottom:6px;}
.doc-card p{font-size:13.5px; color:var(--steel); margin-bottom:0;}

@media (max-width:860px){
  .content-section .content-grid{grid-template-columns:1fr;}
  .docs-grid{grid-template-columns:1fr;}
}

/* ---------- FAQ ---------- */
.faq-section{background:var(--white);}
.faq-section .content-grid{max-width:820px; margin:0 auto;}
.faq-group{margin-bottom:56px;}
.faq-group:last-child{margin-bottom:0;}
.faq-group-title{
  display:flex; align-items:center; gap:14px; margin-bottom:22px;
}
/* Ausnahme: FAQ-Kopftext auf Höhe des Akkordeons (820px-Einzug) einrücken */
/* Checkmark-Liste für kurze Vorteils-Punkte */
.check-list{
  list-style:none; padding:0; margin-top:14px;
  display:grid; grid-template-columns:1fr; gap:12px;
}
.check-list li{display:flex; align-items:flex-start; gap:10px; font-size:15px; color:var(--steel); line-height:1.5;}
.check-list li svg{flex:0 0 auto; width:19px; height:19px; color:var(--gold-dark); margin-top:1px;}
@media (max-width:640px){
  .check-list{grid-template-columns:1fr;}
}

.faq-hero-grid{display:grid; grid-template-columns:140px 1fr 380px; gap:40px; align-items:start;}
.faq-hero-img{position:relative;}
@media (max-width:960px){
  .faq-hero-grid{grid-template-columns:1fr; gap:24px;}
  .faq-hero-spacer{display:none;}
  .faq-hero-img{order:2;}
  .faq-hero-text{order:1;}
}

.faq-group-num{
  font-family:var(--font-mono); color:var(--white); background:var(--ink); font-weight:700; font-size:13px;
  width:34px; height:34px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex:0 0 auto;
}
.faq-group h2{margin-bottom:0;}
.faq-list{display:flex; flex-direction:column;}
.faq-list .faq-item{margin-bottom:10px;}
.faq-list .faq-item:last-child{margin-bottom:0;}
.faq-item{
  border:1px solid var(--line); border-radius:10px; background:var(--white);
  transition:border-color .15s ease, box-shadow .15s ease;
}
.faq-item:hover{border-color:var(--gold); box-shadow:0 6px 18px rgba(18,38,46,.07);}
.faq-item.is-open{border-color:var(--gold-dark);}
.faq-q-btn{
  width:100%; cursor:pointer; background:none; border:none; text-align:left;
  padding:18px 20px; display:flex; align-items:center; gap:16px;
  font-family:var(--font-body); font-weight:700; font-size:15.5px; color:var(--ink);
}
.faq-q-btn .faq-num{
  font-family:var(--font-mono); color:var(--gold-dark); font-weight:700; font-size:15px; flex:0 0 auto; min-width:28px;
}
.faq-q-btn .faq-q{flex:1;}
.faq-q-btn .icon{
  flex:0 0 auto; width:20px; height:20px; color:var(--gold-dark);
  transition:transform .25s ease;
}
.faq-item.is-open .faq-q-btn .icon{transform:rotate(180deg);}
.faq-answer{
  display:grid; grid-template-rows:0fr; transition:grid-template-rows .3s ease;
}
.faq-item.is-open .faq-answer{grid-template-rows:1fr;}
.faq-answer-inner{overflow:hidden;}
.faq-answer-inner p{
  padding:0 20px 22px 64px; color:var(--steel); font-size:15px; max-width:760px; line-height:1.7;
}

/* ---------- CTA-Banner (schmale Zwischenzeile) ---------- */
.cta-banner{
  background:var(--ink); color:var(--white);
  padding:36px 24px; text-align:center;
  border-bottom:4px solid var(--gold);
}
.cta-banner .banner-heading{
  font-family:var(--font-body); font-weight:700; font-size:18px; line-height:1.55;
  color:var(--white); margin:0 0 20px; letter-spacing:.01em;
}

/* ---------- Werte-Grid (Über uns) ---------- */
.values-section{background:var(--white);}
.values-grid{
  display:grid; grid-template-columns:repeat(3,1fr); gap:1px;
  background:var(--line); border:1px solid var(--line); margin-top:40px;
}
.value-card{background:var(--white); padding:20px 20px 26px;}
.value-icon{
  width:100%; aspect-ratio:1/1; margin-bottom:18px; border-radius:6px;
  overflow:hidden;
}
.value-icon img{width:100%; height:100%; object-fit:cover;}
.value-card h3{font-family:var(--font-body); font-weight:700; font-size:17px; margin-bottom:10px;}
.value-card p{font-size:14.5px; color:var(--steel); line-height:1.6; margin-bottom:0;}

@media (max-width:860px){
  .values-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:520px){
  .values-grid{grid-template-columns:1fr;}
}

/* ---------- lange Artikel-Seite (Fachkräftemangel) ---------- */
.stat-highlight{
  background:var(--concrete); border-left:4px solid var(--gold);
  padding:22px 26px; margin:0 0 36px; display:flex; gap:28px; flex-wrap:wrap;
}
.stat-highlight div{font-family:var(--font-mono);}
.stat-highlight .num{color:var(--gold-dark); font-weight:600; font-size:28px; display:block;}
.stat-highlight .lbl{color:var(--steel); font-size:13px;}

.split-block{
  display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; margin:50px 0;
}
.split-img{position:relative;}
.value-band .split-block{margin:0;}
.value-band{padding:56px 24px;}
.value-band--a{background:var(--ink);}
.value-band--b{background:var(--white);}
.value-band--a h2{color:var(--white);}
.value-band--a .split-text h3{color:var(--white);}
.value-band--a .split-text p{color:var(--steel-light);}
.value-band--a .split-text strong{color:var(--gold-light);}
.split-block.reveal{
  opacity:0; transform:translateY(50px);
  transition:opacity .7s ease, transform .7s ease;
}
.split-block.reveal.is-visible{opacity:1; transform:translateY(0);}
.split-block img{width:100%; border-radius:4px; aspect-ratio:4/3; object-fit:cover;}
.split-block .split-text h2, .split-block .split-text h3{margin-bottom:14px;}
.split-block.reverse .split-img{order:2;}
.split-block.reverse .split-text{order:1;}

.numbered-list{
  display:grid; gap:1px; background:var(--line); border:1px solid var(--line); margin:28px 0 36px;
}
.numbered-item{
  background:var(--white); padding:20px 22px; display:grid;
  grid-template-columns:44px 1fr; gap:16px; align-items:start;
}
.numbered-item .num{font-family:var(--font-mono); font-size:22px; font-weight:600; color:var(--gold-dark);}
.numbered-item h4{font-family:var(--font-body); font-weight:700; font-size:15.5px; margin-bottom:6px; color:var(--ink);}
.numbered-item p{font-size:14px; color:var(--steel); margin-bottom:0; line-height:1.55;}
.numbered-item ul{margin-top:8px; padding-left:18px; list-style:disc; color:var(--steel); font-size:14px;}
.numbered-item li{margin-bottom:4px;}

@media (max-width:860px){
  .split-block{grid-template-columns:1fr; margin:36px 0;}
  .split-block.reverse .split-img,
  .split-block.reverse .split-text{order:initial;}
  .numbered-item{grid-template-columns:36px 1fr;}
}

/* ---------- Rechtstexte (Impressum / Datenschutz) ---------- */
.legal-section{background:var(--white); padding-bottom:40px;}
.legal-section .legal-wrap{max-width:760px; margin:0 auto;}
.legal-meta{font-family:var(--font-mono); font-size:12.5px; color:var(--steel-light); margin-bottom:32px;}
.legal-block{margin-bottom:30px;}
.legal-block h2{font-size:20px; margin-bottom:10px;}
.legal-block h3{font-family:var(--font-body); font-weight:700; font-size:15.5px; margin-bottom:8px; color:var(--ink);}
.legal-block p{color:var(--steel); font-size:14.5px; margin-bottom:12px; line-height:1.65;}
.legal-block a{color:var(--gold-dark); font-weight:600;}
.legal-block a:hover{text-decoration:underline;}

/* ---------- Gewerke-Übersichtsseite ---------- */
.gewerke-page-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:16px;
}
@media (max-width:860px){
  .gewerke-page-grid{grid-template-columns:repeat(2,1fr);}
}

/* ---------- Gewerk-Detailseite (Vorlage für alle Gewerke) ---------- */
.plain-list{margin:18px 0 28px; padding-left:0; list-style:none;}
.plain-list li{position:relative; padding-left:24px; margin-bottom:11px; color:var(--steel); font-size:15px; line-height:1.5;}
.plain-list li::before{content:"—"; position:absolute; left:0; color:var(--gold-dark); font-weight:700;}

.gewerk-kicker{
  font-family:var(--font-mono); font-size:13px; color:var(--gold-light); margin-bottom:6px; letter-spacing:.02em;
}
.page-header--xl .gewerk-kicker{
  font-family:var(--font-body);
  font-weight:600;
  font-size:clamp(16px,2vw,20px);
  color:var(--concrete-dark);
  line-height:1.5;
  letter-spacing:normal;
  max-width:600px;
  text-shadow:0 1px 10px rgba(0,0,0,.3);
}
.gewerk-inline-img{
  width:100%; aspect-ratio:16/8; object-fit:cover; border-radius:6px; margin:36px 0;
}

/* ---------- Gewerk-Detailseite: Preis + Formular als breite Kontakt-Sektion ---------- */
.gewerk-contact-wrap{
  max-width:1000px; margin:0 auto;
  display:grid; grid-template-columns:1fr 1.15fr; gap:40px; align-items:start;
}
@media (max-width:860px){
  .gewerk-contact-wrap{grid-template-columns:1fr;}
}

/* Erste Sektion: Text links, Preis-Karte rechts (sticky), wie im alten Layout */
/* Eigene Sektion für den gesamten Gewerke-Hauptinhalt (Text + Preis/Bild-Spalte) */
.gewerk-section{background:var(--white); padding:40px 24px;}
.gewerk-section.section-first{padding-top:60px;}
.gewerk-section p{margin-bottom:18px; color:var(--steel); font-size:16px; line-height:1.7;}
.gewerk-section h2{margin-top:8px;}
.gewerk-section .plain-list{margin:20px 0 30px;}
.gewerk-section .plain-list li{font-size:16px; color:var(--steel); line-height:1.7; margin-bottom:8px;}
/* Bewusst mit Float statt Grid (siehe gewerke-hero-grid): sonst wird die
   erste Zeile (kurzer Text) künstlich auf die Höhe der Preis-Karte aufgebläht. */
.gewerk-hero-grid{}
.gewerk-hero-grid::after{content:""; display:table; clear:both;}
.gewerk-hero-grid .gewerk-hero-text-1{float:left; width:63%;}
.gewerk-hero-grid .gewerk-hero-text-2{float:left; width:63%; clear:left;}
.gewerk-hero-grid .gewerk-price-aside{float:right; width:32%;}
.gewerk-price-aside{
  display:flex; flex-direction:column; gap:20px;
}
.gewerk-price-aside .gewerk-inline-img{
  width:100%; height:auto; border-radius:6px; margin:0; display:block;
}
@media (max-width:960px){
  .gewerk-hero-grid .gewerk-hero-text-1,
  .gewerk-hero-grid .gewerk-hero-text-2,
  .gewerk-hero-grid .gewerk-price-aside{float:none; width:auto;}
  .gewerk-hero-grid .gewerk-hero-text-2{margin-top:16px;}
  .gewerk-hero-grid .gewerk-price-aside{margin:16px 0;}
}

/* ---------- Breite Wechsel-Sektionen (Text 2/3 + Bild 1/3), z. B. Sicherheit ---------- */
.wide-band{padding:64px 24px;}
.wide-band--alt{background:var(--concrete);}
.wide-grid{
  display:grid; grid-template-columns:1fr 2fr; gap:56px; align-items:center;
  max-width:1180px; margin:0 auto;
}
.wide-grid.reverse{grid-template-columns:2fr 1fr;}
.wide-grid.reverse .wide-img{order:2;}
/* Gleichmäßige 1:1-Variante für Bilder mit wichtigen Inhalten über die volle Breite
   (z. B. Gedankenblasen, Wandtext) – kein starker Zuschnitt, Originalformat bleibt sichtbar */
.wide-grid.split-even{grid-template-columns:1fr 1fr;}
.wide-grid.split-even.reverse{grid-template-columns:1fr 1fr;}
.wide-grid.split-even .wide-img img{aspect-ratio:4/3; object-fit:contain; background:var(--concrete);}

/* Eigene Variante für die Gewerke-Übersicht: Text/Quote-Card/Text (3 Teile).
   Bewusst mit klassischem Float statt Grid gelöst: Bei Grid müssen sich
   Zeilenhöhen über beide Spalten hinweg abstimmen, wodurch die kurze linke
   Spalte künstlich auf die Höhe der Zitat-Karte aufgebläht wird. Floats
   kennen dieses Problem nicht: jede Spalte fließt unabhängig in ihrer
   eigenen Höhe. */
.gewerke-hero-grid{max-width:1180px; margin:0 auto;}
.gewerke-hero-grid::after{content:""; display:table; clear:both;}
.gewerke-hero-grid .gh-text-1{float:left; width:63%;}
.gewerke-hero-grid .gh-text-2{float:left; width:63%; clear:left;}
.gewerke-hero-grid .quote-card{float:right; width:32%;}
@media (max-width:860px){
  .gewerke-hero-grid .gh-text-1,
  .gewerke-hero-grid .gh-text-2,
  .gewerke-hero-grid .quote-card{float:none; width:auto;}
  .gewerke-hero-grid .gh-text-2{margin-top:16px;}
  .gewerke-hero-grid .quote-card{margin:16px auto;}
}
.wide-grid.reverse .wide-text{order:1;}
.wide-img{position:relative;}
.wide-img img{width:100%; aspect-ratio:4/5; object-fit:cover; border-radius:8px;}
.wide-text h2{margin-bottom:16px;}
.wide-text p{margin-bottom:16px; color:var(--steel); font-size:16px; line-height:1.7;}
.wide-text p:last-child{margin-bottom:0;}
@media (max-width:860px){
  .wide-grid, .wide-grid.reverse, .wide-grid.split-even, .wide-grid.split-even.reverse{grid-template-columns:1fr; gap:24px;}
  .wide-grid .wide-img, .wide-grid.reverse .wide-img{order:-1;}
  .wide-grid .wide-text, .wide-grid.reverse .wide-text{order:2;}
  .wide-grid.split-even .wide-img img{aspect-ratio:4/3; object-fit:contain; background:var(--concrete);}
  .wide-band{padding:44px 24px;}
}

/* CTA-Band (dunkler Vollflächen-Call-to-Action, wiederverwendbar) */
.cta-brand{
  background:#12262e; color:var(--white);
  padding:56px 24px; text-align:center;
}
.cta-brand p{
  font-family:var(--font-body); font-weight:700; font-size:22px; line-height:1.4;
  max-width:640px; margin:0 auto 24px;
}
.cta-brand .btn-primary{display:inline-block;}

/* Preis-Karte: großzügig, zentriert, einheitlich ausgerichtet */
.price-card{
  background:var(--ink); color:var(--white); border-radius:8px;
  padding:28px; position:relative; overflow:hidden;
  text-align:center; max-width:300px; margin:0 auto;
}
.price-card .label{
  font-family:var(--font-mono); color:var(--gold); font-size:16px; font-weight:700; letter-spacing:.04em;
  text-transform:uppercase; margin-bottom:14px; display:block;
}
.price-card .amount{
  font-family:var(--font-display); font-size:46px; color:var(--gold); margin-bottom:6px; line-height:1;
}
.price-card .amount small{font-family:var(--font-mono); font-size:15px; color:var(--steel-light); font-weight:500;}
.price-card .note-text{
  font-size:14.5px; color:var(--steel-light); line-height:1.7; margin-top:18px;
}
.price-card .cta-line{
  font-size:14.5px; color:var(--white); font-weight:600; margin-top:22px; margin-bottom:14px;
}
.price-card .btn-primary{width:100%;}

/* Kontaktformular-Karte (individuell pro Gewerk/Seite) */
.form-card{
  background:var(--white); border:1px solid var(--line); border-radius:6px; padding:32px;
  scroll-margin-top:112px;
}
@media (max-width:860px){
  .form-card{scroll-margin-top:76px;}
}
.form-card h3{font-family:var(--font-body); font-weight:700; font-size:18px; margin-bottom:6px; color:var(--ink);}
.form-card .form-sub{font-size:14px; color:var(--steel); margin-bottom:20px;}
.gform{display:flex; flex-direction:column; gap:14px;}
.gform label{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.04em; text-transform:uppercase;
  color:var(--steel); display:block; margin-bottom:5px;
}
.gform input, .gform select, .gform textarea{
  width:100%; border:1px solid var(--line); border-radius:3px; padding:11px 13px;
  font-family:var(--font-body); font-size:14.5px; color:var(--ink); background:var(--concrete);
}
.gform input:focus, .gform select:focus, .gform textarea:focus{
  outline:none; border-color:var(--gold-dark); background:var(--white);
}
.gform textarea{resize:vertical; min-height:80px;}
.gform .row2{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
.gform button{
  margin-top:8px; background:var(--gold); color:var(--ink); font-weight:700; border:none;
  padding:14px 22px; border-radius:3px; font-size:15px; cursor:pointer; font-family:var(--font-body);
}
.gform button:hover{background:var(--gold-dark); color:var(--white);}
.form-note{font-size:11.5px; color:var(--steel-light); margin-top:12px; line-height:1.5;}

/* ---------- Status-Popup "Freie Teams" (nur Startseite) ---------- */
.status-popup{
  position:fixed; left:20px; bottom:20px; z-index:200;
  max-width:320px; background:var(--white);
  border:3px solid #A6801A;
  border-radius:8px;
  box-shadow:0 18px 40px rgba(18,38,46,.22);
  padding:16px 40px 16px 16px;
  opacity:0; transform:translateY(16px);
  transition:opacity .5s ease, transform .5s ease;
  pointer-events:none;
  text-decoration:none; display:block; cursor:pointer;
}
.status-popup.is-visible{opacity:1; transform:translateY(0); pointer-events:auto;}
.status-popup .dot{
  display:inline-block; width:8px; height:8px; border-radius:50%;
  background:#4CAF6E; margin-right:7px; box-shadow:0 0 0 3px rgba(76,175,110,.18);
}
.status-popup .status-label{
  font-family:var(--font-mono); font-size:11px; letter-spacing:.04em; color:var(--steel-light);
  text-transform:uppercase;
}
.status-popup .status-text{
  font-family:var(--font-body); font-size:14.5px; font-weight:600; color:var(--ink);
  margin-top:6px; line-height:1.45;
}
.status-popup .status-close{
  position:absolute; top:10px; right:12px; background:none; border:none; cursor:pointer;
  font-size:16px; line-height:1; color:var(--steel-light); padding:4px;
}
.status-popup .status-close:hover{color:var(--ink);}
@media (max-width:640px){
  .status-popup{left:12px; right:12px; bottom:12px; max-width:none;}
}

/* ---------- Fachkräftemangel-Seite: neue Bausteine ---------- */

/* Große Statistik-Kacheln */
.stat-tiles{display:grid; grid-template-columns:repeat(3,1fr); gap:24px; margin:32px 0;}
.stat-tile{
  background:var(--white); border:1px solid var(--line); border-radius:8px;
  padding:32px 28px; text-align:center;
}
.stat-tile .big-num{
  font-family:var(--font-display); color:var(--gold-dark); line-height:1;
  font-size:clamp(38px,4.2vw,54px); display:block; margin-bottom:14px;
}
.stat-tile .stat-desc{font-size:15px; color:var(--ink); line-height:1.5; margin-bottom:10px;}
.stat-tile .stat-sub{font-size:13px; color:var(--steel); line-height:1.5;}
@media (max-width:860px){
  .stat-tiles{grid-template-columns:1fr;}
}

/* Große, zentrierte Hervorhebungssätze */
.fkm-emphasis{
  text-align:center; font-family:var(--font-body); font-weight:700;
  font-size:clamp(19px,2.2vw,25px); color:var(--ink); line-height:1.4;
  max-width:820px; margin:36px auto; padding:0 12px;
}
.fkm-emphasis.is-large{font-size:clamp(23px,2.8vw,30px);}
.fkm-source{text-align:center; font-size:12.5px; color:var(--steel-light); margin-top:8px;}

/* Vier Folgen-Karten */
.folgen-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px; margin:32px 0;}
.folgen-card{
  background:var(--concrete); border-radius:8px; padding:26px 24px;
  border-top:3px solid var(--gold);
}
.folgen-card .num-tag{font-family:var(--font-mono); font-size:13px; color:var(--gold-dark); font-weight:700; letter-spacing:.04em;}
.folgen-card h3{font-size:17px; margin:8px 0 10px; color:var(--ink);}
.folgen-card p{font-size:14.5px; color:var(--steel); line-height:1.6; margin-bottom:10px;}
.folgen-card .card-quote{font-weight:700; color:var(--ink); font-style:italic; font-size:14.5px;}
@media (max-width:760px){
  .folgen-grid{grid-template-columns:1fr;}
}

/* Dunkle Überleitungs-Sektion zu ARTHEMOS */
.fkm-dark-band{background:var(--ink); color:var(--white); padding:72px 24px;}
.fkm-dark-band .wrap{max-width:900px; margin:0 auto; text-align:center;}
.fkm-dark-band .eyebrow{color:var(--gold); display:block; margin-bottom:18px;}
.fkm-dark-band h2{
  font-size:clamp(28px,4vw,44px); color:var(--white); line-height:1.2; margin-bottom:18px;
}
.fkm-dark-band .sub{font-size:19px; color:var(--gold-light); font-weight:600; margin-bottom:24px;}
.fkm-dark-band p{font-size:16px; color:var(--concrete-dark); line-height:1.7; margin-bottom:16px; text-align:left;}
.fkm-dark-band .highlight-line{
  font-weight:700; color:var(--gold); font-size:19px; text-align:center; margin:28px 0; line-height:1.4;
}
.fkm-advantages{display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:36px;}
.fkm-advantage{
  background:rgba(255,255,255,.06); border:1px solid rgba(209,175,108,.3); border-radius:8px;
  padding:24px 18px; font-family:var(--font-mono); font-weight:700; font-size:14px;
  color:var(--gold-light); text-align:center; line-height:1.5;
}
@media (max-width:760px){
  .fkm-dark-band{padding:48px 24px;}
  .fkm-advantages{grid-template-columns:1fr;}
  .fkm-dark-band p{text-align:left;}
}

/* Sektion 6: bewusst andere Note (humorvoll) */
.fkm-band-alt{background:var(--concrete);}

/* ---------- KI-Bild-Kennzeichnung (Art. 50 EU AI Act, Pflicht seit 2.8.2026) ---------- */
.ai-img-wrap{position:relative;}
.ai-label{
  position:absolute; right:6px; bottom:6px; z-index:6;
  font-family:var(--font-mono); font-size:10px; letter-spacing:.02em;
  color:rgba(210,210,210,.85);
  background:rgba(0,0,0,.32);
  padding:2px 7px; border-radius:3px;
  pointer-events:none; line-height:1.4;
}
.page-header .ai-label{right:14px; bottom:12px;}
.gewerke-tile .ai-label{font-size:8px; padding:1px 5px;}
.gform textarea.is-prefilled{
  color:#c0392b;
  animation:prefillPulse 0.7s ease-in-out 3;
}
@keyframes prefillPulse{
  0%, 100%{opacity:1;}
  50%{opacity:.35;}
}
@media (prefers-reduced-motion:reduce){
  .gform textarea.is-prefilled{animation:none;}
}
.form-message{
  display:none; margin-top:16px; padding:14px 16px; border-radius:4px;
  font-size:13.5px; line-height:1.6;
}
.form-message.is-visible{display:block;}
.form-message.is-success{background:#eaf6ec; border:1px solid #bfe3c4; color:#1e5c2a;}
.form-message.is-error{background:#fbeaea; border:1px solid #eabfbf; color:#7a1f1f;}
.form-message strong{display:block; margin-bottom:4px;}
.hp-field{position:absolute; left:-9999px; top:-9999px; opacity:0; height:0; width:0; overflow:hidden;}
.gform .consent{
  display:flex; align-items:flex-start; gap:9px; margin-top:4px;
}
.gform .consent input{width:auto; margin-top:3px;}
.gform .consent label{
  font-family:var(--font-body); text-transform:none; letter-spacing:normal;
  font-size:12.5px; color:var(--steel); font-weight:400; margin-bottom:0; line-height:1.5;
}
.gform .consent a{color:var(--gold-dark); font-weight:600;}
.gform button:disabled{opacity:.6; cursor:wait;}
@media (max-width:480px){
  .gform .row2{grid-template-columns:1fr;}
}

/* ---------- contact ---------- */
.contact{background:var(--concrete-dark);}
.contact-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line);
  border:1px solid var(--line);
}
.contact-panel{background:var(--white); padding:40px;}
.contact-panel h3{font-family:var(--font-body); font-size:18px; margin-bottom:6px;}
.contact-panel p{color:var(--steel); font-size:14.5px; margin-bottom:22px;}
.contact-list{margin-top:6px;}
.contact-list li{
  padding:14px 0; border-top:1px solid var(--line);
  display:flex; justify-content:space-between; align-items:center; font-size:15px;
}
.contact-list li:first-child{border-top:none;}
.contact-list span.label{font-family:var(--font-mono); font-size:12px; color:var(--gold-dark); letter-spacing:.05em;}
.contact-panel .btn-primary{margin-top:24px;}
.address-panel{background:var(--ink); color:var(--white);}
.address-panel .label{font-family:var(--font-mono); color:var(--gold); font-size:12px; letter-spacing:.05em; margin-bottom:4px; display:block;}
.address-panel .block{margin-bottom:22px; font-size:15px;}

/* ---------- footer ---------- */
footer{
  background:var(--ink); color:var(--concrete-dark); padding:48px 24px 24px;
  font-size:14px; border-top:4px solid var(--gold);
}
.footer-grid{
  max-width:1180px; margin:0 auto; display:grid; grid-template-columns:1.2fr 1fr 1fr; gap:40px;
  padding-bottom:32px; border-bottom:1px solid rgba(209,175,108,.18);
}
.footer-logo-box{
  display:inline-block; background:var(--white); padding:10px 16px;
  border-radius:4px; margin-bottom:14px;
}
.footer-logo{height:34px; width:auto; display:block;}
.footer-social{display:flex; gap:10px; margin-top:18px;}
.footer-social a{
  width:36px; height:36px; border-radius:50%;
  background:rgba(209,175,108,.14);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); transition:background .15s ease, color .15s ease;
}
.footer-social a:hover{background:var(--gold); color:var(--ink);}
.footer-social svg{width:17px; height:17px;}
.footer-grid h4{
  font-family:var(--font-mono); font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:var(--gold); margin-bottom:14px;
}
.footer-grid li{margin-bottom:9px;}
.footer-grid a:hover{color:var(--gold-light);}
.footer-contact li{line-height:1.6;}
.footer-contact strong{color:var(--white); font-weight:700;}
.footer-bottom{
  max-width:1180px; margin:0 auto; display:flex; justify-content:space-between;
  padding-top:20px; font-size:12.5px; color:var(--steel-light); flex-wrap:wrap; gap:10px;
}
.footer-bottom a:hover{color:var(--gold);}

@media (max-width:860px){
  .topbar{display:none;}
  .nav-links{
    display:none;
    position:absolute; top:100%; left:0; right:0;
    background:var(--white);
    flex-direction:column; align-items:stretch;
    padding:8px 24px 20px;
    border-top:1px solid var(--line);
    box-shadow:0 16px 28px rgba(18,38,46,.10);
    z-index:60;
    max-height:calc(100vh - 70px);
    overflow-y:auto;
    -webkit-overflow-scrolling:touch;
  }
  .nav-links.is-open{display:flex;}
  .nav-links > li{width:100%;}
  .nav-links > li > a{padding:13px 4px; display:block;}
  .nav-links .sub{
    display:block; position:static; box-shadow:none; border:none;
    padding:0 0 6px 14px; min-width:0;
  }
  .nav-links .sub a{padding:9px 4px; font-size:13.5px;}
  .mega-menu{
    display:block !important; position:static; width:auto; box-shadow:none; border:none;
    padding:0 0 8px 14px; transform:none; left:auto; top:auto;
  }
  .has-mega > a::after{
    content:"";
    display:inline-block; width:8px; height:8px;
    border-right:2px solid currentColor; border-bottom:2px solid currentColor;
    transform:rotate(45deg); margin-left:8px; opacity:.6;
  }
  .mega-grid{grid-template-columns:1fr; gap:0;}
  .mega-item{padding:8px 4px; font-size:13.5px;}
  .mega-item svg{width:18px; height:18px;}
  .mega-all{margin-top:6px; padding-top:8px; text-align:left;}
  .nav-links a[aria-current="page"]:not(.mega-item){position:relative; padding-left:16px;}
  .nav-links a[aria-current="page"]:not(.mega-item)::before{
    content:"●";
    position:absolute; left:0; top:50%; transform:translateY(-50%);
    color:var(--gold-dark); font-size:9px;
  }
  header.site nav.main{position:relative;}
  .burger{
    display:flex; align-items:center; justify-content:center;
    width:42px; height:42px; flex:0 0 auto;
    background:none; border:1px solid var(--line); border-radius:4px;
    cursor:pointer; font-size:20px; color:var(--ink); line-height:1;
  }
  .cta-small{display:none;}
  .mobile-cta{display:block; order:-1; margin-bottom:8px;}
  .mobile-call{display:block; order:-1; margin-bottom:8px;}
  .mobile-call a{
    display:block; text-align:center; background:var(--gold-dark); color:var(--white);
    font-weight:700; padding:13px; border-radius:8px; box-shadow:0 4px 10px rgba(18,38,46,.18);
  }
  .mega-all{display:none;}
  .mobile-legal{
    display:block; margin-top:10px; padding-top:10px; border-top:1px solid var(--line);
  }
  .mobile-legal a{
    display:block; padding:9px 4px; font-size:13.5px; color:var(--steel); font-weight:400;
  }
  .mobile-cta a{
    display:block; text-align:center; background:var(--gold-dark); color:var(--white);
    font-weight:700; padding:13px; border-radius:8px; box-shadow:0 4px 10px rgba(18,38,46,.18);
  }
  .hero-grid{grid-template-columns:1fr;}
  .stat-strip{grid-template-columns:repeat(2,1fr);}
  .intro-grid{}
  .intro-grid .intro-text-1,
  .intro-grid .intro-text-2,
  .intro-grid .quote-card{float:none; width:auto;}
  .intro-grid .intro-text-2{margin-top:16px;}
  .intro-grid .quote-card{margin:16px auto;}
  .benefit-grid{grid-template-columns:1fr;}
  .gewerke-grid{grid-template-columns:repeat(2,1fr);}
  .contact-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr; gap:28px;}
  .slider-track .ticket{width:78vw;}
}
@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto;}
  *{transition:none !important;}
}
