/* ========== ZMIENNE I BAZA ========== */
:root{
  --green-700:#244A3A;      /* ciemna zieleń (CTA, tła przycisków) */
  --green-600:#2C5A46;
  --green-500:#356A53;
  --brown-600:#8E6A45;      /* akcenty tekstowe */
  --text-on-dark:#FFFFFF;
  --shadow-strong: 0 20px 60px rgba(0,0,0,.35);
  --shadow-soft:   0 10px 30px rgba(0,0,0,.18);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: var(--text);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Special Elite', cursive;
  font-weight: 400;
  letter-spacing: 1px;
}


/* ========== NAV ========== */
.site-header{
  position:fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient( to bottom, rgba(0,0,0,.55), rgba(0,0,0,.15) 80%, transparent);
  /* przezroczysta belka nad zdjęciem */
}

.nav{
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.nav__brand{
  display:flex; align-items:center; gap:10px;
  color: var(--text-on-dark); text-decoration:none; font-weight:700;
}
.nav__brand img{height:62px; width:auto; display:block}

.nav__links{
  list-style:none; margin:0; padding:0; display:flex; gap:28px;
}
.nav__links a{
  color: var(--text-on-dark);
  text-decoration:none;
  font-weight:800;
  letter-spacing:.06em;
}
.nav__links a:hover{ text-decoration:underline }

/* ========== HERO ========== */
/* ========== HERO ========== */
.hero{
  min-height: 68vh; /* było 75vh -> mniej luzu w pionie */
  display:grid;
  place-items:center;
  text-align:center;
  color: var(--text-on-dark);
  position:relative;
  isolation:isolate;
  background:
    linear-gradient(rgba(0,0,0,.55), rgba(0,0,0,.35)),
    url("images/tlo\ drewienko.png") center/cover no-repeat;
  margin-bottom: 0; /* usunięcie zbędnego odstępu pod hero */
}
.hero::after{
  /* delikatny vignette na brzegach, żeby tekst miał lepszy kontrast */
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(120% 90% at 50% 30%, transparent 0 60%, rgba(0,0,0,.35) 100%);
  z-index:-1;
}

/* FADE na dole HERO – płynne zlanie z beżem oferty */
.hero::before{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-1px; height:96px;  /* wysokość przejścia */
  pointer-events:none;
  z-index:0; /* pod treścią, nad tłem */
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0) 0%,
    rgba(246,239,231,1) 100%   /* #f6efe7 – kolor tła .offer */
  );
}

.hero__inner{
  max-width: 1150px;
  padding: 100px 20px 16px; /* dół z 60px -> 16px */
}

.hero__title {
  margin: 0 0 16px;
  font-weight: 800;
  font-style: italic;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(28px, 4vw, 60px); /* <= dopasowane */
  text-shadow: 0 2px 10px rgba(0,0,0,.4); /* lekkie cieniowanie dla czytelności */
}

.hero__title span { 
  display: block; 
}

.hero__tagline {
  margin: 8px 0 16px; /* było 8px 0 28px + margin-top:55px */
  font-weight: 600;
  font-style: italic;
  letter-spacing: .02em;
  font-size: clamp(14px, 1.8vw, 22px); /* <= dopasowane */
  color: #f4f6f5;
  text-shadow: 0 1px 6px rgba(0,0,0,.4); /* tylko cień, bez tła */
}

.hero__actions{
  display:flex; gap:18px; justify-content:center; flex-wrap:wrap;
  margin-bottom: 0; /* usunięcie dodatkowego luzu na dole */
}


















/* ========== PRZYCISKI ========== */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 16px 28px;
  margin-top: 66px;
  border-radius: 999px;              /* „pill” */
  font-weight: 800; letter-spacing:.03em;
  text-decoration:none;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  will-change: transform;
}
.btn--filled{
  background: var(--green-700);
  color: var(--text-on-dark);
  box-shadow: var(--shadow-soft);
}
.btn--filled:hover{ transform: translateY(-2px); background: var(--green-600); box-shadow: var(--shadow-strong); }

.btn--outline{
  border: 2px solid rgba(255,255,255,.9);
  color: var(--text-on-dark);
  background: transparent;
}
.btn--outline:hover{ background: rgba(255,255,255,.1); transform: translateY(-2px); }












/* ========== SEKCJA OFERTA ========== */
/* ========== SEKCJA OFERTA ========== */
.offer {
  position: relative;
  overflow: hidden;
  text-align: center;
  background: linear-gradient(90deg, #f6efe7 0%, #ffffff 100%);
  /* 🔧 anty-collapsing + pełna kontrola odstępu */
  display: flow-root;   /* zatrzymuje „wpadanie” marginów z dzieci/sekcji */
  margin-top: 0;
  padding-top: 24px;
}



/* ============================= */
/* RESZTA ZOSTAJE BEZ ZMIAN !!!! */
/* ============================= */

.section-title {
  font-size: 3.5rem;
  font-weight: 400;
  margin-bottom: 0px;
  margin-top: 0px;;
}

.offer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}

.offer__card {
  background: #244A3A; /* ciemnozielone tło kafelka */
  border-radius: 15px;
  padding: 25px 20px;
  color: #fff;
  box-shadow: 0 6px 12px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 18px rgba(0,0,0,0.35);
}

.offer__img {
  max-width: 100%;
  height: 180px;
  transform: scale(1.1);
  border-radius: 10px;
  margin-bottom: 15px;
}

.offer__title{
  font-size: clamp(24px, 1.2vw, 1.35rem);
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.offer__text{
  max-width: 44ch;
  font-size: clamp(16px, 1vw, 1.05rem);
  line-height: 1.6;
  color: #e9f2ee;
  text-align: justify center;
  margin: 10px;
}

.offer__grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 34px;
  align-items: stretch;
}



/* =========================
   RESPONSYWNOŚĆ DLA OFERTY
   ========================= */

/* Tablet (≤ 1100px): 3 → 2 kolumny, ciaśniejsze odstępy */
@media (max-width: 1100px){
  .offer__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
    margin-bottom: 32px;
  }
  .offer__card{
    padding: 22px 18px;
  }
  .offer__img{
    height: 160px;
  }
}

/* Mobile (≤ 768px): 2 → 1 kolumna, środek i większa czytelność */
@media (max-width: 768px){
  .offer__grid{
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 28px;
  }
  .offer__card{
    padding: 20px 16px;
  }
  .offer__img{
    height: 150px;
  }
  .section-title{
    font-size: clamp(2rem, 6vw, 2.6rem);
  }
  /* Treść w kafelku czytelna na małych ekranach */
  .offer__title{ text-align: center; }
  .offer__text{
    max-width: 52ch;
    margin: 10px auto 0;
    text-align: left;       /* możesz zmienić na center, jeśli wolisz */
  }
}

