/* ===== Lehmann Bremen CSS CONFIG ===== */
:root{
  --accent:#57a7b2;
  --radius:14px;
  --shadow-sm:0 1px 2px rgba(0,0,0,.08);
  --shadow-md:0 8px 24px rgba(0,0,0,.16);
  --shadow-lg:0 24px 60px rgba(0,0,0,.28);

  --bg:#ffffff;
  --surface:#ffffff;
  --text:#101418;
  --muted:#6d7682;
  --border:#e6e8ec;

  --bg-dark:#0e1116;
  --surface-dark:#141922;
  --text-dark:#eef1f5;
  --muted-dark:#9aa3b2;
  --border-dark:#252b38;

  --cc-overlay-opacity:.95;
  --cc-radius:18px;

  --hero-height:78vh;
  --hero-height-mobile:58vh;

  --appbar-height:76px;
  --nav-font-size:1.08rem;
  --nav-item-x:1.05rem;
  --nav-item-y:.78rem;
  --nav-item-radius:14px;
  --nav-gap:.8rem;

  --grid-gap:1.8rem;
  --gallery-img-height:300px;
  --card-padding:1.1rem;
  --container-pad:1rem;
  --container-pad-mobile:1.15rem;
  --panel:#f2f7f8;
  --lehmann-teal:var(--accent);
}

html[data-theme="dark"]{
  --bg:var(--bg-dark);
  --surface:var(--surface-dark);
  --text:var(--text-dark);
  --muted:var(--muted-dark);
  --border:var(--border-dark);
}

*{box-sizing:border-box}

html{
  scroll-behavior:smooth;
  max-width:100%;
  overflow-x:hidden;
}

body{
  margin:0;
  max-width:100%;
  overflow-x:hidden;
  background:var(--bg);
  color:var(--text);
  font-family:"Poppins","Roboto",system-ui,-apple-system,"Segoe UI",Arial,sans-serif;
  line-height:1.55;
}

html.nav-open,
html.nav-open body{
  overflow:hidden;
}

img{
  max-width:100%;
  display:block;
  border-radius:var(--radius);
}

a{
  color:var(--accent);
  text-decoration:none;
}

a:hover{
  text-decoration:underline;
}

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 var(--container-pad);
}

/* Utils */
.d-flex{display:flex}
.flex-wrap{flex-wrap:wrap}
.justify-between{justify-content:space-between}
.align-center{align-items:center}

.mt-2{margin-top:.5rem}
.mt-3{margin-top:1rem}
.mt-4{margin-top:1.5rem}
.mt-6{margin-top:2rem}
.mt-8{margin-top:3rem}
.mt-10{margin-top:5rem}

.mb-2{margin-bottom:.5rem}
.mb-3{margin-bottom:1rem}
.mb-4{margin-bottom:1.5rem}
.mb-6{margin-bottom:2rem}
.mb-10{margin-bottom:5rem}

.p-2{padding:.5rem}
.p-3{padding:1rem}
.p-4{padding:1.5rem}
.p-6{padding:2rem}

.rounded{border-radius:var(--radius)}
.text-center{text-align:center}
.big-spacer{height:160px}

/* Grid */
.row{
  display:flex;
  flex-wrap:wrap;
  margin-left:-.75rem;
  margin-right:-.75rem;
}

[class^="col-"]{
  padding-left:.75rem;
  padding-right:.75rem;
}

.col-12{flex:0 0 100%;max-width:100%}
.col-6{flex:0 0 50%;max-width:50%}
.col-8{flex:0 0 66.666%;max-width:66.666%}
.col-4{flex:0 0 33.333%;max-width:33.333%}

@media (max-width:992px){
  .col-lg-6,
  .col-lg-4{
    flex:0 0 100%;
    max-width:100%;
  }
}

@media (max-width:768px){
  .col-md-12,
  .col-6{
    flex:0 0 100%;
    max-width:100%;
  }
}

@media (max-width:768px){
  .container{
    padding:0 var(--container-pad-mobile);
  }

  .section{
    padding:1.7rem 0;
  }
}

/* Headings */
h1,h2,h3{
  line-height:1.2;
  margin:0 0 .5rem;
}

