:root{
  --bg:#f2f1ed;
  --white:#ffffff;
  --text:#1f2320;
  --muted:#6e736e;
  --green:#748c76;
  --green-dark:#536958;
  --green-darker:#243228;
  --line:#d8dbd4;
  --shadow:0 20px 50px rgba(20,24,18,.10);
  --container:1240px;
}

*,
*::before,
*::after{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  margin:0;
  font-family:"Inter", Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

img{
  max-width:100%;
  display:block;
}

a{
  color:inherit;
  text-decoration:none;
}

.container{
  width:min(var(--container), calc(100% - 48px));
  margin:0 auto;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(0,0,0,.05);
}

.header-inner{
  display:grid;
  grid-template-columns:auto 1fr auto;
  align-items:center;
  gap:24px;
  min-height:92px;
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
}

.brand-logo{
  width:72px;
  height:72px;
  object-fit:contain;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.02;
  font-size:1.75rem;
  font-weight:500;
  letter-spacing:-0.03em;
}

.main-nav{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:34px;
  font-weight:600;
  font-size:0.98rem;
}

.main-nav a{
  position:relative;
}

.main-nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background:var(--green);
  transition:width .25s ease;
}

.main-nav a:hover::after{
  width:100%;
}

.header-actions{
  display:flex;
  align-items:center;
  gap:12px;
}

.social-circle,
.social-outline{
  width:42px;
  height:42px;
  border-radius:999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  font-size:0.95rem;
  flex:0 0 42px;
}

.social-circle{
  background:var(--green);
  color:var(--white);
}

.social-outline{
  border:2px solid rgba(31,35,32,.22);
  color:var(--text);
  background:transparent;
}

.social-circle svg,
.social-outline svg{
  width:20px;
  height:20px;
  display:block;
  fill:currentColor;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:54px;
  padding:0 28px;
  border-radius:10px;
  font-weight:700;
  letter-spacing:-0.01em;
  text-align:center;
  transition:transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}

.btn:hover{
  transform:translateY(-1px);
}

.btn-primary{
  background:var(--green);
  color:var(--white);
}

.btn-primary:hover{
  background:var(--green-dark);
}

.btn-outline-light{
  border:1px solid rgba(255,255,255,.75);
  color:var(--white);
  background:transparent;
}

.hero{
  position:relative;
  z-index:1;
  padding-bottom:42px;
}

.hero-media{
  min-height:760px;
  position:relative;
  background:
    linear-gradient(90deg, rgba(13,18,15,.72) 0%, rgba(13,18,15,.52) 34%, rgba(13,18,15,.08) 64%),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1800&q=80") center center / cover no-repeat;
  z-index:1;
  }

.hero-content{
  position:relative;
  min-height:760px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

.hero-copy{
  max-width:640px;
  color:var(--white);
  padding:80px 0 160px;
}

.eyebrow,
.section-kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.95rem;
  font-weight:700;
}

.eyebrow{
  color:#b7ccb8;
  margin-bottom:18px;
}

.hero-copy h1{
  margin:0 0 22px;
  font-size:clamp(2.6rem, 5.2vw, 4.6rem);
  line-height:1;
  letter-spacing:-0.05em;
}
.hero-copy h1 span{
  color:#9ab093;
}

.hero-copy p{
  max-width:620px;
  margin:0 0 34px;
  font-size:1.3rem;
  color:rgba(255,255,255,.94);
}

.hero-buttons{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}