/* Małe telefony (≤ 480px): jeszcze ciaśniej */
@media (max-width: 480px){
  .offer{
    padding: 8px 8px;
  }
  .offer__card{
    padding: 18px 14px;
    border-radius: 12px;
  }
  .offer__img{
    height: 130px;
  }
  .offer__grid{ gap: 16px; }
}














/* KIM JESTEŚMY */
:root {
  --bg-from: #f6efe7;
  --bg-to: #ffffff;
  --text: #1f1b18;
  --accent: #b8875f;
  --muted: #5f5851;
  --container: 1200px;
}

/* Sekcja z gradientem, BEZ ::before */
.about {
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
}



.about::after {
  content: "";
  position: absolute;
  inset: 0; /* rozciąga obrazek na całą sekcję */
  background: url("images/siekiera.svg") center/contain no-repeat;
  opacity: 0.1;     /* 5% widoczności */
  pointer-events: none; /* żeby nie blokowało klików */
  z-index: 0;        /* pod treścią */
}

.about__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;            /* lewa treść, prawa grafika */
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  z-index: 1;
}

.about__left {
  width: min(720px, 92vw);
}


/* PRAWA kolumna (grafika) */
.about__right {
  display: grid;
  place-items: center end;                   /* trzyma przy prawej */
}
.about__art {
  width: 6000%;
  max-width: 990px;                          /* kontrola skali SVG/PNG */
  opacity: .96;
  height: auto;
}
.about__art {
  transform: scale(1.5); /* 1.0 = 100%, 1.4 = 140% */
  transform-origin: right center 0,4;
  transform-origin: bottom center; /* albo right center, żeby się rozciągał w lewo */
}


.about__title {
  font-size: 3.5rem;
  margin-bottom: 20px;
  justify-self: left;
}

.about__left p {
font-size: clamp(24px, 1.35vw, 22px);
  line-height:1.75;
  margin: 10px 0 22px;
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 1px;
  max-width: 600px;
}

/* Akcenty */
.accent {
  color: var(--accent);
  font-weight: 700;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 20px;                 /* odstęp między listą, lokalizacją i notką */
}

/* LISTA */
.about__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: default;                   /* żeby było widać, że element reaguje */
  transition: transform 0.25s ease;  /* płynna animacja */
}

.about__list li:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}
/* Wyłącz animację na urządzeniach dotykowych (telefony, tablety) */
@media (hover: none) and (pointer: coarse) {
  .about__list li {
    transition: none;
    transform: none !important;
  }
}


.about__list li:last-child {
  margin-bottom: 0;          /* usuń odstęp pod ostatnim elementem */
}
.about__list li span {
  font-size: 1.2rem;     /* trochę większy tekst */
  font-weight: 600;      /* mocny bold */
  font-style: italic;    /* kursywa */
  color: var(--text);    /* kolor bazowy */
}


/* IKONKI */
.about__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;            /* ikona nie zwęża się przy długim tekście */
}



/* NOTKA */
.about__note {
  font-size: 0.9rem;
  color: #888;
  font-style: italic;
  margin: 0;
  max-width: 600;
}




/* ========== RESPONSYWNOŚĆ: ABOUT ========== */

/* --- duże laptopy / węższe desktopy --- */
@media (max-width: 1200px){
  .about__inner{
    grid-template-columns: 1.1fr .9fr;     /* lekko 55/45 */
  }
  .about__title{
    font-size: clamp(2.6rem, 4.4vw, 3.2rem);
  }
  .about__art{
    max-width: 820px;                      /* delikatnie mniejsza grafika */
  }
}

/* --- tablet poziomo / mały laptop --- */
@media (max-width: 1024px){
  .about__inner{
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 4vw, 40px);
  }
  .about__left p{
    letter-spacing: .6px;
    margin-bottom: 22px;
  }
  .about__art{
    max-width: 700px;
    transform: scale(1.3);                 /* ta sama estetyka, mniejsza skala */
  }
}

/* --- tablet pion / większy telefon --- */
@media (max-width: 900px){
  .about__inner{
    grid-template-columns: 1fr;            /* 1 kolumna: treść nad grafiką */
    gap: 24px;
  }
  .about__right{
    place-items: center;                   /* grafika na środek pod tekstem */
  }
  .about__art{
    max-width: 560px;
    transform: scale(1.15);
    transform-origin: center bottom;
  }
  .about::after{
    /* tło-siekiera: ustaw bliżej środka i trochę mniejsze na mobile */
    background-position: 60% 40%;
    background-size: 520px auto;
    opacity: .12;
  }
  .about__title{
    font-size: clamp(2.2rem, 7vw, 2.8rem);
    margin-bottom: 14px;
  }
  .about__left p{
    font-size: clamp(16px, 2.1vw, 18px);
    line-height: 1.7;
    max-width: 46ch;                       /* czytelna długość linii na mobile */
    margin: 8px 0 18px;
  }
  .about__list li span{
    font-size: clamp(1rem, 2.8vw, 1.15rem);
  }
  .about__icon{
    width: 56px;
    height: 56px;
  }
}

/* --- małe telefony --- */
@media (max-width: 480px){
  .about{
    padding-block: clamp(40px, 10vw, 64px); /* jeśli masz ogólne paddingi sekcji */
  }
  .about__inner{
    gap: 18px;
  }
  .about__art{
    max-width: 440px;
    transform: scale(1.05);
  }
  .about__icon{
    width: 48px;
    height: 48px;
  }
  .about__list{
    gap: 8px;
  }
}

/* preferencje dostępności – bez animacji na mobile już masz, więc nic nie zmieniam */































/* DREWNO OPALOWE */
:root{
  --bg-from:#f6efe7;
  --bg-to:#ffffff;
  --text:#1e1b18;
  --muted:#6b625a;
  --accent:#b8875f;
  --container:1200px;
}

/* Sekcja z tłem jako JEDEN plik + miękki gradient pod spodem */
.fuelwood{
  position: relative;
  overflow: hidden;
  color: var(--text);
  background:
    linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
}
.fuelwood::before{
  content:"";
  position:absolute; inset:0;
  background: var(--fuelwood-bg) left center / cover no-repeat;
  opacity: .95;                 /* reguluj intensywność tła */
  z-index: 0;
  pointer-events: none;
}


/* dodatkowy obraz wycentrowany na środku sekcji */
.fuelwood::after {
  content:"";
  position:absolute; inset:0;
  background: url("images/watermark\ sekcja\ donice.svg")center/ min(85vw, 850px) no-repeat; /* podmień plik */
  opacity: 0.05;     /* przezroczystość 5% */
  z-index: 0;        /* pod treścią, nad gradientem */
  pointer-events: none;
}


.fuelwood__inner {
  position: relative;
  z-index: 1;  /* treść zawsze nad ::before i ::after */
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}



/* LEWA kolumna z ilustracją */
.fuelwood__left{
  display: grid;
  place-items: center;
}
.fuelwood__art{
 width: 200%;
  max-width: 1200px;
  height: auto;
  display: block;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;                 /* wyłącz prostokątny cień */
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.18)); /* cień po kształcie */
  transition: transform .28s ease, filter .28s ease;
  user-select: none;                /* nie zaznaczaj */
  -webkit-user-drag: none;          /* nie „ciągnij” na safari/chrome */
  cursor: default;                  /* albo pointer, jeśli to link */
}