.section-title{
  position:relative;
  display:inline-block;
  padding-bottom:.5rem;
  margin-bottom:1rem;
}

.section-title::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:3px;
  background:var(--accent);
  border-radius:3px;
}

.lead{
  color:var(--muted);
}

.section{
  padding:2rem 0;
}

.header-spacer{
  height:0;
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.6rem;
  padding:1rem 1.35rem;
  border-radius:calc(var(--radius) - 2px);
  border:1px solid transparent;
  font-weight:800;
  cursor:pointer;
  text-decoration:none;
  transition:.15s;
  box-shadow:var(--shadow-sm);
}

.btn-primary{
  background:var(--accent);
  color:#fff;
}

.btn-primary:hover{
  filter:brightness(.96);
}

.btn-outline{
  background:transparent;
  border-color:var(--accent);
  color:var(--accent);
}

.btn-outline:hover{
  background:rgba(0,0,0,.035);
}

.btn:focus{
  outline:2px solid rgba(0,0,0,0);
  box-shadow:0 0 0 4px rgba(153,153,153,.18);
}

/* AppBar */
.appbar{
  position:sticky;
  top:0;
  z-index:1000;
  height:var(--appbar-height);
  display:flex;
  align-items:center;
  background:rgba(255,255,255,.92);
  border-bottom:1px solid rgba(0,0,0,.05);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 2px 0 rgba(0,0,0,.04);
  transition:box-shadow .2s ease, background .2s ease;
}

html[data-theme="dark"] .appbar{
  background:rgba(20,25,34,.92);
}

.appbar.scrolled{
  box-shadow:0 10px 28px rgba(16,20,24,.10);
}

.appbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:var(--appbar-height);
}

.appbar .brand{
  display:flex;
  align-items:center;
  gap:.75rem;
  min-width:0;
}

.appbar img.logo{
  height:64px;
  width:auto;
  object-fit:contain;
  border-radius:6px;
}

.appbar .toggle,
.appbar .menu a,
.appbar .menu button.linklike{
  -webkit-tap-highlight-color:transparent;
  touch-action:manipulation;
}

.appbar .menu{
  display:flex;
  align-items:center;
  gap:var(--nav-gap);
  position:relative;
}

.appbar .menu a,
.appbar .menu button.linklike{
  appearance:none;
  background:transparent;
  border:none;
  color:var(--text);
  font-size:var(--nav-font-size);
  letter-spacing:.2px;
  padding:var(--nav-item-y) var(--nav-item-x);
  border-radius:var(--nav-item-radius);
  position:relative;
  line-height:1;
  white-space:nowrap;
  cursor:pointer;
}

.appbar .menu > a{
  font-weight:600;
}

.appbar .menu > .dropdown > .linklike{
  font-weight:800;
}

.appbar .menu a:hover,
.appbar .menu button.linklike:hover{
  background:rgba(0,0,0,.04);
  text-decoration:none;
}

.appbar .menu a.active{
  background:var(--accent);
  color:#fff;
  box-shadow:0 6px 16px rgba(153,153,153,.35);
}

.appbar .menu a.active::after{
  content:"";
  position:absolute;
  left:14px;
  right:14px;
  bottom:6px;
  height:3px;
  background:rgba(255,255,255,.9);
  border-radius:2px;
}

/* Dropdown */
.appbar .dropdown{
  position:relative;
}

.appbar .dropdown > .linklike{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
}

.appbar .dropdown > .linklike::after{
  content:"▾";
  font-size:.85rem;
  transition:transform .18s ease;
}

.appbar .dropdown.open > .linklike::after{
  transform:rotate(180deg);
}

.appbar .dropdown-menu{
  position:absolute;
  top:calc(100% + .4rem);
  right:0;
  min-width:240px;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:16px;
  box-shadow:var(--shadow-lg);
  padding:.6rem;
  display:none;
  z-index:1100;
}

.appbar .dropdown.open > .dropdown-menu{
  display:block;
}

.appbar .dropdown-menu a{
  display:block;
  margin:.25rem 0;
  padding:.75rem .85rem;
  border-radius:10px;
  color:var(--text);
  font-weight:700;
}