.hero-badge{
  position:absolute;
  right:16px;
  bottom:72px;
  width:230px;
  height:230px;
  border-radius:999px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

.hero-badge img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.stats-panel{
  margin-top:-92px;
  background:var(--green);
  color:var(--white);
  border-radius:0 0 16px 16px;
  box-shadow:var(--shadow);
  display:grid;
  grid-template-columns:repeat(3, 1fr);
}

.stat-card{
  position:relative;
  padding:70px 26px 38px;
  text-align:center;
  border-right:1px solid rgba(255,255,255,.18);
}

.stat-card:last-child{
  border-right:none;
}

.stat-icon{
  position:absolute;
  top:-28px;
  left:50%;
  transform:translateX(-50%);
  z-index:10;
  width:70px;
  height:70px;
  border-radius:999px;
  background:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 0 0 9px var(--bg);
}

.stat-icon::before{
  display:none;
}

.stat-icon img{
  position:relative;
  z-index:2;
  width:48px;
  height:48px;
  display:block;
  filter:brightness(0) invert(1);
}

.stat-icon{
  isolation:isolate;
}

.stat-value{
  font-size:3rem;
  font-weight:800;
  line-height:1;
  margin-bottom:12px;
}

.stat-card h3{
  margin:0 0 10px;
  font-size:1.04rem;
  text-transform:uppercase;
  letter-spacing:.02em;
}

.stat-card p{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:0.98rem;
}

.stat-more-btn{
  margin-top:18px;
  min-height:44px;
  padding:0 18px;
  border:1px solid rgba(255,255,255,.28);
  background:transparent;
  color:var(--white);
  border-radius:10px;
  font-weight:700;
  cursor:pointer;
  transition:background .2s ease, border-color .2s ease, transform .2s ease;
}

.stat-more-btn:hover{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.42);
  transform:translateY(-1px);
}

.modal-open{
  overflow:hidden;
}

.modal-overlay{
  position:fixed;
  inset:0;
  background:rgba(15,22,18,.62);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding:24px;
  opacity:0;
  visibility:hidden;
  pointer-events:none;
  transition:opacity .25s ease, visibility .25s ease;
  z-index:200;
}

.modal-overlay.is-open{
  opacity:1;
  visibility:visible;
  pointer-events:auto;
}

.modal-dialog{
  position:relative;
  width:min(920px, 100%);
  max-height:min(88vh, 960px);
  overflow:auto;
  background:var(--white);
  color:var(--text);
  border-radius:22px;
  box-shadow:0 30px 80px rgba(0,0,0,.22);
}

.modal-close{
  position:absolute;
  top:16px;
  right:16px;
  width:42px;
  height:42px;
  border:none;
  border-radius:999px;
  background:#f1f2ee;
  color:var(--text);
  font-size:1.8rem;
  line-height:1;
  cursor:pointer;
}

.modal-content{
  padding:42px 34px 34px;
}

.modal-kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:.85rem;
  font-weight:700;
  color:var(--green);
  margin-bottom:12px;
}

.modal-content h2{
  margin:0 0 12px;
  font-size:clamp(2rem, 4vw, 3rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}

.modal-lead{
  margin:0 0 28px;
  color:var(--muted);
  font-size:1.02rem;
}

.modal-sections{
  display:grid;
  gap:18px;
}

.modal-section{
  background:#f6f5f1;
  border:1px solid #e2e4df;
  border-radius:16px;
  padding:20px;
}

.modal-section h3{
  margin:0 0 12px;
  font-size:1.15rem;
  letter-spacing:-0.02em;
}

.modal-section ul{
  margin:0;
  padding-left:18px;
}

.modal-section li{
  margin-bottom:14px;
  color:var(--text);
}

.modal-section li:last-child{
  margin-bottom:0;
}

.modal-section a{
  color:var(--green-dark);
  text-decoration:underline;
}

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

.stat-details summary::after{
  content:"+";
  font-size:1.2rem;
  line-height:1;
}

.stat-details[open] summary::after{
  content:"−";
}

.stat-details-single h4{
  margin:0 0 10px;
  font-size:1rem;
  color:var(--white);
}

.stat-details-single h4:not(:first-child){
  margin-top:22px;
}

.stat-details-single ul{
  margin:0;
  padding-left:18px;
}

.stat-details-single li{
  margin-bottom:12px;
  color:rgba(255,255,255,.9);
  font-size:.94rem;
  line-height:1.55;
}

.stat-details-single li:last-child{
  margin-bottom:0;
}

.stat-details-single a{
  text-decoration:underline;
}

.section{
  padding:92px 0;
}

.section-header{
  margin-bottom:40px;
}

.section-header.center{
  text-align:center;
}

.section-kicker{
  color:var(--green);
  margin-bottom:12px;
}

.section-header h2,
.split-copy h2,
.contact-copy h2{
  margin:0 0 16px;
  font-size:clamp(2.1rem, 4vw, 3.3rem);
  line-height:1.02;
  letter-spacing:-0.05em;
}

.section-header p{
  max-width:820px;
  margin:0 auto;
  color:var(--muted);
  font-size:1.08rem;
}

.service-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:24px;
}

