/* === Tokens === */
:root{
  --brand-brown:#6D5D50;
  --text-primary:#2D241B;
  --glass-bg: rgba(255,255,255,0);
  --glass-stroke: rgba(255,255,255,.28);
  --shadow-md: 0 8px 24px rgba(0,0,0,.12);
  --shadow-lg: 0 12px 32px rgba(0,0,0,.16);
  --container: 1280px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text-primary);background:#fff}

/* Menu inside hero, bounded by container */
.menu-wrap{position:absolute; left:0; right:0; top:24px; z-index:40;}
.glass-bar{position:relative;}
.glass-bar .bar-inner{
  max-width: var(--container); margin:0 auto;
  display:flex; align-items:center; justify-content:space-between;
  height:70px; padding:0 20px;
  backdrop-filter: blur(14px);
  background: var(--glass-bg);
  border:1px solid var(--glass-stroke);
  border-radius:30px; box-shadow: var(--shadow-md);
}
.brand img{display:block; height:70px}
.socials{display:flex; gap:10px}
.soc{position:relative; width:40px; height:40px; display:inline-flex; align-items:center; justify-content:center; border-radius:50%; text-decoration:none; outline: none;}
.soc img{width:30px;height:30px; pointer-events:none; filter: brightness(0) invert(1);} /* force white */
.soc .soc__bg{position:absolute; inset:0; border-radius:50%; background:transparent; transition:.15s ease}
.soc:hover .soc__bg, .soc:focus-visible .soc__bg{background: rgba(255,255,255,.14)}
.soc:focus-visible{outline:2px solid var(--brand-brown); outline-offset:2px}