.appbar .dropdown-menu a:hover{
  background:rgba(0,0,0,.05);
}

/* Mobile Menu */
.appbar .toggle{
  display:none;
}

@media (max-width:992px){
  .appbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    width:100%;
    z-index:1400;
  }

  body{
    padding-top:var(--appbar-height);
  }

  .header-spacer{
    display:none;
  }

  .appbar .toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:.5rem;
    background:transparent;
    border:1px solid var(--border);
    color:var(--text);
    padding:.7rem .95rem;
    border-radius:12px;
    font-weight:800;
    cursor:pointer;
  }

  .appbar .toggle.is-open{
    background:rgba(0,0,0,.05);
  }

  .appbar .menu{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:.35rem;
    position:fixed;
    top:calc(var(--appbar-height) + .35rem);
    left:1rem;
    right:1rem;
    max-width:calc(100vw - 2rem);
    background:var(--surface);
    border:1px solid var(--border);
    border-radius:18px;
    box-shadow:var(--shadow-lg);
    padding:.85rem;
    z-index:1401;
    max-height:calc(100dvh - var(--appbar-height) - 1rem);
    overflow-y:auto;
    overflow-x:hidden;
    overscroll-behavior:contain;
    -webkit-overflow-scrolling:touch;
  }

  .appbar .menu.open{
    display:flex;
  }

  .appbar .menu a,
  .appbar .menu button.linklike{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:1rem 1rem;
    line-height:1.25;
    white-space:normal;
    text-align:left;
  }

  .appbar .menu a.active::after{
    display:none;
  }

  .appbar .dropdown{
    width:100%;
  }

  .appbar .dropdown-menu{
    position:static;
    top:auto;
    right:auto;
    min-width:0;
    margin-top:.45rem;
    border-radius:12px;
    box-shadow:none;
    padding:.45rem;
    background:rgba(0,0,0,.02);
  }

  html[data-theme="dark"] .appbar .dropdown-menu{
    background:rgba(255,255,255,.03);
  }

  .appbar .dropdown-menu a{
    padding:.85rem .85rem;
  }
}

/* Cards */
.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:0 14px 34px rgba(16,20,24,.06);
  overflow:hidden;
}

.card-body{
  padding:var(--card-padding);
}

.card-title{
  font-weight:800;
  margin-bottom:.25rem;
}

.card-text{
  color:var(--muted);
  font-size:1.12rem;
}

/* Hero / Carousel */
.hero-full{
  position:relative;
  left:auto;
  right:auto;
  margin-left:0;
  margin-right:0;
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.hero-full .carousel{
  position:relative;
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.hero-full .carousel-track{
  display:flex;
  width:100%;
  max-width:100%;
  height:var(--hero-height);
  transition:transform .55s ease;
  will-change:transform;
  touch-action:pan-y;
}

@media (max-width:768px){
  .hero-full .carousel-track{
    height:var(--hero-height-mobile);
  }
}

.hero-full .carousel-slide{
  min-width:100%;
  width:100%;
  max-width:100%;
  position:relative;
}

.hero-full .carousel-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.70);
  border-radius:0;
}

.hero-full .overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:2.2rem;
  z-index:2;
  pointer-events:none;
  text-shadow:
    0 5px 22px rgba(0,0,0,.75),
    0 2px 10px rgba(0,0,0,.60);
  filter:drop-shadow(0 2px 10px rgba(0,0,0,.25));
}

.hero-full .overlay h1{
  font-weight:900;
  font-size:clamp(2.3rem,5.5vw,4.7rem);
}

.hero-full .overlay p{
  opacity:.98;
  font-size:clamp(1.2rem,2.4vw,1.9rem);
  margin-top:.45rem;
}

.carousel-nav{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 1rem;
  z-index:3;
  pointer-events:none;
}

.carousel-btn{
  pointer-events:auto;
  appearance:none;
  border:none;
  width:46px;
  height:46px;
  border-radius:999px;
  background:rgba(255,255,255,.18);
  color:#fff;
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
  backdrop-filter:blur(10px);
  -webkit-backdrop-filter:blur(10px);
}