.service-card{
  background:var(--white);
  border:1px solid #dfe3dc;
  box-shadow:var(--shadow);
}

.service-image{
  height:220px;
  background-position:center;
  background-size:cover;
}

.image-projektowanie{
  background-image:url("assets/projekt.avif");
}

.image-nadzor{
  background-image:url("assets/nadzor.avif");
}

.image-wykonawstwo{
  background-image:url("assets/site.JPG");
}

.service-body{
  position:relative;
  padding:34px 28px 30px;
  text-align:center;
}

.service-badge{
  width:70px;
  height:70px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:var(--green);
  margin:-36px auto 18px;
  box-shadow:0 0 0 9px var(--bg);
  border:none;
}

.service-badge img{
  width:48px;
  height:48px;
  display:block;
  filter:brightness(0) invert(1);
}
.service-body h3{
  margin:0 0 12px;
  font-size:2rem;
  letter-spacing:-0.04em;
}

.service-body p{
  margin:0 auto 18px;
  max-width:330px;
  color:var(--muted);
}

.service-link{
  color:var(--green);
  font-weight:700;
  text-transform:uppercase;
  font-size:.95rem;
}

.split-section{
  background:linear-gradient(180deg, #708873 0%, #708873 100%);
  padding-top:0;
  padding-bottom:0;
}

.split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  min-height:620px;
}

.split-copy{
  color:var(--white);
  padding:76px 54px 76px 0;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.split-copy .section-kicker{
  color:#cfe0cf;
}

.split-copy p{
  margin:0 0 18px;
  font-size:1.05rem;
  color:rgba(255,255,255,.93);
}

.feature-list{
  list-style:none;
  padding:0;
  margin:8px 0 0;
  display:grid;
  gap:12px;
}

.feature-list li{
  position:relative;
  padding-left:28px;
}

.feature-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  font-weight:800;
  color:#e7f0e5;
}

.treehouse-visual{
  position:relative;
  min-height:620px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.24)),
    url("assets/treehouse.webp") center / cover no-repeat;
}

.visual-overlay-card{
  position:absolute;
  right:34px;
  bottom:34px;
  max-width:380px;
  background:rgba(35,50,40,.92);
  color:var(--white);
  padding:24px;
  display:flex;
  align-items:flex-start;
  gap:16px;
}

.overlay-icon{
  width:54px;
  height:54px;
  flex:0 0 54px;
  border:2px solid rgba(255,255,255,.45);
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.5rem;
}

.visual-overlay-card h3{
  margin:0 0 8px;
  font-size:1.6rem;
  line-height:1.05;
  letter-spacing:-0.04em;
}

.visual-overlay-card p{
  margin:0;
  color:rgba(255,255,255,.88);
}

.light-section{
  background:#f5f4f0;
}

.realizations-grid{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:24px;
}

.realization-card{
  background:var(--white);
  border:1px solid #e2e4df;
  box-shadow:var(--shadow);
  overflow:hidden;
}

.realization-image{
  height:270px;
  background-position:center;
  background-size:cover;
}

.house-a{
  background-image:url("https://images.unsplash.com/photo-1512917774080-9991f1c4c750?auto=format&fit=crop&w=1400&q=80");
}

.house-b{
  background-image:url("https://images.unsplash.com/photo-1600047509807-ba8f99d2cdde?auto=format&fit=crop&w=1400&q=80");
}

.realization-body{
  padding:26px 24px 30px;
}

.realization-body h3{
  margin:0 0 10px;
  font-size:1.8rem;
  letter-spacing:-0.04em;
}

.realization-body p{
  margin:0;
  color:var(--muted);
}