.fuelwood__art:hover{
  transform: translateY(-10px) scale(1.04);        /* podskok */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.26)); /* mocniejszy cień, ale po kształcie */
}


/* Kolumna prawa z treścią przyklejona do prawej krawędzi */
.fuelwood__right{
  margin-left: auto;
  width: min(620px, 90vw);      /* szerokość bloku treści */
}

/* Tytuł w stylu z mockupu (Rye, jeśli używasz) */
.fuelwood__title{
  font-size: 3.5rem;
  margin-bottom: 20px;
}

.fuelwood__lead{
font-size: clamp(24px, 1.35vw, 22px);
  line-height:1.75;
  margin: 10px 0 22px;
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 1px;
  max-width: 900px;
}

/* Akcenty */
.accent {
  color: var(--accent);
  font-weight: 700;
}

.fuelwood__features {
  margin: 0 0 10px 0;  /* tylko 10px odstępu od kontaktów */
  padding: 0;
}


.feature {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.feature__icon {
  width: 75px;       /* wielkość ikony */
  height: 75px;
  flex-shrink: 0;
  background: none;  /* pewność, że nie ma tła */
}

.feature__text {
  font-size: 1rem;
  line-height: 1.4;
}


/* Ikony kontaktów u dołu – tylko placeholdery pod Twoje SVG */
.fuelwood__contacts {
  display: flex;
  justify-content: center; /* wyśrodkuje poziomo */
  align-items: center
       /* wyśrodkuje pionowo (jeśli jest wysoki kontener) */
}

.fuelwood__contacts {
  margin-top: 0;       /* brak dodatkowej przerwy */
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-8px);
  }
  60% {
    transform: translateY(-4px);
  }
}

.contact-ico {
  display: inline-block;
  width: 120px;
  height: 120px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s ease;
}



/* Konkretne ikony */
.contact-ico--phone {
  background-image: url("images/tel.svg");
}

.contact-ico--mail {
  background-image: url("images/mail.svg");
}

/* Po najechaniu */
.contact-ico:hover {
  animation: bounce 0.8s;
}



















/* USŁUGI TARTACZNE */
:root{
  --bg-from:#f6efe7;                /* początek delikatnego gradientu */
  --bg-to:#ffffff;                  /* koniec gradientu */
  --text:#1e1b18;
  --accent:#b8875f;
  --container:1200px;
}

/* Sekcja: gradient + jeden plik tła na warstwie ::before */
.sawmill{
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
  min-height: 80vh;
  display: flex;
  align-items: center;
}
.sawmill::before{
  content:"";
  position:absolute; inset:0;
  background: var(--sawmill-bg) right center / cover no-repeat;
  opacity:.95;                       /* reguluj intensywność tła */
  z-index:0;
  pointer-events:none;
}

.sawmill::after{
  content:"";
  position:absolute; inset:0;
  background: url("images/watermark\ sekcja\ donice.svg")center / min(85vw, 850px) no-repeat;
  opacity:.05;                /* ~5% */
  pointer-events:none;
  z-index:0;
}

.sawmill__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

/* Lewa kolumna z treścią */
.sawmill__left{
  width: min(720px, 92vw);
}

/* Prawa kolumna z grafiką */
.sawmill__right{
  display: grid;
  place-items: center;
}
.sawmill__art{
  width: 200%;
  max-width: 1500px;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.18));
  opacity: .95;
  position: relative;
  z-index: 2;
}

.sawmill__art:hover{
  transform: translateY(-10px) scale(1.04);        /* podskok */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.26)); /* mocniejszy cień, ale po kształcie */
}

.sawmill__title{
  font-size: 3.5rem;
}

.sawmill__lead{
font-size: clamp(24px, 1.35vw, 22px);
  line-height:1.75;
  margin: 10px 0 22px;
  text-align: justify;
  letter-spacing: 1px;
  max-width: 575px;
}












/* LISTA */
.sawmill__features {
  list-style: none;
  padding: 0;
  margin-top:  18px;
}

.sawmill__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  cursor: default;                   /* żeby było widać, że element reaguje */
  transition: transform 0.25s ease;  /* płynna animacja */
}

.sawmill__features li:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 4px 6px rgba(0,0,0,0.15));
}

/* Wyłącz animację na urządzeniach dotykowych (telefony, tablety) */
@media (hover: none) and (pointer: coarse) {
  .sawmill__features li {
    transition: none;
    transform: none !important;
  }
}

.sawmill__features li:last-child {
  margin-bottom: 0;   /* usuń odstęp pod ostatnim elementem */
}

.sawmill__features li span {
  font-size: 1.2rem;  /* trochę większy tekst */
  font-weight: 600;   /* mocny bold */
  font-style: italic; /* kursywa */
  color: var(--text); /* kolor bazowy */
}

/* IKONKI */
.feature__icon {
  width: 70px;
  height: 70px;
  flex-shrink: 0;     /* ikona nie zwęża się przy długim tekście */
}



































/* Akcenty */
.accent {
  color: var(--accent);
  font-weight: 700;
}

.sawmill__cta{
  display: block;
  width: 100%;                  /* pełna szerokość rodzica */
  max-width: 600px;             /* niech nie będzie za szeroki na dużych ekranach */
  margin: 32px 0 0;             /* odstęp od tekstu */
  padding: 14px 34px;
  background: var(--green);
  color:#fff;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing:.04em;
  text-decoration:none;
  text-align: center;
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  margin-top: 30px;
}

.sawmill__cta:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}

.sawmill__cta:active{
  transform: translateY(0);
  opacity:.92;
}







/* DONICE OGRODOWE */
:root{
  --bg-from:#f6efe7;
  --bg-to:#ffffff;
  --text:#1f1b18;
  --accent:#b8875f;
  --green:#1f3e2e;
  --container:1200px;
}

/* Sekcja: gradient + jeden plik tła po lewej */
.planters{
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
}
.planters::before{
  content:"";
  position:absolute; inset:0;
  background: var(--planters-bg) left center / cover no-repeat;
  opacity:.95;                         /* intensywność tła */
  pointer-events:none;
  z-index:0;
}

.planters::after{
  content:"";
  position:absolute; inset:0;
  background: url("images/watermark\ sekcja\ donice.svg") center / min(85vw, 825px) no-repeat;
  opacity:.05;              /* ~5% */
  pointer-events:none;
  z-index:0;
}

.planters__inner{
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* dwie kolumny: grafika + treść */
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}