.carousel-btn:hover{
  background:rgba(255,255,255,.28);
}

.carousel-dots{
  position:absolute;
  left:50%;
  bottom:1rem;
  transform:translateX(-50%);
  display:flex;
  gap:.5rem;
  z-index:3;
}

.carousel-dot{
  appearance:none;
  width:11px;
  height:11px;
  border-radius:999px;
  border:none;
  background:rgba(255,255,255,.45);
  cursor:pointer;
}

.carousel-dot.active{
  background:#fff;
}

/* Split */
.split{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:1.6rem;
}

@media (max-width:992px){
  .split{
    grid-template-columns:1fr;
  }
}

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:var(--grid-gap);
}

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

@media (max-width:640px){
  .gallery{
    grid-template-columns:1fr;
  }
}

.gallery .item img{
  width:100%;
  height:var(--gallery-img-height);
  object-fit:cover;
}

.gallery .caption{
  padding:.7rem;
  font-size:1.06rem;
  color:var(--muted);
}

/* Logo grids */
.logo-grid .item .card{
  height:100%;
}

.logo-grid .logo-box{
  display:flex;
  align-items:center;
  justify-content:center;
  height:140px;
  padding:1rem 1.25rem;
  overflow:hidden;
}

.logo-grid .logo-box img{
  display:block;
  width:auto;
  height:auto;
  max-width:82%;
  max-height:72px;
  object-fit:contain;
  border-radius:0;
}

@media (max-width:768px){
  .logo-grid .logo-box{
    height:120px;
    padding:.85rem 1rem;
  }

  .logo-grid .logo-box img{
    max-width:84%;
    max-height:60px;
  }
}

/* Reveal */
.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .6s ease, transform .6s ease;
}

.reveal.visible{
  opacity:1;
  transform:none;
}

@media (prefers-reduced-motion: reduce){
  html{
    scroll-behavior:auto;
  }

  .reveal{
    opacity:1;
    transform:none;
    transition:none;
  }

  .hero-full .carousel-track{
    transition:none;
  }
}

/* Footer */
footer{
  background:#14161a;
  color:#c8cbd2;
  padding:2.2rem 0;
  margin-top:3rem;
}

footer a{
  color:#c8cbd2;
  text-decoration:underline;
}

footer .small{
  opacity:.85;
  font-size:.9rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr;
  gap:1.5rem;
}

@media (max-width:768px){
  .footer-grid{
    grid-template-columns:1fr;
  }
}

/* Cookie Consent */
.cc-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,var(--cc-overlay-opacity));
  z-index:9998;
  display:none;
}

.cc-modal{
  position:fixed;
  z-index:9999;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  max-width:980px;
  width:92%;
  max-height:85vh;
  overflow:auto;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--cc-radius);
  box-shadow:var(--shadow-lg);
  display:none;
}

.cc-header{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  border-bottom:1px solid var(--border);
  padding:1rem 1.25rem;
}

.cc-title{
  font-size:1.55rem;
  font-weight:900;
}

.cc-body{
  display:grid;
  grid-template-columns:1fr 1fr 1fr;
  gap:1rem;
  padding:1.25rem;
}

@media (max-width:992px){
  .cc-body{
    grid-template-columns:1fr;
  }
}

.cc-entry{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:12px;
  padding:1rem;
}

.cc-entry h3{
  margin:0 0 .4rem;
}

.cc-entry p{
  margin:.35rem 0;
}

.cc-entry details{
  margin-top:.4rem;
}

.cc-footer{
  display:flex;
  justify-content:space-between;
  gap:1rem;
  border-top:1px solid var(--border);
  padding:1rem 1.25rem;
}

.cc-switch{
  display:flex;
  align-items:center;
  gap:.75rem;
  font-weight:700;
  justify-content:center;
}

.cc-toggle{
  appearance:none;
  width:56px;
  height:32px;
  border-radius:999px;
  position:relative;
  outline:none;
  cursor:pointer;
  transition:background .2s ease;
  border:2px solid transparent;
}