.contact-strip{
  background:#efede7;
  padding:36px 0;
}

.contact-strip-inner{
  display:grid;
  grid-template-columns:120px 1.3fr auto auto;
  gap:28px;
  align-items:center;
}

.contact-brand img{
  width:92px;
  height:92px;
  object-fit:contain;
  border-radius:999px;
}

.contact-copy h2{
  margin-bottom:10px;
}

.contact-copy p{
  margin:0;
  color:var(--muted);
  font-size:1.06rem;
}

.contact-social{
  padding-left:28px;
  border-left:1px solid #c7cac2;
}

.contact-social p{
  margin:0 0 14px;
  font-weight:500;
}

.contact-social-icons{
  display:flex;
  gap:12px;
}

.site-footer{
  background:linear-gradient(90deg, #1f2a24 0%, #0f1612 100%);
  color:var(--white);
  padding:44px 0 50px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr .8fr .8fr;
  gap:28px;
  align-items:start;
}

.footer-logo{
  width:100px;
  height:100px;
  object-fit:contain;
  margin-bottom:12px;
}

.footer-col h4{
  margin:0 0 14px;
  text-transform:uppercase;
  font-size:.95rem;
  letter-spacing:.08em;
}

.footer-col a,
.footer-col p{
  display:block;
  margin:0 0 10px;
  color:rgba(255,255,255,.82);
}

.footer-copy{
  text-align:right;
}

.contact-page-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:32px;
  align-items:start;
}

.contact-info-card,
.contact-form-card{
  background:var(--white);
  border:1px solid #e2e4df;
  box-shadow:var(--shadow);
  border-radius:18px;
  padding:32px;
}

.contact-info-card h3,
.contact-form-card h3{
  margin:0 0 18px;
  font-size:1.8rem;
  letter-spacing:-0.04em;
}

.contact-info-list{
  display:grid;
  gap:18px;
  margin-top:22px;
}

.contact-info-item{
  padding-bottom:18px;
  border-bottom:1px solid var(--line);
}

.contact-info-item:last-child{
  border-bottom:none;
  padding-bottom:0;
}

.contact-info-label{
  display:block;
  font-size:.88rem;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-weight:700;
  color:var(--green);
  margin-bottom:8px;
}

.contact-info-value{
  font-size:1.02rem;
  color:var(--text);
}

.contact-info-value p{
  margin:0 0 6px;
}

.contact-form{
  display:grid;
  gap:18px;
}

.form-row{
  display:grid;
  gap:8px;
}

.form-row label{
  font-weight:600;
  font-size:.96rem;
}

.form-row input,
.form-row textarea{
  width:100%;
  border:1px solid #d8dbd4;
  background:#fbfbf8;
  border-radius:12px;
  padding:14px 16px;
  font:inherit;
  color:var(--text);
  transition:border-color .2s ease, box-shadow .2s ease;
}

.form-row input:focus,
.form-row textarea:focus{
  outline:none;
  border-color:var(--green);
  box-shadow:0 0 0 3px rgba(116,140,118,.12);
}

.form-row textarea{
  min-height:160px;
  resize:vertical;
}

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

.cookie-banner{
  position:fixed;
  left:20px;
  right:20px;
  bottom:20px;
  z-index:300;
  display:none;
}

.cookie-banner__inner{
  max-width:1180px;
  margin:0 auto;
  background:rgba(31,35,32,.96);
  color:var(--white);
  border-radius:18px;
  box-shadow:0 24px 70px rgba(0,0,0,.28);
  padding:22px 24px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:20px;
  align-items:center;
}

.cookie-banner__text p{
  margin:0;
  color:rgba(255,255,255,.9);
  font-size:.98rem;
}

.cookie-banner__text a{
  color:var(--white);
  text-decoration:underline;
}

.cookie-banner__buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.cookie-btn{
  min-height:46px;
  padding:0 18px;
  border-radius:10px;
  font:inherit;
  font-weight:700;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease;
}

.cookie-btn:hover{
  transform:translateY(-1px);
}