/* Lewa kolumna z grafiką */
.planters__left{
  display: grid;
  place-items: center;
}
.planters__art{
 width: 200%;
  max-width: 1300px;
  height: auto;
  display: block;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;                 /* wyłącz prostokątny cień */
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.18)); /* cień po kształcie */
  transition: transform .28s ease, filter .28s ease;
  user-select: none;                /* nie zaznaczaj */
  -webkit-user-drag: none;          /* nie „ciągnij” na safari/chrome */
  cursor: default;                  /* albo pointer, jeśli to link */
}

.planters__art:hover{
  transform: translateY(-10px) scale(1.04);        /* podskok */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.26)); /* mocniejszy cień, ale po kształcie */
}
/* Prawa kolumna z treścią */
.planters__right{
  margin-left: auto;
  width: min(620px, 92vw);
}

/* Nagłówek */
.planters__title {
  font-size: 3.5rem;  /* ten sam feeling co Rozpałka */
  margin-bottom: 25px;
  line-height: 1.1;
  text-align: left;
}

/* Tekst główny */
.planters__lead {
  font-size: clamp(24px, 1.35vw, 22px);
  line-height:1.75;
  margin: 10px 0 22px;
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 1px;
  max-width: 900px;
}

/* Akcenty */
.accent {
  color: var(--accent);
  font-weight: 700;
}

.btn-primary{
  display: block;                          /* zamiast inline-block */
  margin: clamp(18px, 2vw, 32px) auto 0;   /* auto po bokach → środek */
  padding: 18px 34px;
  background: var(--green);
  color:#fff;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing:.04em;
  text-decoration:none;
  text-align: center;                      /* tekst w środku */
  box-shadow: 0 14px 36px rgba(0,0,0,.15);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.btn-primary:active{
  transform: translateY(0);
  opacity:.92;
}





















/* ROZPAŁKA */
:root{
  --bg-from:#f6efe7;
  --bg-to:#ffffff;
  --text:#1f1b18;
  --accent:#b8875f;
  --container:1200px;
}

/* Sekcja: delikatny gradient + JEDEN plik tła na warstwie ::before */
.kindling{
  position: relative;
  overflow: hidden;
  color: var(--text);
  background: linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
}

.kindling::before{
  content:"";
  position:absolute; inset:0;
  background: var(--kindling-bg) right center / cover no-repeat;
  opacity:.95;            /* reguluj intensywność tła */
  z-index:0;
  pointer-events:none;
}

.kindling::after{
  content:"";
  position:absolute; inset:0;
  background: url("images/plomien.svg") center / min(46vw, 320px) no-repeat;
  opacity:.05;
  pointer-events:none;
  z-index:0;
}

.kindling__inner{
  max-width: var(--container);
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;   /* lewa treść + prawa grafika */
  gap: clamp(20px, 4vw, 56px);
  align-items: center;
}

/* Lewa kolumna z treścią jak na makiecie */
kindling__left{
  width: min(720px, 92vw);
}

/* Prawa kolumna */
.kindling__right{
  display: grid;
  place-items: center;
}
/* TYLKO obrazek – zero ramek i prostokątnych cieni */
.kindling__art{
  width: 120%;
  max-width: 1300px;
  height: auto;
  display: block;
  border: 0;
  outline: none;
  background: transparent;
  box-shadow: none;                 /* wyłącz prostokątny cień */
  filter: drop-shadow(0 12px 28px rgba(0,0,0,.18)); /* cień po kształcie */
  transition: transform .28s ease, filter .28s ease;
  user-select: none;                /* nie zaznaczaj */
  -webkit-user-drag: none;          /* nie „ciągnij” na safari/chrome */
  cursor: default;                  /* albo pointer, jeśli to link */
}

.kindling__art:hover{
  transform: translateY(-10px) scale(1.04);        /* podskok */
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.26)); /* mocniejszy cień, ale po kształcie */
}





.kindling__title{
  font-size: 3.5rem;
  margin-bottom: 30px;
}

.kindling__lead{
  font-size: clamp(24px, 1.35vw, 22px);
  line-height:1.75;
  margin: 10px 0 22px;
  margin-bottom: 30px;
  text-align: justify;
  letter-spacing: 1px;
  max-width: 900px;
}
.accent{ color: var(--accent); }

.kindling__note{
  font-size: clamp(16px, 1.05vw, 18px);
  font-style: italic;
  color:#888;
  text-align: center;
}

















:root{
  --bg-from:#f6efe7;
  --bg-to:#ffffff;
  --text:#1f1b18;
  --muted:#5f5851;
  --accent:#b8875f;
  --green:#1f3e2e;
  --container:1200px;

  /* 🔽 PODMIEŃ: jeden plik tła sekcji kontakt */
  --contact-bg:url("images/kontakt-bg.jpg");
}

/* Sekcja + tło w tym samym stylu */
.contact {
  position: relative;
  background: linear-gradient(90deg, var(--bg-from) 0%, var(--bg-to) 100%);
  color: var(--text);
  overflow: hidden;/
}

.contact__inner{
  position:relative; z-index:1;
  max-width:var(--container);
  margin:0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.contact__title {
  font-size: 3.5rem;
  margin-top: 0;       /* 🔽 usuń domyślny margines nagłówka */
  margin-bottom: 0px;
  text-align: center;
}
.contact__lead{
  text-align:center;
  font-size: clamp(16px,1.35vw,22px);
  line-height:1.7;
  margin:0 auto clamp(24px,2.2vw,36px);
  color:var(--text);;
}

/* GRID: lewa lista – mapa – prawa tabliczka */
.contact__grid{
  display:grid;
  grid-template-columns: 1.05fr .9fr 1fr;
  gap: clamp(20px,2.6vw,40px);
  align-items:start;
}

.contact__list{
  list-style:none; padding:0; margin:0;
  display:flex; flex-direction:column; gap:18px;
  font-size: clamp(16px,1.25vw,20px);
}
.contact__list li{ display:flex; align-items:center; gap:14px;}
.contact__list a{ color:var(--text); text-decoration:none; border-bottom:2px solid transparent; }
.contact__list a:hover{ border-color:currentColor; }
.contact__list .ico{
  display:block;         /* usuwa „szparę” pod img */
  width: 56px;            /* wielkość ikony -> zmieniaj tu */
  height:56px;
  flex:0 0 56px;         /* << rezerwuje 56px na kolumnę ikony */
  object-fit:contain;    /* bez zniekształceń */
}
.contact__list .dash{ width:16px; height:2px; background:rgba(0,0,0,.2); display:inline-block; margin:0 4px; }




.contact__map {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0, 0, 0, .12);
  width: 100%;
  max-width: 420px; /* możesz dopasować do szerokości treści */
  height: 200px;    /* wysokość mapy */
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}


.contact__right{ display:flex; flex-direction:column; gap: 1px; align-items:flex-end; }
.contact__markets{ display:flex; gap:12px; align-items:center; }
.contact__markets img {
  height: 64px;
  width: auto;
  opacity: .9;
  margin-left: 20px;
  transition: transform .2s ease, opacity .2s ease;
  cursor: pointer;
}