/* Hero */
.hero{position:relative; min-height: min(88vh, 860px); display:flex; align-items:stretch; overflow:hidden}
.hero .hero__bg{
  position:absolute; inset:0; background-image: url('assets/bg-desktop.webp');
  background-size:cover; background-position:center;
}
.hero .overlay{position:absolute; inset:0; background: linear-gradient(0deg, rgba(255,255,255,.32), rgba(255,255,255,.32));}
.container{position:relative; max-width:var(--container); margin:0 auto; padding:0 24px; width:100%}
.hero__grid{display:grid; grid-template-columns: repeat(12, 1fr); gap:24px; align-items:start; padding-top:160px; padding-bottom:64px}
.left{grid-column: 1 / span 7}
/* Price card lowered and with reference-like fill */
.price-card{grid-column: 9 / span 4; align-self:start; margin-top:40px;
  background: linear-gradient(180deg, rgba(109,93,80,.34), rgba(109,93,80,.34));
  backdrop-filter: blur(16px);
  border:1px solid rgba(109, 93, 80, .34);
  border-radius:24px; padding:24px;
  box-shadow: 0 8px 24px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.3);
}
.h1{font-weight:600; font-size:50px; line-height:1.12; margin:0; color:#2D241B}
.bullets{list-style:none; margin:24px 0 0; padding:0; display:grid; gap:10px}
.bullets li{display:flex; align-items:flex-start; gap:12px; font-size:18px; line-height:1.5}
.bullets img{width:20px; height:20px; margin-top:2px}
.btn-wrap{display:flex; align-items:center; gap:0px; margin-top:24px}
.btn-main{display:inline-flex; align-items:center; justify-content:center; height:56px; padding:0 24px; background: var(--brand-brown); color:#fff; text-decoration:none; border-radius:999px; font-weight:none; font-size:18px; box-shadow: var(--shadow-md);}
.btn-circle{display:inline-flex; align-items:center; justify-content:center; width:56px; height:56px; border-radius:50%; background: var(--brand-brown); box-shadow: var(--shadow-md);}
.btn-circle img{width:24px; height:24px; filter: brightness(0) invert(1);}
.btn-main:hover,.btn-circle:hover{transform: translateY(-1px); box-shadow: var(--shadow-lg)}
.btn-main:focus-visible,.btn-circle:focus-visible{outline:2px solid var(--brand-brown); outline-offset:3px}

.price-card .label{font-size:16px; font-weight:700; letter-spacing:.04em; color:#2D241B; text-shadow:0 1px 4px rgba(0,0,0,.35)}
.price-card .value{font-size:56px; font-weight:700; color:#fff; text-shadow: 0 2px 8px rgba(0,0,0,.35); line-height:1.05; margin-top:6px}
.price-card .value .m2{font-size:.6em; vertical-align: super}
.price-card .desc{margin-top:8px; font-size:15px; text-transform:uppercase; color:#fff; text-shadow: 0 1px 5px rgba(0,0,0,.35); letter-spacing:.04em}
.price-card .divider{border: none; height:1px; background: rgba(255,255,255,.45); margin:18px 0}
.price-card .discount{font-size:44px; font-weight:700; color:#fff; text-shadow: 0 2px 8px rgba(0,0,0,.35); line-height:1.1}
.price-card .note{font-size:14px; text-transform:uppercase; color:#fff; letter-spacing:.04em; text-shadow: 0 1px 4px rgba(0,0,0,.35)}

/* Accessibility helpers */
.sr-only{position:absolute; width:1px; height:1px; margin:-1px; border:0; padding:0; white-space:nowrap; clip-path: inset(100%); clip: rect(0 0 0 0); overflow:hidden}

/* Responsive */
@media (max-width: 1280px){
  .h1{font-weight:600; font-size:50px; line-height:1.12; margin:0}
}
@media (max-width: 1024px){
  .container{padding:0 20px}
  .hero__grid{grid-template-columns: repeat(12, 1fr); gap:20px; padding-top:120px}
  .left{grid-column: 1 / span 8}
  .price-card{grid-column: 9 / span 4}
  .h1{font-weight:600; font-size:50px; line-height:1.12; margin:0}
}
@media (max-width: 768px){
  .brand img{height:55px}
  .glass-bar .bar-inner{height:60px}
  .hero{min-height: 740px}
  .hero .hero__bg{background-image: url('assets/bg-mobile.webp')}
  .container{padding:0 20px;margin-top:-100px}
  .hero__grid{grid-template-columns: repeat(4, 1fr); gap:16px; padding-top:250px; padding-bottom:32px}
  .left{grid-column: 1 / span 4}
  .price-card{grid-column: 1 / span 4; margin-top:12px}
  .h1{font-weight:600; font-size:30px; line-height:1.12; margin:0}
  .bullets{gap:8px}
  .bullets li{font-size:16px}
  .btn-wrap{margin-top:20px}
  @media (max-width:768px){
    .btn-wrap{gap:0px}
    .btn-main{flex:1 1 auto; height:52px; padding:0 18px; font-size:16.5px}
    .btn-circle{width:52px; height:52px}
    .btn-circle img{width:22px; height:22px}
  }
  .price-card{padding:18px; border-radius:18px}
  .price-card .label{font-size:14px}
  .price-card .value{font-size:42px}
  .price-card .desc{font-size:12.5px}
  .price-card .discount{font-size:36px}
  .price-card .note{font-size:12.5px}
}
@media (max-width: 360px){
  .h1{font-weight:600; font-size:50px; line-height:1.12; margin:0}
  .price-card .value{font-size:38px}
}


/* Sticky topbar aligned to container */
.topbar{
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}
.topbar .bar-inner{
  margin-top: max(12px, env(safe-area-inset-top));
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  display:flex; align-items:center; justify-content:space-between;
  height:70px; padding:0 20px;
  backdrop-filter: blur(14px);
  background: linear-gradient(180deg, rgba(109, 93, 80, .34), rgba(109, 93, 80, .34));
  border:1px solid rgba(109, 93, 80, .34);
  border-radius:30px; box-shadow: var(--shadow-md);
}
@media (max-width: 768px){
  .topbar .bar-inner{ height:60px; margin-top: max(8px, env(safe-area-inset-top)); }
}

/* Hide original in-hero menu to avoid duplicate */
.menu-wrap{ display:none !important; }

/* Ensure icons are white */
.soc img{ width:30px; height:30px; filter: brightness(0) invert(1); pointer-events:none; }

/* Mobile CTA shows after price card; primary CTA in left column hidden on mobile */
.btn-wrap--mobile{ display:none; }
@media (max-width: 768px){
  .left .btn-wrap{ display:none !important; }
  .btn-wrap--mobile{ display:flex; align-items:center; gap:0; margin-top:16px; }
  .btn-wrap--mobile .btn-main{ flex:1 1 auto; height:52px; padding:0 18px; font-size:16.5px; background: var(--brand-brown); color:#fff; border-radius:999px; text-decoration:none; display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md); }
  .btn-wrap--mobile .btn-circle{ width:52px; height:52px; border-radius:50%; background: var(--brand-brown); display:flex; align-items:center; justify-content:center; box-shadow: var(--shadow-md); }
  .btn-wrap--mobile .btn-circle img{ width:22px; height:22px; filter: brightness(0) invert(1); }
}

.topbar{
  position: sticky;
  top: 15px;      
  z-index: 100;
  padding-top: 0; 
  background: transparent;
}
.topbar .bar-inner{
  margin-top: -70px;  
}
@media (max-width:768px){
  .topbar{ top: 10px; }
  .topbar .bar-inner{ height:60px; }
}
/* ============================================ */

/* === Mobile CTA === */
@media (max-width: 768px){
  .cta-row{
    grid-column: 1 / -1;
    display:flex;
    align-items:stretch;
    gap:12px;
    margin-top:16px;
  }
  .left .btn-wrap{ display:none !important; }

  .cta-row .btn-main{
    flex:1 1 auto;
    display:flex; align-items:center; justify-content:center;
    padding:14px 18px;
    border-radius:999px;
    background: var(--brand-brown);
    color:#fff; text-decoration:none;
    font-size:16.5px; font-weight:600; line-height:1.2;
    min-height:56px;
    box-shadow: var(--shadow-md);
  }
  .cta-row .btn-circle{
    min-width:56px; height:auto; aspect-ratio:1 / 1;
    border-radius:50%; background: var(--brand-brown);
    display:flex; align-items:center; justify-content:center;
    box-shadow: var(--shadow-md);
  }
  .cta-row .btn-circle img{ width:22px; height:22px; filter:brightness(0) invert(1); }
}

/* === MOBILE CTA ONLY === */
@media (max-width: 768px){
  .hero .btn-wrap--mobile,
  .hero .cta-row{
    grid-column: 1 / -1 !important; 
    width: 100%;
    display: grid;
    grid-template-columns: 1fr auto; 
    gap: 0px;
    align-items: stretch;   
    margin-top: 16px;       
  }

  .hero .btn-wrap--mobile .btn-main,
  .hero .cta-row .btn-main{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 18px;
    min-height: 56px;    
    line-height: 1.2;
    border-radius: 999px;
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  .hero .btn-wrap--mobile .btn-circle,
  .hero .cta-row .btn-circle{
    align-self: stretch;     
    aspect-ratio: 1 / 1;  
    min-width: 56px;    
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero .btn-wrap--mobile .btn-circle img,
  .hero .cta-row .btn-circle img{
    width: 22px;
    height: 22px;
  }
}

/* ===== WHY (WARUM MIKROZEMENT) ===== */
.why { padding: 72px 0; }
.why .container { max-width: var(--container, 1200px); margin: 0 auto; }

.why-head{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 28px;
}
.why-title{
  margin: 0;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  color: #2D241B; 
}
.why-text p{ margin: 0 0 10px 0; color: #2D241B; font-size: 18px; line-height: 1.55; }

.why-kicker{
  margin: 12px 0 20px;
  font-weight: 700;
  font-size: 18px;
  color: #2D241B;
}

/* Cards grid */
.why-cards{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card{
  border: 1px solid rgba(109,93,80,.22);     
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.04);
  overflow: hidden;
}
.why-card__media{
  aspect-ratio: 16 / 10;                        
  overflow: hidden;
}
.why-card__media img{
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}
.why-card__body{
  padding: 18px 18px 22px;
  font-size: 16px;
  line-height: 1.45;
  color: #2D241B;
  text-align: center;       
}

/* Tablet */
@media (max-width: 1024px){
  .why-head{ grid-template-columns: 1fr; gap: 16px; }
  .why-title{ font-size: 36px; }
  .why-cards{ grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

/* Mobile */
@media (max-width: 768px){
  .why{ padding: 40px 0; }
  .why-title{ font-size: 28px; }
  .why-text p{ font-size: 18px; }
  .why-kicker{ font-size: 18px; margin: 8px 0 14px; }
  .why-cards{ grid-template-columns: 1fr; gap: 16px; }
  .why-card__body{ font-size: 16px; }
}

/* ===== EINSATZBEREICHE ===== */
.areas{
  background:#F7F7F7;   
}
.areas__inner{
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 72px 16px;
}

/* Head */
.areas__head{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 0px;
  align-items:start;
  margin-bottom: 24px;
}
.areas__title{
  margin:0;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 700;
  color:#2D241B;
}
.areas__lead{
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.55;
  color:#2D241B;
}

/* Cards */
.areas__grid{
  list-style:none;
  padding:0; margin:0;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 22px;
}
.areas__card{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:14px;
  padding:22px 20px;
  text-align:center;
  box-shadow:0 4px 14px rgba(0,0,0,.04);
}
.areas__icon{
  display:flex; align-items:center; justify-content:center;
  margin-bottom:12px;
}
.areas__icon img{ width:56px; height:56px; display:block; }
.areas__text{
  margin:0;
  font-size:16px;
  line-height:1.45;
  color:#2D241B;
}

/* Hover */
@media (hover:hover){
  .areas__card:hover{ box-shadow:0 6px 18px rgba(0,0,0,.06); transform: translateY(-1px); transition:.2s; }
}

/* Tablet */
@media (max-width: 1024px){
  .areas__head{ grid-template-columns: 1fr 1fr; }
  .areas__title{ font-size:34px; }
  .areas__grid{ grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 768px){
  .areas__inner{ padding: 40px 16px; }
  .areas__head{ grid-template-columns: 1fr; gap:12px; margin-bottom:16px; }
  .areas__title{ font-size:28px; }
  .areas__lead{ font-size:18px; }
  .areas__grid{ grid-template-columns: 1fr; gap:12px; }
  .areas__card{ padding:18px 16px; }
  .areas__icon img{ width:50px; height:50px; }
}

/* ===== WHY CHOOSE ===== */
.choose-bg{ background:#FFF; }

.choose-bg__wrap{
  max-width: var(--container, 1200px);
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
  position: relative;

  background: var(--choose-img) center right / cover no-repeat;
  background-color: #e9e6e2;

  padding: 40px 44px;

  min-height: clamp(340px, 42vw, 460px);
  box-shadow: 0 10px 34px rgba(0,0,0,.06);
}

.choose-bg__wrap::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(0deg, rgba(255,255,255,.42), rgba(255,255,255,.42));
  pointer-events:none;
}

.choose-bg__content{
  position: relative; 
  z-index: 1;
  max-width: 560px;  
}

.choose-bg__title{
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 40px;
  line-height: 1.12;
  color:#2D241B;
}

.choose-bg__list{
  margin: 0;
  padding-left: 20px;   
  font-size: 16px;
  line-height: 1.55;
  color:#2D241B;
}
.choose-bg__list li{ margin: 6px 0; }

/* ===== Mobile ===== */
@media (max-width: 768px){
  .choose-bg__wrap{
    padding: 18px 16px 22px;
    min-height: auto;         
    background-position: 65% center;
  }
  .choose-bg__wrap::before{
    background: linear-gradient(0deg, rgba(255,255,255,.52), rgba(255,255,255,.52));
  }
  .choose-bg__title{
    font-size: 28px;
    margin-bottom: 10px;
  }
  .choose-bg__list{ font-size: 16px; }
  .choose-bg__content{ max-width: none; }
}

.choose-bg__wrap{
  border-radius: 0 !important;
  overflow: visible !important;
  box-shadow: var(--shadow-md, 0 10px 30px rgba(0,0,0,.08)) !important;
}

@media (max-width: 768px){
  .choose-bg__wrap{
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: var(--shadow-md, 0 10px 30px rgba(0,0,0,.08)) !important;
  }
}

.choose-bg__wrap{
  display: flex;           
  align-items: center;     
}

@media (max-width: 768px){
  .choose-bg__wrap{
    display: block;
  }
}

/* ===== CASES ===== */
.cases{ background:#FFF; }
.cases__inner{
  max-width: var(--container, 1200px);
  margin: 0 auto;
  padding: 72px 16px;
}
.cases__head{
  display:grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px 32px;
  align-items:start;
  margin-bottom: 18px;
}
.cases__title{
  margin:0;
  font-weight:700;
  font-size: 40px;
  line-height: 1.12;
  color:#2D241B;
}
.cases__lead{
  margin: 6px 0 0;
  font-size:18px;
  line-height:1.5;
  color:#2D241B;
}

/* CTA */
.cases__cta{
  display:flex; align-items:center; justify-content:center;
  gap: 0px;
  margin-top: 24px;
}
.cases__btn{
  display:flex; align-items:center; justify-content:center;
  padding: 14px 20px;
  min-height: 56px;
  border-radius: 999px;
  background: var(--brand-brown, #6D5D50);
  color:#fff; text-decoration:none; font-weight:none; font-size:18px;
  box-shadow: var(--shadow-md, 0 8px 28px rgba(0,0,0,.12));
}
.cases__btn-circle{
  width:56px; height:56px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background: var(--brand-brown, #6D5D50);
  color:#fff;
  box-shadow: var(--shadow-md, 0 8px 28px rgba(0,0,0,.12));
}

/* Hover (desktop) */
@media (hover:hover){
  .cases__btn:hover, .cases__btn-circle:hover{ transform: translateY(-1px); transition:.2s; }
}

/* ===== Tablet ===== */
@media (max-width: 1024px){
  .cases__title{ font-size: 34px; }
  .cases__head{ grid-template-columns: 1fr 1fr; }
  .cases__rail{ grid-template-columns: repeat(4, 1fr); gap:18px; }
}

/* ===== Mobile ===== */
@media (max-width: 768px){
  .cases__inner{ padding: 40px 16px; }
  .cases__head{ grid-template-columns: 1fr; gap: 8px; margin-bottom: 10px; }
  .cases__title{ font-size: 28px; }
  .cases__lead{ font-size: 18px; }

  .cases__rail{
    display:grid;
    grid-auto-flow: column;    
    grid-auto-columns: 78%;        
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .cases__item{
    scroll-snap-align: start;
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,.08);
  }
  .cases__rail::-webkit-scrollbar{ height:0; }
}

/* ========= STEPS (process) ========= */
.steps{
  background:#F7F7F7;    
  padding: clamp(48px, 7vw, 96px) 0;
}

.steps__inner{
  width:min(1200px, 92vw);
  margin:0 auto;
}

.steps__head{
  display:grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: clamp(24px, 4vw, 56px);
  align-items:start;
  margin-bottom: clamp(16px, 3vw, 28px);
}

.steps__title{
  margin:0;
  font-weight: 700;
  line-height: 1.12;
  font-size: 40px;
  letter-spacing: 0.2px;
  color: #2D241B;
}

.steps__lede{
  margin: 6px 0 0;
  font-size:18px;
  line-height: 1.55;
  color: #2D241B;
}

.steps__list{
  list-style: none;
  padding: 0;
  margin: clamp(8px, 2vw, 16px) 0 0;
  border-top: 1px solid #DCDCDC;  
}

.steps__item{
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(14px, 2vw, 18px) 0;
  border-bottom: 1px solid #DCDCDC;
}

.steps__num{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid #B9B9B9;
  color:#5f5b55;
  font-weight:600;
  font-size: 16px;
  line-height: 1;
}

.steps__body{
  display:flex;
  flex-direction: column;
  gap: 6px;
}

.steps__item-title{
  font-weight: 600;
  font-size: 18px;
  line-height: 1.35;
  color:#2D241B;
}

.steps__desc{
  font-size:16px;
  color:#2D241B;
  line-height: 1.55;
}

@media (max-width: 768px){
  .steps{ background:#FFF; }
  .steps__head{
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 10px;
  }
  .steps__title{
    font-size: 28px;
    line-height: 1.15;
  }
  .steps__item{
    grid-template-columns: 40px 1fr;
    gap: 16px;
  }
  .steps__num{
    width: 34px; height: 34px; font-size: 15px;
  }
}

/* ========= QUOTE HERO ========= */
:root{
  --quote-brown: #6B5A4D;   
  --quote-brown-2: #5B4A3E;
  --quote-glass: rgba(255,255,255,.66);
  --quote-stroke: rgba(255,255,255,.45);
}

.quote{
  position: relative;
  min-height: 86vh;
  display: grid;
  place-items: center;
  padding: clamp(56px, 8vw, 96px) 0;
  overflow: hidden;
}

.quote__bg{
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, rgba(255,255,255,.32), rgba(255,255,255,.32)),
    var(--bg) center/cover no-repeat;
  filter: saturate(.92) contrast(.98);
  z-index: 0;
}

.quote__inner{
  width:min(1050px, 92vw);
  margin-inline:auto;
  text-align:center;
  position: relative;
  z-index: 1;
}

.quote__title{
  margin: 0 0 clamp(18px, 3vw, 28px);
  font-weight: 700;
  letter-spacing: .2px;
  line-height: 1.12;
  color:#2D241B;
  font-size: 40px;
}

.quote__card{
  margin-inline:auto;
  width:min(560px, 92vw);
  background: linear-gradient(180deg, rgba(255,255,255,.58), rgba(255,255,255,.44));
  border: 1px solid var(--quote-stroke);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow:
    0 22px 60px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.35);
  border-radius: 16px;
  padding: clamp(16px, 2.6vw, 22px);
}

.quote__input,
.quote__textarea{
  width: 100%;
  border: 1px solid rgba(0,0,0,.08);
  background:#fff;
  border-radius: 14px;
  padding: 14px 18px;
  font-size: 15px;
  color:#1f1c19;
  outline: none;
  transition: box-shadow .2s ease, border-color .2s ease;
  box-shadow: 0 1px 0 rgba(0,0,0,.03) inset;
  margin-bottom: 12px;
}
.quote__input::placeholder,
.quote__textarea::placeholder{ color:#A7A29C; }

.quote__input:focus,
.quote__textarea:focus{
  border-color: rgba(107,90,77,.45);
  box-shadow: 0 0 0 3px rgba(107,90,77,.18);
}

.quote__cta{
  display:flex;
  align-items:center;
  gap: 0px;
  margin: 8px 0 14px;
}

.btn-pill{
  appearance: none;
  border: 0;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--brand-brown);
  color: #fff;
  font-weight: none;
  font-size: 18px;
  letter-spacing:.2px;
  cursor: pointer;
  box-shadow: 0 10px 26px rgba(107,90,77,.28);
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
  min-height: 56px;
}
.btn-pill:hover{ filter: brightness(1.06); box-shadow: 0 12px 30px rgba(107,90,77,.34); }
.btn-pill:active{ transform: translateY(1px) scale(.995); }

.btn-circle{
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 0;
  background: var(--quote-brown);
  color:#fff;
  display:grid; place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 26px rgba(91,74,62,.28);
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}
.btn-circle:hover{ filter: brightness(1.06); box-shadow: 0 12px 30px rgba(91,74,62,.34); }
.btn-circle:active{ transform: translateY(1px) scale(.98); }

.quote__note{
  margin: 8px 4px 0;
  color:#5b544f;
  font-size: 14px;
  line-height: 1.45;
}

.sr-only{
  position:absolute !important;
  width:1px;height:1px;
  padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0;
}

@media (max-width: 768px){
  .quote{ min-height: auto; padding: 48px 0 64px; }
  .quote__title{ font-size: 28px; }
  .quote__card{ width:min(420px, 92vw); }
  .btn-pill{ flex: 1 1 auto; }
}

/* === Quote form === */

.quote__card{
  background: linear-gradient(180deg, rgba(255,255,255,.36), rgba(255,255,255,.28));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1.5px solid rgba(255,255,255,.55);
  border-radius: 22px;
  box-shadow:
    0 24px 64px rgba(0,0,0,.12),
    inset 0 1px 0 rgba(255,255,255,.35);
}

.quote__input,
.quote__textarea{
  background: rgba(255,255,255,.88);        
  border: 1px solid #6D5D50;          
  border-radius: 18px;                      
  padding: 14px 18px;
  color:#1f1c19;
  box-shadow: 0 1px 0 rgba(0,0,0,.03) inset;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.quote__input::placeholder,
.quote__textarea::placeholder{
  color: #B7AEA6;  
}

.quote__input:focus,
.quote__textarea:focus{
  background: rgba(255,255,255,.96);
  border-color: rgba(107,90,77,.70);
  box-shadow: 0 0 0 3px rgba(107,90,77,.18);
}

.quote__textarea{ border-radius: 20px; }

@media (max-width: 768px){
  .quote__card{ border-radius: 20px; }
}

/* ===== CONTACT BAND ===== */
.contact-band{
  background: #6D5D5099;               
  background: rgba(109,93,80,.60);    
  color:#fff;
  padding: clamp(48px, 8vw, 84px) 0;
}

.contact-band__inner{
  width:min(980px, 92vw);
  margin:0 auto;
  text-align:center;
}

.contact-band__title{
  margin:0 0 16px;
  font-weight:700;
  font-size: 40px;
  letter-spacing:1.12px;
}

.contact-band__label{
  margin: 12px 0 10px;
  font-weight:600;
  font-size: 18px;
  opacity:.95;
}

.contact-band__capsule{
  display:inline-flex;
  gap: 16px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.36);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 10px 26px rgba(0,0,0,.08) inset, 0 12px 28px rgba(0,0,0,.08);
  margin-bottom: clamp(18px, 3vw, 28px);
}
.contact-band__capsule--small{ padding: 8px 12px; }

.contact-band__btn{
  width: 40px;
  height: 40px;
  display:grid;
  place-items:center;
  color:#fff;
  text-decoration:none;
  transition: transform .12s ease, filter .2s ease, box-shadow .2s ease;
}
.contact-band__capsule--small .contact-band__btn{ width: 38px; height: 38px; }

.contact-band__btn:hover{
  filter: brightness(1.08);
  transform: translateY(-1px);
}
.contact-band__btn:active{ transform: translateY(0); }

.contact-band__btn svg{
  width:20px; height:20px;
  display:block;
}

.contact-band__meta{
  margin: 8px 0 4px;
  font-size: 16px;
}
.contact-band__note{
  margin: 0;
  font-size: 16px;
  opacity:.95;
}

@media (max-width: 768px){
  .contact-band{ padding: 44px 0 56px; }
  .contact-band__title{ font-size: 28px; }
}

/* ===== FAQ (Accordion) ===== */
.faq-block{
  background:#fff;           
  padding: clamp(48px, 8vw, 90px) 0;
  color:#221a14;
}
.faq-block__inner{
  width:min(1160px, 92vw);
  margin:0 auto;
}
.faq-block__title{
  margin:0 0 clamp(18px, 3vw, 36px);
  font-weight:700;
  letter-spacing:.3px;
  line-height:1.12;
  font-size:40px;
  text-align:center;
  color: #2D241B;
}

/* item */
.faq-block__item{
  border-top:1px solid #e9e6e3;
  padding:0;
}
.faq-block__item:last-of-type{
  border-bottom:1px solid #e9e6e3;
}

/* question row */
.faq-block__question{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: clamp(14px, 2.4vw, 22px) 0;
  font-weight:700;
  line-height:1.3;
  font-size: 18px;
  color: #2D241B;
}

.faq-block__item > summary::-webkit-details-marker { display:none; }
.faq-block__item > summary::marker { content:""; }

/* chevron */
.faq-block__question::after{
  content:"";
  flex:0 0 auto;
  width:20px; height:20px;
  margin-left:12px;
  background: currentColor;
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M7.4 9.4L12 14l4.6-4.6L18 10.8 12 16.8 6 10.8z"/></svg>') no-repeat 50% 50%/100% 100%;
          mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path fill="black" d="M7.4 9.4L12 14l4.6-4.6L18 10.8 12 16.8 6 10.8z"/></svg>') no-repeat 50% 50%/100% 100%;
  transition: transform .25s ease;
  opacity:.9;
}
.faq-block__item[open] .faq-block__question::after{
  transform: rotate(180deg);
}

/* answer */
.faq-block__answer{
  padding: 0 0 clamp(16px, 2.6vw, 22px);
  font-size: 16px;
  color: #2D241B;
  max-width: 1050px;
}

/* mobile spacing */
@media (max-width: 768px){
  .faq-block__inner{ width:min(92vw, 640px); }
  .faq-block__title{ text-align:left;   font-size: 28px;}
}

/* ===== Legal links ===== */
.legal-links{
  background:#fff;           
  padding: 36px 0 72px;       
}

.legal-links__inner{
  width: min(1160px, 92vw);
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 6vw, 140px);   
  flex-wrap: wrap;           
  text-align: center;
}

.legal-links__a{
  color: #2D241B;
  font-size: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: opacity .2s ease;
}

.legal-links__a:hover,
.legal-links__a:focus{
  opacity: .7;
}

.hp{ display:none !important; }

.form-status{ margin-top:.75rem; font-size:.95rem; opacity:.9 }

button.loading{ opacity:.6; pointer-events:none }

@media (hover:hover) {
  .topbar .soc:hover .soc__bg {
    background: transparent !important;
    box-shadow: none !important;
    border-color: inherit !important; 
  }
}

/* ===== Modal (success) ===== */
.modal[hidden]{ display:none !important; }
.modal{
  position: fixed; inset: 0; z-index: 1000;
  display: grid; place-items: center;
}
.modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
}

.modal__dialog{
  position: relative;
  width: min(720px, 92vw);     
  padding: 32px 36px;           
  border-radius: 20px;      
  background: linear-gradient(180deg, rgba(255,255,255,.66), rgba(255,255,255,.5));
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 28px 72px rgba(0,0,0,.2), inset 0 1px 0 rgba(255,255,255,.35);
  color:#1f1c19;
  text-align: center;         
}

.modal__title{
  margin: 0 0 8px;
  font-weight: none;
  font-size: clamp(26px, 3.4vw, 34px);  
}
.modal__text{
  margin: 0;
  font-size: clamp(16px, 2vw, 20px);   
  line-height: 1.55;
  color:#5b544f;
}

.modal__close{
  position:absolute; top:10px; right:12px;
  width: 34px; height: 34px; border-radius: 50%;
  border: 0; background: rgba(0,0,0,.06); cursor:pointer;
  font-size: 22px; line-height: 1; color:#6D5D50;
}
.modal__close:hover{ background: rgba(0,0,0,.10); }

/* === Language switcher === */
@media (max-width:768px){
  .topbar .bar-inner{ flex-wrap: wrap; row-gap: 6px; }
  .topbar .socials{ order: 2; justify-content: flex-end; }
  .lang-switch{ order: 3; width:100%; justify-content: flex-end; }
}

.lang-switch{
  display:flex; align-items:center; gap:10px;
  margin-left: 12px;
  user-select:none;
  font-size:15px; line-height:1;
}
.lang-link{
  text-decoration:none;
  color:#fff;
  opacity:.92;
  font-weight:200;
}
.lang-link:hover,
.lang-link:focus-visible{
  opacity:1;
  text-decoration:none;      
}
.lang-link.is-active{
  text-decoration:none;       
  font-weight:800;
}

.topbar .bar-inner{
  display:flex; align-items:center; justify-content:flex-start; gap:12px;
}
.topbar .brand{ flex:0 0 auto; }
.topbar .socials{ 
  margin-left:auto;
  display:flex; gap:10px;
}
.lang-switch{ flex:0 0 auto; } 

@media (max-width:768px){
  .topbar .bar-inner{ flex-wrap: wrap; row-gap: 6px; height: 85px; }
  .topbar .socials{ order: 2; margin-left:auto; }
  .lang-switch{
    order: 3;
    width: 100%;
    justify-content: flex-end;  
    margin-left: 0;
    font-size:14px;     
    margin-top: -25px;
  }

  .soc{ width:36px; height:36px; }
  .soc img{ width:26px; height:26px; }
}

/* Extras (section) */
.extras{
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #e2dcd4 0%, #D8D1C7 100%);
}
.extras::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.10;
  mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  background-size:240px 240px;
}
.extras > *{ position: relative; z-index: 1; }

.extras .areas__grid{
  grid-template-columns: repeat(2, 1fr);
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width:1024px){
  .extras .areas__grid{
    grid-template-columns: 1fr;
    max-width: 640px;
  }
}

.extras__h3{
  margin: 0 0 10px;
  font: 700 18px/1.25 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #2D241B;
}

.extras__link{
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-brown, #6D5D50);
  font-weight: 600;
  text-decoration: none;
}
.extras__link:hover{ text-decoration: underline; }
.extras__link:focus-visible{
  outline: 2px solid var(--brand-brown, #6D5D50);
  outline-offset: 3px;
  border-radius: 6px;
}

.topbar-jump{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.55);
  background: rgba(255,255,255,.12);
  color:#fff;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  line-height:1;
  white-space:nowrap;
}
.topbar-jump:hover{ background: rgba(255,255,255,.18); }
.topbar-jump:focus-visible{ outline:2px solid #fff; outline-offset:2px; }

.topbar-jump--mob{ display:none; }

@media (max-width:768px){
  .topbar-jump{
    height:34px;
    padding:0 12px;
    font-size:13px;
  }

  .bar-inner{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    gap:10px;
  }
  .brand{ order:1; }
  .socials{ order:2; }

  .lang-switch{
    order:3;
    width:100%;
    display:flex;
    align-items:center;
    justify-content:flex-end;
    gap:10px;
    margin-top:-20px; 
  }

  .topbar-jump--desk{ display:none; }
  .topbar-jump--mob{
    display:inline-flex;
    margin-right:8px;
    height:28px;
  }
}

#zusatzleistungen{ scroll-margin-top:80px; }