.cc-toggle::before{
  content:"";
  position:absolute;
  top:2px;
  left:2px;
  width:26px;
  height:26px;
  border-radius:50%;
  background:#fff;
  transition:left .2s ease;
}

.cc-toggle[data-state="off"]{
  background:#A55A3C;
}

.cc-toggle[data-state="on"]{
  background:#2E5949;
}

.cc-toggle[data-state="on"]::before{
  left:28px;
}

/* Formular / Landing Page */
.lp-hero{
  padding:2.2rem 0;
}

.lp-hero-logo-card{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow:var(--shadow-md);
  padding:1rem 1.25rem;
  margin:0 0 1.15rem;
}

.lp-hero-img{
  display:block;
  width:min(100%, 527px);
  height:auto;
  border-radius:10px;
}

.lp-hero .headline{
  margin-top:.2rem;
  margin-bottom:.35rem;
}

.lp-hero .sub{
  font-weight:800;
  margin:0 0 .75rem;
}

.lp-hero .copy{
  color:var(--muted);
  margin:0;
}

.lp-card{
  height:100%;
}

.lp-card .card-body{
  height:100%;
  display:flex;
  flex-direction:column;
}

.lp-card .card-body .actions{
  margin-top:auto;
}

.lp-form label{
  display:block;
  font-weight:800;
  margin:0 0 .35rem;
}

.lp-form .field{
  width:100%;
  padding:.75rem .85rem;
  border:1px solid var(--border);
  border-radius:10px;
  background:var(--surface);
  color:var(--text);
  outline:none;
}

.lp-form .field:focus{
  border-color:var(--lehmann-teal);
  box-shadow:0 0 0 3px rgba(0,0,0,.06);
}

.lp-form textarea.field{
  min-height:140px;
  resize:vertical;
}

.lp-form .hint{
  color:var(--muted);
  font-size:.95rem;
  margin:.35rem 0 0;
}

.lp-form input[type="checkbox"]{
  accent-color:var(--lehmann-teal);
}

.lp-form .btn.btn-outline{
  border-color:var(--lehmann-teal);
  color:var(--lehmann-teal);
}

.lp-form .btn.btn-outline:hover,
.lp-form .btn.btn-outline:focus{
  background:var(--lehmann-teal);
  color:#fff;
}

.check-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:.6rem .8rem;
  padding:.65rem .7rem;
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--surface);
}

@media (max-width:520px){
  .check-grid{
    grid-template-columns:1fr;
  }
}

.check-item{
  display:flex;
  align-items:center;
  gap:.55rem;
  margin:0;
  font-weight:700;
  cursor:pointer;
  user-select:none;
}

.check-item input{
  margin:0;
}

.benefit{
  height:100%;
}

.benefit-title{
  display:flex;
  align-items:center;
  gap:.65rem;
  margin-bottom:.25rem;
}

.benefit-icon{
  display:inline-flex;
  width:26px;
  height:26px;
  color:var(--lehmann-teal);
  flex:0 0 auto;
}

.benefit-icon svg{
  width:100%;
  height:100%;
  display:block;
}

.benefit .card-title{
  margin-bottom:.25rem;
}

#formMsg{
  display:none;
  border:1px solid var(--border);
  padding:.75rem 1rem;
  border-radius:10px;
  margin-bottom:1rem;
}

#formMsg.ok{
  background:var(--panel);
}

#formMsg.err{
  background:#fff3cd;
}

@media (max-width:768px){
  .lp-hero{
    padding:1.6rem 0;
  }
}

/* FAQ */
.faq details{
  border:1px solid var(--border);
  border-radius:12px;
  background:var(--surface);
  padding:.9rem 1rem;
  box-shadow:0 8px 20px rgba(16,20,24,.05);
}

.faq details + details{
  margin-top:.75rem;
}

.faq summary{
  cursor:pointer;
  font-weight:900;
  list-style:none;
}

.faq summary::-webkit-details-marker{
  display:none;
}

.faq summary:after{
  content:"+";
  float:right;
  opacity:.7;
}

.faq details[open] summary:after{
  content:"–";
}

.faq details[open]{
  box-shadow:0 12px 28px rgba(16,20,24,.08);
}

/* sksdesign © 2026 */