.contact__markets a:hover img {
  transform: scale(1.08);  /* powiększenie */
  opacity: 1;              /* pełna widoczność */
}

.contact__sign{
  width:min(100%, 420px);
  height:auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.25));
}

.contact__row {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--text);
  border-bottom: 2px solid transparent; /* efekt hover */
  padding: 2px 0; /* oddech pod borderem */
}

.contact__row:hover {
  border-color: currentColor;
}

.contact__row .ico {
  display: block;
  width: 56px;       /* rozmiar ikon */
  height: 56px;
  flex: 0 0 56px;    /* stała szerokość kolumny ikony */
  object-fit: contain;
}




/* Pasek opinii */
.reviews{
  background:var(--green);
  color:#fff;
  padding: clamp(20px,2.6vw,28px) 0;
  margin-top: 20px;
}
.reviews__inner{
  max-width:var(--container);
  margin:0 auto;
  padding:0 24px;
  display:grid;
  grid-template-columns: .9fr 1fr 1fr 1fr;
  gap: clamp(16px,2vw,28px);
  align-items:center;
}
.reviews__left{
  display:flex; align-items:center; gap:16px;
}
.reviews__left img{ width:240px; height:auto; }
.stars{ font-size:28px; letter-spacing:4px; }

.bubble{
  position:relative;
  background:#eef3f0;
  color:#0f1713;
  border-radius:22px;
  padding:18px 18px 16px;
  box-shadow: 0 10px 28px rgba(0,0,0,.18) inset;
}
.bubble::after{
  content:"";
  position:absolute; left:24px; bottom:-18px;
  width:0; height:0; border:10px solid transparent; border-top-color:#eef3f0;
}
.bubble strong{ display:block; font-size:1.05rem; margin-bottom:6px; }
.bubble p{ margin:0; line-height:1.45; }

/* RWD */
@media (max-width:1100px){
  .contact__grid{ grid-template-columns: 1fr; }
  .contact__right{ align-items:center; }
  .contact__markets{ justify-content:center; }
  .contact__sign{ width:min(92%,420px); }
}
@media (max-width:980px){
  .contact::before{ opacity:.22; background-position:center top; background-size:120%; }
  .reviews__inner{ grid-template-columns:1fr; text-align:center; }
  .reviews__left{ justify-content:center; }
  .bubble::after{ left:50%; transform:translateX(-50%); }
}





/* ========== STOPKA ========== */
.site-footer {
  background: #8E6A45;   /* brąz */
  color: #fff;
  font-size: 0.9rem;
  padding: 10px 20px;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer__logo {
  height: 48px;      /* wysokość loga – możesz zmienić */
  width: auto;
  display: block;
}

.footer__cta {
  margin: 0;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
  flex: 1;           /* CTA zajmie środek */
}

.footer__rights {
  margin: 0;
  white-space: nowrap;  /* nie łamie się na 2 linie */
}

/* Responsywność */
@media (max-width: 640px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
  .footer__cta {
    flex: none;
  }
}





















/* ========== PRELOADER ========== */
#preloader {
  position: fixed;
  inset: 0;
  background: #244A3A;          /* ciemna zieleń brandu */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity .6s ease, visibility .6s ease;
}

#preloader.hide {
  opacity: 0;
  visibility: hidden;
}

.preloader__logo img {
  width: 120px;
  height: auto;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.1); opacity: 0.8; }
}



/* ===== Wspólny system odstępów dla wszystkich sekcji ===== */

/* Bazowe odstępy (desktop) */
.section__inner{
  /* NIE nadpisujemy Twoich dotychczasowych paddingów – to tylko fallback
     gdy jakaś sekcja nie ma swoich. Zostaw tak lub usuń, jeśli każda sekcja
     ma własne wartości. */
  padding-top: clamp(56px, 8vw, 96px);
  padding-bottom: clamp(48px, 7vw, 88px);
  gap: clamp(20px, 4vw, 56px);
}

/* Ultra-wide – ciaśniej, żeby nie było „pustych pól” przy oddaleniu */
@media (min-width: 1400px){
  .section__inner{
    padding-top: 68px;
    padding-bottom: 72px;
    gap: 28px;
  }
}
@media (min-width: 1800px){
  .section__inner{
    padding-top: 56px;
    padding-bottom: 64px;
    gap: 24px;
  }
}

/* Mobile – ciaśniej i mniejsze ikony / punkty list */
@media (max-width: 640px){
  .section__inner{
    padding-top: 32px;
    padding-bottom: 20px;
    gap: 20px;
  }

  /* Ujednolicenie list i ikon w sekcjach */
  .feature,
  .about__list li{ margin-bottom: 8px; }

  .contact-ico,
  .about__icon,
  .feature__icon{ width: 44px; height: 44px; }
}

/* Drobne globalne „szwy” dla elementów nad/pod sekcjami */
.section .fuelwood__features,
.section .about__list{ margin-bottom: 6px; }  /* lista nad kolejnym blokiem */
.section .fuelwood__contacts,
.section .about__location{ margin-top: 6px; gap: 16px; } /* ikonki kontaktów */


/* === FIX: zbyt duże przerwy przy oddaleniu === */

/* 1) Wyłącz sztuczne rozciąganie sekcji tartacznej na szerokich ekranach */
@media (min-width: 1200px){
  .sawmill{
    min-height: auto;        /* zamiast 80vh */
    align-items: flex-start;  /* treść startuje od góry sekcji */
  }
}

/* 2) Uporządkuj pionowe odstępy między sekcjami (tylko spacing) */
@media (min-width: 1400px){
  .section__inner{
    padding-top: 56px;
    padding-bottom: 56px;
    gap: 28px;
  }
  /* elementy pod listami – zacieśnij */
  .fuelwood__features{ margin-bottom: 4px; }
  .fuelwood__contacts{ margin-top: 4px; gap: 16px; }
  /* mniejsze ikony, żeby nie pompowały wysokości */
  .contact-ico{ width: 72px; height: 72px; }
  .feature__icon{ width: 56px; height: 56px; }
}

@media (min-width: 1800px){
  .section__inner{
    padding-top: 48px;
    padding-bottom: 48px;
    gap: 24px;
  }
  .contact-ico{ width: 64px; height: 64px; }
  .feature__icon{ width: 48px; height: 48px; }
}

/* 3) (Opcjonalnie) jeśli któraś sekcja nadal wygląda na „za wysoką”,
      możesz ustawić minimalną wysokość adaptacyjną zamiast stałego 80vh: */
.sawmill{
  min-height: clamp(520px, 70vh, 860px);
}
@media (min-width: 1200px){
  .sawmill{ min-height: auto; }  /* a na szerokich całkiem wyłącz */
}
/* 1) Dociśnij dół sekcji kontakt */
.contact, .contact__inner {
  padding-bottom: 0;          /* jeśli masz gdzieś większy padding – nadpisze go */
}