.cookie-btn--primary{
  border:1px solid var(--green);
  background:var(--green);
  color:var(--white);
}

.cookie-btn--primary:hover{
  background:var(--green-dark);
  border-color:var(--green-dark);
}

.cookie-btn--ghost{
  border:1px solid rgba(255,255,255,.24);
  background:transparent;
  color:var(--white);
}

.cookie-btn--ghost:hover{
  background:rgba(255,255,255,.08);
}

.cookie-modal-backdrop{
  position:fixed;
  inset:0;
  background:rgba(15,22,18,.62);
  backdrop-filter:blur(6px);
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  z-index:310;
}

.cookie-modal{
  width:min(640px, 100%);
  background:var(--white);
  color:var(--text);
  border-radius:22px;
  box-shadow:0 30px 80px rgba(0,0,0,.22);
  padding:32px;
}

.cookie-modal h3{
  margin:0 0 12px;
  font-size:2rem;
  letter-spacing:-0.04em;
}

.cookie-modal p{
  margin:0 0 22px;
  color:var(--muted);
}

.cookie-modal a{
  text-decoration:underline;
}

.cookie-modal__row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  padding:18px 0;
  border-top:1px solid var(--line);
}

.cookie-modal__row:last-of-type{
  border-bottom:1px solid var(--line);
}

.cookie-modal__footer{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top:22px;
  flex-wrap:wrap;
}

.cookie-switch{
  position:relative;
  display:inline-flex;
  align-items:center;
}

.cookie-switch input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.cookie-switch span{
  width:56px;
  height:32px;
  border-radius:999px;
  background:#d9ddd6;
  position:relative;
  display:block;
  transition:background .2s ease;
}

.cookie-switch span::after{
  content:"";
  position:absolute;
  top:4px;
  left:4px;
  width:24px;
  height:24px;
  border-radius:999px;
  background:var(--white);
  box-shadow:0 2px 10px rgba(0,0,0,.12);
  transition:transform .2s ease;
}

.cookie-switch input:checked + span{
  background:var(--green);
}

.cookie-switch input:checked + span::after{
  transform:translateX(24px);
}

@media (max-width: 1180px){
  .header-inner{
    grid-template-columns:1fr;
    padding:18px 0;
  }

  .brand{
    justify-content:center;
  }

  .main-nav{
    justify-content:center;
    flex-wrap:wrap;
    gap:20px;
  }

  .header-actions{
    justify-content:center;
    flex-wrap:wrap;
  }

  .stats-panel,
  .service-grid,
  .realizations-grid,
  .contact-strip-inner,
  .footer-grid{
    grid-template-columns:1fr 1fr;
  }

  .split-grid{
    grid-template-columns:1fr;
  }

  .split-copy{
    padding:76px 0 44px;
  }

  .stat-card-expandable{
    grid-column:1 / -1;
  }
}

