*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color:var(--text);

  background-image: url("images/back_wood.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;

  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.section{
  padding:80px 18px;
  max-width:1100px;
  margin:0 auto;
}

@media (prefers-reduced-motion: reduce){
  html { scroll-behavior: auto; }
}

@media (max-width: 640px){

  body{
    font-size: 15px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .section{
    padding: 56px 12px;
  }

  /* nagłówki */
  h1{
    font-size: clamp(28px, 7.2vw, 36px);
    /* font-size: clamp(26px, 7.2vw, 34px); */
    line-height: 1.1;
  }
  h2{
    font-size: clamp(24px, 6.0vw, 30px);
    /* font-size: clamp(20px, 6.0vw, 26px); */
    line-height: 1.15;
    margin-bottom: 10px;
  }

  /* akapity i listy */
  p, li{
    font-size: 15px;
    line-height: 1.6;
  }

  /* przyciski na mobile */
  .btn{
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 12px;
  }
}

/*ukryj strone domyslnie*/
body.consent-pending{
  overflow: hidden;
}

body.consent-pending main,
body.consent-pending header,
body.consent-pending #logo-intro{
  visibility: hidden;
}