/* 2) Usuń baseline-gapa pod obrazkiem i wszelkie końcowe marginesy */
.contact__right {
  gap: 6px;                   /* delikatny odstęp między elementami */
  margin-bottom: 0;
}
.contact__right > * { margin-bottom: 0; }

.contact__sign {
  display: block;             /* eliminuje „szparę” pod <img> */
  margin: 0;                  /* żadnych dodatkowych marginesów na końcu kolumny */
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(0,0,0,.25));
}

/* 3) Zmniejsz (albo wyzeruj) odstęp nad opiniami */
.reviews{
  margin-top: 0px;            /* spróbuj 0 lub nawet -6px jeśli chcesz „przykleić” */
}
section {
  padding: 0;   /* każda sekcja ma 60px góra/dół */
}























/* --- DESKTOP (zostaje jak masz) --- */
.sawmill__inner{
  display:grid;
  grid-template-columns: 1.1fr .9fr;   /* 55/45 */
  gap: clamp(24px,4vw,56px);
  align-items:center;
}

/* --- TABLET ≤ 1024px --- */
@media (max-width: 1024px){
  .sawmill__title{
    font-size: clamp(34px, 5vw, 48px);
    line-height: 1.1;
  }
  .sawmill__lead{
    font-size: clamp(16px, 1.8vw, 18px);
    line-height: 1.7;
  }
  .sawmill__features{           /* delikatnie więcej oddechu nad listą */
    margin-top: 18px;
  }
  .feature__icon{               /* ikona odrobinę mniejsza na tablet */
    width: 58px;
    height: 58px;
  }
  .sawmill__art{                /* obrazki po prawej niech się nie „wylewają” */
    max-width: 520px;
    width: 100%;
    height: auto;
  }
}

/* --- MOBILE ≤ 768px (jedna kolumna) --- */
@media (max-width: 768px){
  .sawmill__inner{
    grid-template-columns: 1fr;        /* 1 kolumna */
    gap: 24px;
  }

  /* kolejność w DOM już jest dobra: treść → obraz,
     więc nic nie przestawiamy orderem */

  .sawmill__title{
    font-size: clamp(28px, 8vw, 40px);
  }
  .sawmill__lead{
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.75;
    margin-bottom: 6px;
  }

  /* Lista checków – taka sama stylistyka, tylko proporcje pod kciuk */
  .sawmill__features{
    margin-top: 12px;
    gap: 12px;
  }
  .sawmill__features li span{           /* 1:1 jak w about__list */
    font-size: clamp(15px, 4vw, 18px);
    font-weight: 600;
    font-style: italic;
  }
  .feature__icon{
    width: 50px;                        /* mobilny rozmiar ikony */
    height: 50px;
  }

  /* CTA = szerokość kolumny, wygodny tap-target */
  .sawmill__cta{
    width: 100%;
    max-width: 640px;
    margin: 18px auto 0;
    padding: 14px 22px;
    font-size: clamp(15px, 3.8vw, 17px);
    border-radius: 999px;
  }

  /* Obraz(ki) – na środek pod treścią */
  .sawmill__right{
    display: grid;
    place-items: center;
  }
  .sawmill__art{
    max-width: 440px;
    width: min(100%, 440px);
    height: auto;
    filter: drop-shadow(0 14px 32px rgba(0,0,0,.16));
  }
}

/* --- MAŁE TELEFONY ≤ 360px (fudge) --- */
@media (max-width: 360px){
  .feature__icon{ width: 42px; height: 42px; }
  .sawmill__cta{ padding: 12px 18px; }
}

/* Wyłącz „powiększanie” na hover na dotyku – spójnie z Twoim wzorem */
@media (hover: none) and (pointer: coarse){
  .sawmill__features li{ transition: none; transform: none !important; }
}
@media (max-width: 768px){
  .sawmill__inner{
    display:flex;
    flex-direction: column;   /* treść → obraz */
    gap: 24px;
  }
  .sawmill__left  { order: 1; }
  .sawmill__right { order: 2; }
}




/* ========== RESPONSYWNOŚĆ: FUELWOOD ========== */

/* — duże laptopy / węższe desktopy — */
@media (max-width: 1200px){
  .fuelwood__title{
    font-size: clamp(2.6rem, 4.2vw, 3.2rem);
  }
  .fuelwood__right{
    width: min(600px, 92vw);
  }
  .fuelwood__art{
    max-width: 1000px;
    width: 160%;                 /* delikatnie mniejsza skala niż 200% */
  }
}

/* — tablet poziomo / małe laptopy — */
@media (max-width: 1024px){
  .fuelwood__inner{
    gap: clamp(20px, 4vw, 40px);
  }
  .fuelwood__lead{
    letter-spacing: .6px;
    margin-bottom: 22px;
  }
  .fuelwood__art{
    max-width: 860px;
    width: 140%;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.16));
  }
}

/* — tablet pion / większe telefony — przejście na 1 kolumnę (TREŚĆ → OBRAZ) — */
@media (max-width: 900px){
  .fuelwood__inner{
    grid-template-columns: 1fr;
    /* twarda kolejność: tekst nad obrazem */
    display: grid;
  }
  .fuelwood__right{              /* tekstowy blok */
    margin-left: 0;
    width: 100%;
  }
  .fuelwood__left{               /* obraz pod treścią, wyśrodkuj */
    display: grid;
    place-items: center;
  }
  .fuelwood__art{
    width: auto;                 /* porzucamy 200% na mobile */
    max-width: 560px;
    height: auto;
    transform: none;
  }

  /* listy cech i ikonki – wygodniejsze pod kciuk */
  .fuelwood__features{
    margin-top: 12px;
  }
  .feature__icon{
    width: 56px;
    height: 56px;
  }
  .feature__text{
    font-size: clamp(0.95rem, 2.9vw, 1.05rem);
    line-height: 1.55;
  }

  /* watermark w tle: trochę mniejszy i bliżej środka */
  .fuelwood::after{
    background-size: min(92vw, 680px);
    opacity: .06;
  }
}

/* — małe telefony — */
@media (max-width: 480px){
  .fuelwood__inner{ gap: 18px; }

  .fuelwood__title{
    font-size: clamp(2.1rem, 8vw, 2.6rem);
    margin-bottom: 14px;
  }
  .fuelwood__lead{
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.75;
    max-width: 46ch;          /* czytelna długość linii */
    margin: 8px 0 18px;
  }

  .feature__icon{ width: 46px; height: 46px; }

  .fuelwood__art{
    max-width: 440px;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,.16));
  }

  /* ikony kontaktów u dołu */
  .contact-ico{
    width: 72px;
    height: 72px;
  }
}