@media (max-width: 960px){
  .contact-page-grid{
    grid-template-columns:1fr;
  }

  .contact-strip-inner{
    grid-template-columns:1fr;
    text-align:center;
    gap:20px;
  }

  .contact-social{
    border-left:none;
    padding-left:0;
  }

  .contact-social-icons{
    justify-content:center;
  }

  .footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .container{
    width:min(var(--container), calc(100% - 28px));
  }

  p{
    line-height:1.6;
  }

  .header-inner{
    grid-template-columns:1fr;
    gap:12px;
    text-align:center;
    min-height:auto;
    padding:14px 0;
  }

  .brand{
    justify-content:center;
  }

  .brand-logo{
    width:56px;
    height:56px;
  }

  .brand-text{
    font-size:1.3rem;
  }

  .main-nav{
    justify-content:center;
    flex-wrap:wrap;
    gap:14px;
    font-size:.92rem;
  }

  .header-actions{
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
  }

  .header-actions .btn{
    width:auto;
    min-height:48px;
    padding:0 18px;
  }

  .hero{
    padding-bottom:24px;
  }

  .hero-media,
  .hero-content{
    min-height:auto;
  }

  .hero-copy{
    padding:40px 0 80px !important;
    max-width:100%;
    text-align:left;
  }

  .hero-copy h1{
    font-size:2.4rem;
    line-height:1.05;
  }

  .hero-copy p{
    font-size:1rem;
    margin-bottom:26px;
  }

  .hero-buttons{
    flex-direction:column;
    gap:12px;
  }

  .hero-buttons .btn{
    width:100%;
  }

  .hero-badge{
    width:150px;
    height:150px;
    right:0;
    bottom:18px;
  }

  .stats-panel,
  .service-grid,
  .realizations-grid,
  .contact-strip-inner,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .stat-card{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.18);
  }

  .stat-card:last-child{
    border-bottom:none;
  }

  .section{
    padding:56px 0;
  }

  .section-header{
    margin-bottom:28px;
  }

  .section-header h2,
  .split-copy h2,
  .contact-copy h2{
    font-size:1.8rem;
  }

  .section-header p{
    font-size:1rem;
  }

  .split-grid{
    grid-template-columns:1fr !important;
    gap:24px;
    min-height:auto;
  }

  .split-grid img{
    max-width:100% !important;
    margin:0 auto;
  }

  .split-copy{
    padding:48px 0 24px;
  }

  .split-copy p{
    font-size:1rem;
  }

  .treehouse-visual{
    min-height:360px;
  }

  .visual-overlay-card{
    right:16px;
    left:16px;
    bottom:16px;
    max-width:none;
    padding:18px;
  }

  .overlay-icon{
    width:46px;
    height:46px;
    flex-basis:46px;
    font-size:1.2rem;
  }

  .visual-overlay-card h3{
    font-size:1.25rem;
  }

  .service-image{
    height:200px;
  }

  .service-body{
    padding:28px 20px 24px;
  }

.service-body h3{
  font-size:1.4rem;
}

  .realization-body{
    padding:22px 20px 26px;
  }

.realization-body h3{
  font-size:1.35rem;
  line-height:1.2;
}

  .modal-section{
    padding:16px;
  }

  .modal-section h3{
    font-size:1.05rem;
  }

  .modal-section li{
    font-size:.95rem;
  }

  .contact-info-card,
  .contact-form-card{
    padding:22px;
  }

  .contact-info-card h3,
  .contact-form-card h3{
    font-size:1.45rem;
  }

  .contact-copy h2{
    font-size:1.6rem;
  }

  .contact-social{
    padding-left:0;
    border-left:none;
  }

  .footer-grid{
    text-align:center;
  }

  .footer-copy{
    text-align:center;
  }

  .btn{
    width:100%;
  }

  .cookie-banner{
    left:12px;
    right:12px;
    bottom:12px;
  }

  .cookie-banner__inner{
    grid-template-columns:1fr;
    padding:18px;
  }

  .cookie-banner__buttons{
    justify-content:stretch;
  }

  .cookie-banner__buttons .cookie-btn{
    width:100%;
  }

  .cookie-modal{
    padding:22px;
  }

  .cookie-modal h3{
    font-size:1.5rem;
  }

  .cookie-modal__row{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-modal__footer{
    justify-content:stretch;
  }

  .cookie-modal__footer .cookie-btn{
    width:100%;
  }
}
.hero{
  position:relative;
  z-index:1;
}

.hero-media{
  position:relative;
  z-index:1;
}

.stats-panel{
  position:relative;
  z-index:5;
  margin-top:0;
  background:var(--green);
  color:var(--white);
}
.popup-gallery-img{
  cursor:zoom-in;
}

.image-lightbox{
  position:fixed;
  inset:0;
  z-index:500;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
  background:rgba(0,0,0,.82);
}

.image-lightbox.is-open{
  display:flex;
}

.image-lightbox img{
  max-width:92vw;
  max-height:88vh;
  object-fit:contain;
  box-shadow:0 20px 70px rgba(0,0,0,.45);
}

.image-lightbox-close{
  position:absolute;
  top:18px;
  right:22px;
  width:44px;
  height:44px;
  border:none;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-size:2rem;
  line-height:1;
  cursor:pointer;
}
.modal-content .social-circle{
  color:#fff;
}