/* — bardzo małe telefony — */
@media (max-width: 360px){
  .feature__icon{ width: 40px; height: 40px; }
  .contact-ico{ width: 64px; height: 64px; }
}
/* --- MOBILE ≤ 900px --- */
@media (max-width: 900px){
  .fuelwood__inner{
    display: flex;              /* zamiast grida */
    flex-direction: column;     /* treść nad obrazem */
    gap: 24px;
  }

  .fuelwood__right{ order: 1; } /* blok tekstowy zawsze pierwszy */
  .fuelwood__left{ order: 2; }  /* obraz zawsze drugi */

  .fuelwood__left{
    display: grid;
    place-items: center;
  }
  .fuelwood__art{
    width: auto;
    max-width: 560px;
    height: auto;
    transform: none;
  }
}
/* --- MOBILE ≤ 900px --- */
@media (max-width: 900px){
  /* checkmarki w liście */
  .feature__icon{
    width: 64px;
    height: 64px;
  }
  .feature__text{
    font-size: clamp(1rem, 3.6vw, 1.2rem);
    line-height: 1.55;
  }

  /* ikony kontaktowe */
  .contact-ico{
    width: 100px;
    height: 100px;
  }
}

/* --- MAŁE TELEFONY ≤ 480px --- */
@media (max-width: 480px){
  .feature__icon{
    width: 72px;
    height: 72px;
  }
  .feature__text{
    font-size: clamp(1.05rem, 4vw, 1.25rem);
  }

  .contact-ico{
    width: 120px;
    height: 120px;
  }
}
/* --- CHECKMARKI: USŁUGI TARTACZNE --- */
.sawmill__features .feature__icon {
  width: 40px;    /* zmniejszona ikona na mobile */
  height: 40px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .sawmill__features .feature__icon {
    width: 52px;  /* na tabletach trochę większa */
    height: 52px;
  }
}

@media (min-width: 1200px) {
  .sawmill__features .feature__icon {
    width: 64px;  /* na desktopach proporcjonalnie do tekstu */
    height: 64px;
  }
}
/* ========== RESPONSYWNOŚĆ: DONICE OGRODOWE ========== */

/* --- duże laptopy / mniejsze desktopy --- */
@media (max-width: 1200px){
  .planters__title{
    font-size: clamp(2.6rem, 4.4vw, 3.2rem);
  }
  .planters__lead{
    letter-spacing: .6px;
    margin-bottom: 22px;
  }
  .planters__art{
    max-width: 420px;
  }
}

/* --- tablet poziomo / mały laptop --- */
@media (max-width: 1024px){
  .planters__inner{
    gap: clamp(20px, 4vw, 40px);
  }
  .planters__title{
    font-size: clamp(2.3rem, 4.6vw, 2.9rem);
    margin-bottom: 18px;
  }
  .planters__lead{
    font-size: clamp(17px, 2vw, 18px);
    line-height: 1.7;
  }
  .planters__art{
    max-width: 380px;
  }
}

/* --- mobile ≤ 900px: TREŚĆ NAD OBRAZEM --- */
@media (max-width: 900px){
  .planters__inner{
    display: flex;
    flex-direction: column;   /* treść → obraz */
    gap: 24px;
  }

  .planters__right{ order: 1; width: 100%; margin-left: 0; }
  .planters__left{ order: 2; display: grid; place-items: center; }

  .planters__title{
    font-size: clamp(2.1rem, 7vw, 2.6rem);
  }
  .planters__lead{
    font-size: clamp(15px, 4vw, 17px);
    max-width: 46ch;
    margin-bottom: 20px;
  }

  .planters__art{
    width: auto;
    max-width: 480px;
    transform: none;
  }
}

/* --- małe telefony ≤ 480px --- */
@media (max-width: 480px){
  .planters__inner{ gap: 18px; }
  .planters__title{ font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .planters__lead{ font-size: 0.95rem; line-height: 1.65; }
  .planters__art{ max-width: 360px; }
  .btn-primary{ 
    font-size: clamp(0.95rem, 3.6vw, 1.05rem);
    padding: 14px 24px;
  }
}

/* ========== RESPONSYWNOŚĆ: ROZPAŁKA (kindling) ========== */

/* — duże laptopy / węższe desktopy — */
@media (max-width: 1200px){
  .kindling__title{
    font-size: clamp(2.6rem, 4.4vw, 3.2rem);
  }
  .kindling__art{
    max-width: 420px;
  }
}

/* — tablet poziomo / małe laptopy — */
@media (max-width: 1024px){
  .kindling__inner{
    gap: clamp(20px, 4vw, 40px);
  }
  .kindling__lead{
    letter-spacing: .6px;
    margin-bottom: 24px;
  }
  .kindling__art{
    max-width: 380px;
    filter: drop-shadow(0 10px 24px rgba(0,0,0,.16));
  }
  .kindling::after{
    background-size: min(52vw, 360px);  /* watermark odrobinę większy */
    opacity: .06;
  }
}

/* — mobile ≤ 900px: TREŚĆ NAD OBRAZEM — */
@media (max-width: 900px){
  .kindling__inner{
    display: flex;              /* prosto i pewnie */
    flex-direction: column;     /* tekst → obraz */
    gap: 24px;
  }
  .kindling__title{
    font-size: clamp(2.1rem, 7vw, 2.6rem);
    margin-bottom: 16px;
  }
  .kindling__lead{
    font-size: clamp(15px, 4vw, 17px);
    line-height: 1.75;
    max-width: 46ch;
    margin-bottom: 18px;
    text-align: justify;
  }
  .kindling__right{ order: 2; display: grid; place-items: center; }
  .kindling__art{
    width: auto;
    max-width: 520px;
    height: auto;
    transform: none;
  }
  .kindling::before{
    background-position: 70% center;     /* tło nie wjeżdża pod tekst */
    background-size: cover;
    opacity: .92;
  }
  .kindling::after{
    background-size: min(88vw, 420px);
    opacity: .07;
  }
}

/* — małe telefony ≤ 480px — */
@media (max-width: 480px){
  .kindling__inner{ gap: 18px; }
  .kindling__title{ font-size: clamp(1.9rem, 8vw, 2.4rem); }
  .kindling__lead{ font-size: 0.95rem; line-height: 1.68; }
  .kindling__art{ max-width: 400px; }
  .kindling__note{ font-size: clamp(14px, 3.6vw, 16px); }
}
/* ================== NAV – RWD BEZ BURGERA ================== */

/* tablet / węższy desktop */
@media (max-width: 960px){
  .nav{
    padding: 12px 16px;
    flex-wrap: wrap;           /* pozwól zejść do 2 wierszy */
    row-gap: 10px;
  }

  /* brand zostaje w 1. wierszu, linki zejdą niżej */
  .nav__brand img{ height: 48px; }
  .nav__brand{
    font-size: clamp(14px, 3.6vw, 16px);
    gap: 8px;
    flex: 1 1 auto;           /* elastyczne miejsce na nazwę */
  }

  .nav__links{
    width: 100%;
    justify-content: center;  /* linki po środku w 2. wierszu */
    gap: 18px;
    flex-wrap: wrap;          /* zawijanie, gdy ciasno */
  }

  .nav__links a{
    font-size: clamp(0.95rem, 2.6vw, 1.05rem);
  }
}

/* mobile */
@media (max-width: 600px){
  .nav{
    padding: 10px 12px;
    row-gap: 8px;
  }

  /* na bardzo wąsko – brand na pełną szerokość i wyśrodkuj */
  .nav__brand{
    width: 100%;
    justify-content: center;
    text-align: center;
  }
  .nav__brand img{ height: 42px; }

  .nav__links{
    gap: 14px;
  }
  .nav__links a{
    padding: 6px 0;           /* większy tap-target bez burgera */
    letter-spacing: .05em;
  }
}

/* bardzo małe telefony */
@media (max-width: 360px){
  .nav{ padding: 8px 10px; }
  .nav__brand img{ height: 38px; }
  .nav__links{ gap: 10px; }
  .nav__links a{ font-size: 0.95rem; letter-spacing: .04em; }
}

/* ================== WYŁĄCZENIE ANIMACJI NA MOBILE ================== */
@media (hover: none) and (pointer: coarse) {
  * {
    transition: none !important;
    animation: none !important;
  }
}
/* --- OFERTA: sklej dół sekcji z następną --- */
.offer{
  padding-bottom: 0;   /* nic pod gridem */
  margin-bottom: 0;
}
.offer .section-title{ margin-bottom: 18px; }  /* tytuł bliżej siatki */
.offer__grid{ margin-bottom: 0; }              /* zero dodatkowego miejsca */

/* jeśli w HTML był przycisk pod gridem – ukryj */
.offer__cta{ display:none !important; }

/* następna sekcja (np. .about) bez górnego luzu tuż po ofercie */
.offer + .about{ margin-top: 0; padding-top: 0; }

/* --- RWD siatki: 3 → 2 → 1 kolumna --- */
@media (max-width: 1024px){
  .offer__grid{
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 24px;
  }
  .offer__card{ padding: 22px 18px; }
  .offer__img{ height: 160px; }
}

@media (max-width: 640px){
  .offer{ padding-top: 16px; }               /* mniejszy top na mobile */
  .section-title{
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-bottom: 14px;
  }
  .offer__grid{
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .offer__card{ padding: 18px 16px; border-radius: 14px; }
  .offer__img{ height: 140px; }
}
/* 1) sklej dół oferty z następną sekcją */
.offer{ padding-bottom: 0; margin-bottom: 0; }
.offer__grid{ margin-bottom: 0; }

/* 2) dociągnij "Kim jesteśmy?" pod kafelki i zgaś jej top–padding */
.offer + .about{
  padding-top: 0 !important;     /* zabija globalny padding sekcji */
  margin-top: -32px;             /* podsuwa o ~32px pod kafelki */
  position: relative;
  z-index: 1;                     /* nad tłem oferty */
}

/* 3) siekiera ma startować od samej krawędzi sekcji */
.offer + .about::after{
  background-position: top center;   /* było: center */
  /* jeśli chcesz jeszcze wyżej, dodaj: background-size: 110% auto; */
}

/* (opcjonalnie) dopasuj overlap na małych ekranach */
@media (max-width: 768px){
  .offer + .about{ margin-top: -20px; }  /* mniejsze „wejście” pod kafelki */
}
/* Desktop domyślnie: 3 kolumny */
.offer__grid {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 34px;
  justify-items: center;
  align-items: stretch;
  padding-inline: 24px;
}

/* Tablety: 2 kolumny */
@media (max-width: 992px) {
  .offer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Telefony: 1 kolumna */
@media (max-width: 600px) {
  .offer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .offer__card {
    width: 100%;         /* pełna szerokość */
    max-width: 420px;    /* ale nie za szeroko */
    margin-inline: auto; /* wyśrodkuj */
  }
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #244A3A; /* Twój zielony */
  color: #fff;
  padding: 14px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  z-index: 9999;
}

.cookie-banner p {
  margin: 0;
  line-height: 1.4;
}

.cookie-banner button {
  background: #fff;
  color: #244A3A;
  font-weight: 600;
  border: none;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
}

.cookie-banner button:hover {
  opacity: 0.85;
}
.nav__brand span {
  font-family: "Special Elite", cursive;
  letter-spacing: 1px;
}
.nav__links a {
  font-family: "Special Elite", cursive;
  letter-spacing: 1px;
  font-weight: 500;        /* żeby nie wyglądały zbyt grubo */
  text-transform: uppercase;
}


/* 1) Nigdy nie pozwól obrazkom wyjść poza kontener */
img { max-width: 100%; height: auto; }

/* 2) Pasek ikon – elastyczny, z odstępem i zawijaniem */
.contact-icons{
  display: flex;
  justify-content: flex-start;   /* albo flex-end / center – jak wolisz */
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(10px, 2.2vw, 18px);
  margin: clamp(12px, 2vw, 24px) 0 0;
  padding: 0;
  list-style: none;
}

/* 3) Każda ikona ma stały kwadrat (responsywny), nie kurczy się */
.contact-icons li{ flex: 0 0 auto; }

.contact-icons a{
  display: inline-flex;
  width: clamp(28px, 4vw, 42px); /* responsywny rozmiar */
  aspect-ratio: 1 / 1;           /* zawsze kwadrat */
  align-items: center;
  justify-content: center;
  border-radius: 999px;          /* większy hit-area na dotyk */
  padding: clamp(6px, 1.2vw, 8px);
  transition: transform .15s ease, opacity .15s ease;
}

.contact-icons a:hover{ transform: translateY(-1px); opacity: .9; }
.contact-icons a:active{ transform: translateY(0); }

/* 4) Obraz ikony wypełnia kwadrat bez ściśnięcia */
.contact-icons img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* 5) Małe ekrany – wycentruj i daj oddech od treści obok */
@media (max-width: 768px){
  .contact-icons{ justify-content: center; margin-top: 16px; }
}



/* KARTA MAPY – responsywna, z promieniem i cieniem */
.contact__map{
  --radius: 18px;
  position: relative;
  width: min(560px, 100%);   /* nie większa niż kolumna */
  aspect-ratio: 16 / 11;     /* proporcje na desktopie */
  border-radius: var(--radius);
  overflow: hidden;
  background: #eef3ea;       /* tło zanim załaduje się mapa */
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
}

/* Iframe wypełnia kontener, ignorujemy width/height z HTML */
.contact__map iframe{
  position: absolute;
  inset: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
  display: block;
}

/* Kolumna z mapą nie może „rozpychać” układu (grid/flex) */
.contact__right, .map-column, .contact__map { min-width: 0; }

/* Breakpointy – zmiana proporcji na węższych ekranach */
@media (max-width: 900px){
  .contact__map{ aspect-ratio: 4 / 3; }
}
@media (max-width: 560px){
  .contact__map{ aspect-ratio: 1 / 1; }  /* kwadrat na mobile */
}

/* Jeśli masz sticky header i nawigacja kotwiczy do #kontakt */
#kontakt{ scroll-margin-top: 80px; } /* dopasuj do wysokości nagłówka */
