:root{
  --red:#380808;
  --dark:#3e2a26;
  --cream:#f1eeec;
  --white:#ffffff;

  --serif:"Fraunces", serif;
  --sans:"Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;

  --container:1120px;
  --radius:18px;

  --line-light: rgba(62,42,38,.18);
  --shadow: 0 18px 50px rgba(0,0,0,.12);
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family: var(--sans);
  line-height:1.55;
  color: var(--dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

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

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

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

.kicker{
  margin:0 0 14px;
  font-size:12px;
  letter-spacing:.22em;
  text-transform:uppercase;
  opacity:.85;
}

h1,h2,h3{
  font-family: var(--serif);
  font-weight:400;
  line-height:1.05;
  letter-spacing:-0.02em;
  margin:0;
}

.h2{
  font-size: clamp(30px, 3.2vw, 46px);
  margin-bottom:14px;
}

.lead{
  font-size:18px;
  max-width:64ch;
  margin:18px 0 0;
  opacity:.9;
}

.section{ padding:84px 0; }

.theme-cream{
  background: var(--cream);
  color: var(--dark);
}

.theme-white{
  background: var(--white);
  color: var(--dark);
}

.theme-dark{
  background: var(--dark);
  color: var(--cream);
}

/* =========================
   TOPBAR
   ========================= */

.topbar{
  position: fixed;
  top:0;
  left:0;
  right:0;
  z-index: 50;
  pointer-events: none;
}

.topbar__inner{
  width:min(var(--container), calc(100% - 48px));
  margin: 18px auto 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 14px;
  pointer-events: auto;
  position: relative;
}

.topbar__spacer{
  width:44px;
  height:44px;
}

.icon-btn{
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid rgba(241,238,236,.45);
  background: rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
  cursor:pointer;
  display:grid;
  place-items:center;
}

.icon-btn:focus-visible{
  outline:none;
  box-shadow: 0 0 0 3px rgba(241,238,236,.25);
}

.burger{
  width:18px;
  height:2px;
  position:relative;
  background: var(--cream);
  border-radius:2px;
}

.burger::before,
.burger::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  height:2px;
  background: var(--cream);
  border-radius:2px;
}

.burger::before{ top:-5px; }
.burger::after{ bottom:-5px; }

.topbar__brand{
  margin-left: 14px;
  opacity: 0;
  pointer-events: none;
}

.topbar__brandText{
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .04em;
  color: var(--dark);
}

body.is-morph-done .topbar__brand{
  opacity: 1;
  pointer-events: auto;
}

body.is-scrolled .topbar__brandText{
  color: var(--dark);
  text-shadow: none;
}

.topbar--subpage .topbar__inner{
  justify-content: space-between;
}

.topbar--subpage .topbar__brand{
  display: inline-flex !important;
  align-items: center;
  opacity: 1;
  pointer-events: auto;
  margin-left: 0;
}

.topbar--subpage .topbar__brandText{
  color: var(--cream);
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 10px 28px rgba(0,0,0,.24);
}
/* =========================
   HERO
   ========================= */

.hero{
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: var(--red);
}

.hero__media{
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url("../img/hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 18%;
}

.hero__overlay{
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,.34),
    rgba(0,0,0,.16),
    rgba(0,0,0,.10)
  );
}

.hero__center{
  position: relative;
  z-index: 2;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 24px;
}

.hero__eyebrow{
  margin: 0 auto;
  max-width: 36ch;
  font-family: var(--sans);
  font-size: clamp(22px, 2vw, 34px);
  line-height: 1.35;
  font-weight: 400;
  color: rgba(241,238,236,.96);
  text-align: center;
  text-shadow: 0 12px 34px rgba(0,0,0,.22);
  opacity: 0;
  animation: heroFadeUp .9s cubic-bezier(.22,1,.36,1) .12s forwards;
}

.hero__bottomTitle{
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(20px, 4vh, 42px);
  z-index: 3;
  text-align: center;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: .92;
  color: rgba(241,238,236,.95);
  text-shadow: 0 18px 55px rgba(0,0,0,.22);
  white-space: nowrap;
  padding: 0 5vw;
  font-size: clamp(48px, 8vw, 160px);
  pointer-events: none;
  will-change: transform, opacity;
}

.hero__bottomTitle.is-morphing{
  position: fixed;
  left: 0;
  top: 0;
  right: auto;
  bottom: auto;
  z-index: 60;
}

body.is-morph-done #morphTitle{
  opacity: 0;
}

.scroll-sentinel{
  height: 1px;
}

@keyframes heroFadeUp{
  from{
    opacity: 0;
    transform: translateY(18px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   HERO INTRO
   ========================= */

.hero-intro{
  padding: 84px 0 96px;
}
.hero-intro__headline{
  margin: 0 0 22px;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--dark);
  font-size: clamp(28px, 3vw, 46px);
  max-width: 30ch;
}

.hero-intro__copy{
  max-width: 30ch;
  margin: 0 0 22px;
}
.hero-intro__accent{
  margin: 0;
  max-width: 22ch;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--dark);
  font-size: clamp(24px, 2.2vw, 40px);
}
.hero-intro__inner{
  max-width: 900px;
  margin-inline: auto;
  text-align: left;
}


.hero-intro__copy p{
  margin: 0 0 12px;
  font-size: clamp(17px, 1.15vw, 21px);
  line-height: 1.65;
  color: rgba(62,42,38,.88);
}

.hero-intro__copy p:last-child{
  margin-bottom: 0;
}

/* =========================
   REVEAL
   ========================= */

.reveal{
  opacity: 0;
  transform: translateY(28px);
  filter: blur(6px);
  transition:
    opacity .8s cubic-bezier(.22,1,.36,1),
    transform .8s cubic-bezier(.22,1,.36,1),
    filter .8s cubic-bezier(.22,1,.36,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform, filter;
}

.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce){
  .reveal{
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* =========================
   DRAWER MENU
   ========================= */

.drawer{
  position: fixed;
  inset:0;
  z-index: 80;
  pointer-events: none;
}

.drawer.is-open{
  pointer-events: auto;
}

.drawer__panel{
  position:absolute;
  inset:0;
  z-index:2;
  background: var(--white);
  color: var(--dark);
  transform: translateY(-8px);
  opacity: 0;
  transition: opacity .18s ease, transform .18s ease;
}

.drawer.is-open .drawer__panel{
  opacity:1;
  transform: translateY(0);
}

.drawer__header{
  width:min(var(--container), calc(100% - 48px));
  margin: 18px auto 0;
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 14px 0 10px;
}

.drawer__brand{
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: .02em;
}

.close-x{
  font-size: 26px;
  line-height: 1;
  color: var(--dark);
}

.drawer .icon-btn{
  border:1px solid var(--line-light);
  background: rgba(255,255,255,.75);
}

.drawer__nav{
  width:min(var(--container), calc(100% - 48px));
  margin: 20px auto 0;
  border-top: 1px solid var(--line-light);
}

.drawer__item{
  display:block;
  padding: 18px 0;
  font-size: 30px;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: -0.01em;
  border-bottom: 1px solid var(--line-light);
}

.drawer__item:hover{
  opacity: .78;
}

.drawer__footer{
  width:min(var(--container), calc(100% - 48px));
  margin: 22px auto 0;
  opacity:.75;
  font-size: 13px;
}

.drawer__backdrop{
  position:absolute;
  inset:0;
  z-index:1;
  background: rgba(0,0,0,0);
}

/* =========================
   CTA / KONTAKT
   ========================= */

.cta-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.cta-card{
  border-radius: var(--radius);
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-light);
  box-shadow: var(--shadow);
  padding: 22px;
  transition: transform .18s ease;
}

.cta-card:hover{
  transform: translateY(-2px);
}

.cta-title{
  font-family: var(--serif);
  font-size: 24px;
  margin-bottom: 10px;
}

.cta-desc{
  opacity:.86;
}

.contact-card{
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.7);
  padding: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-label{
  font-size: 12px;
  letter-spacing:.2em;
  text-transform: uppercase;
  opacity:.75;
  margin-bottom:6px;
}

.contact-value{
  font-weight:600;
}

.footer{
  padding: 34px 0 44px;
}

/* =========================
   HOME – MISJA
   ========================= */

.mission{
  padding: 96px 0 110px;
  background: var(--white);
  color: var(--dark);
}

.mission__inner{
  max-width: 980px;
}

.mission__kicker{
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.mission__title{
  margin: 0 0 32px;
  max-width: 12ch;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -0.03em;
  font-size: clamp(38px, 4.8vw, 72px);
  color: var(--dark);
}

.mission__content{
  max-width: 760px;
}

.mission__content p{
  margin: 0 0 22px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.8;
  color: rgba(62,42,38,.88);
}

.mission__content p:last-child{
  margin-bottom: 0;
}

.mission__cta{
  margin-top: 38px;
}

.mission__link{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(62,42,38,.28);
  padding-bottom: 8px;
  transition: opacity .18s ease, transform .18s ease, border-color .18s ease;
}

.mission__link:hover{
  opacity: .75;
  transform: translateY(-1px);
  border-color: rgba(62,42,38,.5);
}

/* =========================
   HOME – WYBIERZ ŚCIEŻKĘ
   ========================= */

#wybierz-sciezke{
  background: var(--dark);
  color: var(--cream);
}

#wybierz-sciezke .h2{
  color: var(--cream);
}

#wybierz-sciezke .cta-card{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(241,238,236,.14);
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  color: var(--cream);
}

#wybierz-sciezke .cta-card:hover{
  background: rgba(255,255,255,.09);
  transform: translateY(-2px);
}

#wybierz-sciezke .cta-desc{
  opacity: .86;
}

/* =========================
   O MNIE – BURGUND + ŚMIETANKOWE KAFELKI
   ========================= */

.about{
  background: var(--red);
  padding: 110px 0 70px;
}

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

.about__heading{
  text-align: center;
  margin-bottom: 26px;
}

.about__title{
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(18px, 2.3vw, 34px);
}

.about__line{
  width: 100%;
  height: 1px;
  background: rgba(241,238,236,.38);
  margin: 16px auto 0;
}

.about__homeLink{
  display: block;
  color: inherit;
  text-decoration: none;
}

.about__homeLink:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(241,238,236,.18);
  border-radius: 10px;
}

.about__panel{
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  color: var(--dark);
  position: relative;
}

.about__panel::before{
  content: none;
}

.about__panelInner{
  max-width: 100%;
  margin-inline: auto;
}

.about__panelInner--long{
  max-width: 74ch;
}

.about__block{
  position: relative;
  padding: 32px clamp(20px, 3vw, 34px);
  border-radius: 24px;
  border: 1px solid rgba(62,42,38,.10);
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(0,0,0,.10);
  color: var(--dark);
}

.about__block + .about__block{
  margin-top: 28px;
}

.about__block::before{
  content: "";
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(62,42,38,0) 0%,
    rgba(62,42,38,.16) 18%,
    rgba(62,42,38,.16) 82%,
    rgba(62,42,38,0) 100%
  );
}

.about__eyebrow{
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(62,42,38,.12);
  background: rgba(255,255,255,.5);
  font-size: 12px;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: rgba(62,42,38,.78);
}

.about__panelInner--long p{
  margin: 0 0 18px;
  line-height: 1.9;
  font-size: 18px;
  color: rgba(62,42,38,.92);
}

.about__panelInner--long p:last-child{
  margin-bottom: 0;
}

.about__highlight{
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  color: var(--dark);
}

.about__formula{
  font-family: var(--serif);
  font-size: clamp(26px, 2.5vw, 38px);
  line-height: 1.15 !important;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin: 20px 0 24px;
}

.about__quoteBlock{
  margin: 26px 0;
  padding: 22px 24px;
  border: 1px solid rgba(62,42,38,.10);
  border-radius: 18px;
  background: rgba(255,255,255,.58);
}

.about__quoteBlock p{
  margin: 0 0 14px;
  font-style: italic;
  color: rgba(62,42,38,.92);
}

.about__quoteBlock p:last-child{
  margin-bottom: 0;
}

/* =========================
   O MNIE – LAYOUT
   ========================= */

@media (min-width: 821px){
  .about__inner{
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    grid-template-areas:
      "heading heading"
      "panel photo"
      "testimonials testimonials";
    grid-template-rows: auto auto auto;
    gap: clamp(22px, 3.2vw, 64px);
    align-items: start;
  }

  .about__heading{ grid-area: heading; }
  .about__panel{ grid-area: panel; }
  .about__photoWrap{ grid-area: photo; }
  .testimonials{ grid-area: testimonials; }

  .about__photoWrap{
    position: relative;
    margin: 0;
  }

  .about__photo{
    width: 100%;
    height: min(72vh, 760px);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  .about__photoTitle{
    display: none;
  }
}

@media (max-width: 820px){
  .about{
    padding: 70px 0 56px;
  }

  .about__inner{
    width: min(var(--container), calc(100% - 32px));
  }

  .about__heading{
    position: absolute;
    top: 18px;
    left: 0;
    right: 0;
    z-index: 10;
    margin: 0;
    padding: 0 6px;
    text-align: center;
  }

  .about__title{
    color: var(--cream);
    text-shadow: 0 14px 40px rgba(0,0,0,.35);
    font-size: 20px;
    letter-spacing: .18em;
  }

  .about__line{
    width: 100%;
    background: rgba(241,238,236,.55);
    margin-top: 12px;
  }

  .about__photoWrap{
    position: relative;
    margin-top: 0;
    margin-bottom: 32px;
  }

  .about__photo{
    min-height: 520px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    background-image: url("../img/hero.jpg");
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
  }

  .about__photoTitle{
    position: absolute;
    left: 50%;
    bottom: -38px;
    transform: translateX(-50%);
    z-index: 6;
    pointer-events: none;
    font-family: var(--serif);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 0.92;
    text-transform: uppercase;
    color: rgba(0,0,0,.80);
    text-shadow: 0 18px 55px rgba(0,0,0,.18);
    white-space: nowrap;
    font-size: clamp(38px, 10.5vw, 64px);
    padding: 0 10px;
  }

  .about__block{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .about__block + .about__block{
    margin-top: 20px;
  }

  .about__block::before{
    left: 18px;
    right: 18px;
  }

  .about__panelInner--long{
    max-width: 100%;
  }

  .about__panelInner--long p{
    font-size: 17px;
    line-height: 1.8;
  }

  .about__formula{
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.18 !important;
  }

  .about__quoteBlock{
    padding: 18px 18px;
  }
}

@media (max-width: 820px){
  .about--subpage{
    padding-top: 0 !important;
  }

  .about--subpage .about__inner{
    width: 100%;
    margin: 0;
  }

  .about--subpage .about__photoWrap{
    margin-top: 0;
  }

  .about--subpage .about__photo{
    border-radius: 0;
    min-height: 64vh;
    background-position: center top;
  }

  .about--subpage .about__heading{
    top: 14px;
    left: 0;
    right: 0;
    padding: 0 16px;
  }
}

/* =========================
   TESTIMONIALS
   ========================= */

.testimonials{
  background: var(--red);
  padding: 70px 0 90px;
}

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

.testimonials__heading{
  text-align: center;
  margin-bottom: 26px;
}

.testimonials__title{
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  font-size: clamp(18px, 2.1vw, 30px);
}

.testimonials__line{
  width: 100%;
  height: 1px;
  background: rgba(241,238,236,.38);
  margin: 16px auto 0;
}

.testimonials__rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 420px);
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 10px 6px 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.testimonials__rail::-webkit-scrollbar{
  height: 0;
}

.testimonials__rail{
  scrollbar-width: none;
}

.testimonial{
  scroll-snap-align: start;
  background: var(--cream);
  border: 1px solid rgba(62,42,38,.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0,0,0,.08);
  padding: 22px 20px;
  color: var(--dark);
}

.testimonial__text{
  margin: 0 0 14px;
  line-height: 1.75;
  font-size: 18px;
  color: rgba(62,42,38,.90);
}

.testimonial__meta{
  margin: 0;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(62,42,38,.72);
}

.testimonials__hint{
  margin: 12px 0 0;
  text-align: right;
  color: rgba(241,238,236,.75);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

/* =========================
   OFERTA 1:1
   ========================= */

.offers-page{
  padding-top: 130px;
}

.offer-copy-section__inner{
  max-width: 980px;
}

.offer-copy-block + .offer-copy-block{
  margin-top: 40px;
}

.offer-copy-block__kicker{
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.offer-copy-block__text{
  margin: 0;
  max-width: 70ch;
  font-size: clamp(18px, 1.25vw, 22px);
  line-height: 1.85;
  color: rgba(62,42,38,.9);
}

.offer-process .container{
  display: grid;
  gap: 24px;
}

.offer-process__card{
  padding: 30px;
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(62,42,38,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.offer-process__kicker{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.offer-process__title{
  margin: 0 0 18px;
  font-size: clamp(34px, 3.8vw, 54px);
  line-height: 1.02;
  color: var(--dark);
}

.offer-process__lead{
  margin: 0 0 20px;
  max-width: 48ch;
  font-size: clamp(18px, 1.35vw, 24px);
  line-height: 1.65;
  color: rgba(62,42,38,.9);
}

.offer-process__text{
  margin: 0 0 20px;
  max-width: 62ch;
  font-size: 18px;
  line-height: 1.75;
  color: rgba(62,42,38,.88);
}

.offer-process__listTitle{
  margin: 24px 0 12px;
  font-size: 13px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--dark);
}

.offer-list{
  margin: 0;
  padding-left: 20px;
}

.offer-list li{
  margin: 0 0 10px;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(62,42,38,.9);
}

.offer-price{
  margin: 26px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.offer-price__label{
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .72;
}

.offer-price__value{
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  color: var(--dark);
}

.offer-disclaimer__inner{
  max-width: 900px;
}

.offer-disclaimer__text{
  margin: 0 0 28px;
  font-size: 17px;
  line-height: 1.8;
  color: rgba(62,42,38,.86);
}

.offer-disclaimer__lead{
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(26px, 2.8vw, 40px);
  line-height: 1.08;
  color: var(--dark);
}

/* =========================
   EVENTY / SZKOLENIA
   ========================= */

.event-copy__inner{
  max-width: 960px;
}

.event-copy__block p{
  margin: 0 0 20px;
  max-width: 62ch;
  font-size: clamp(18px, 1.3vw, 22px);
  line-height: 1.8;
  color: rgba(62,42,38,.9);
}

.event-meta{
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.event-meta__item{
  padding: 20px 22px;
  border-radius: 18px;
  background: rgba(62,42,38,.04);
  border: 1px solid rgba(62,42,38,.10);
}

.event-meta__label{
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  opacity: .72;
}

.event-meta__value{
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
}

.event-programs__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.event-program{
  padding: 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.65);
  border: 1px solid rgba(62,42,38,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.06);
}

.event-program__kicker{
  margin: 0 0 12px;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: .72;
}

.event-program__title{
  margin: 0 0 16px;
  font-size: clamp(30px, 3.2vw, 46px);
  line-height: 1.04;
  color: var(--dark);
}

.event-program__text{
  margin: 0 0 20px;
  max-width: 34ch;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(62,42,38,.88);
}

.event-program__soon{
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(62,42,38,.06);
  border: 1px solid rgba(62,42,38,.10);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .86;
}

.event-tags{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.event-tag{
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(62,42,38,.12);
  background: rgba(62,42,38,.04);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-transform: uppercase;
  color: var(--dark);
}

.event-gallery__header{
  margin-bottom: 24px;
}

.event-gallery__rail{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 380px);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 6px 0 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}

.event-gallery__rail::-webkit-scrollbar{
  height: 0;
}

.event-gallery__rail{
  scrollbar-width: none;
}

.event-gallery__item{
  margin: 0;
  scroll-snap-align: start;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(0,0,0,.10);
  background: rgba(62,42,38,.06);
  aspect-ratio: 4 / 5;
}

.event-gallery__item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   PRODUKTY – NOWA WERSJA
   ========================= */

.products-page{
  padding-top: 72px;
}

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

.product-card{
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid rgba(62,42,38,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.product-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-color: rgba(62,42,38,.18);
}

.product-card--disabled{
  cursor: default;
}

.product-card--disabled:hover{
  transform: none;
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  border-color: rgba(62,42,38,.10);
}

.product-card__imageWrap{
  aspect-ratio: 3 / 4;
  background: var(--cream);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}

.product-card__image{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
  display: block;
}

.product-card__content{
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 22px 24px;
  color: var(--dark);
}

.product-card__title{
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(26px, 2vw, 34px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.product-card__desc{
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(62,42,38,.88);
  flex-grow: 1;
}

.product-card__link{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(62,42,38,.26);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--dark);
  transition: opacity .18s ease, border-color .18s ease;
}

.product-card:hover .product-card__link{
  opacity: .76;
  border-color: rgba(62,42,38,.5);
}

/* =========================
   PRODUKTY – STARA WERSJA HTML
   ========================= */

.products-page .offer-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.products-page .offer{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 240px;
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(62,42,38,.10);
  background: var(--cream);
  color: var(--dark);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.products-page .offer:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  border-color: rgba(62,42,38,.18);
  background: var(--cream);
}

.products-page .offer__title{
  color: var(--dark);
  font-size: clamp(26px, 2vw, 34px);
}

.products-page .offer__body{
  color: rgba(62,42,38,.88);
  font-size: 16px;
  line-height: 1.7;
  max-width: none;
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1100px){
  .product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-page .offer-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px){
  .drawer__item{
    font-size: 26px;
  }

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

  .contact-card{
    grid-template-columns: 1fr;
  }

  .event-programs__grid{
    grid-template-columns: 1fr;
  }

  .event-meta{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px){
  .hero-intro{
    padding: 56px 0 72px;
  }

  .hero-intro__inner{
    text-align: left;
  }

  .hero-intro__headline{
    margin: 0 0 18px;
    max-width: 35ch;
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.06;
  }

  .hero-intro__copy{
    max-width: 100%;
    margin: 0 0 18px;
  }

  .hero-intro__copy p{
    font-size: 17px;
    line-height: 1.6;
  }

  .hero-intro__accent{
    max-width: 35ch;
    margin: 0;
    font-size: clamp(24px, 7vw, 32px);
    line-height: 1.1;
  }

  .hero{
    min-height: 100svh;
  }

  .hero__media{
    background-size: cover;
    background-position: center top;
  }

  .hero__overlay{
    background: linear-gradient(
      to top,
      rgba(0,0,0,.40),
      rgba(0,0,0,.18),
      rgba(0,0,0,.10)
    );
  }

  .hero__center{
    padding: 0 22px;
  }

  .hero__eyebrow{
    margin: 0 auto;
    max-width: 20ch;
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.32;
    text-align: center;
    padding: 0 8px;
  }

  .hero__bottomTitle{
    font-size: clamp(26px, 8.4vw, 40px);
    line-height: 1;
    letter-spacing: -0.02em;
    bottom: 22px;
    padding: 0 6vw;
  }

  .mission{
    padding: 64px 0 76px;
  }

  .mission__inner{
    max-width: 100%;
  }

  .mission__title{
    margin-bottom: 24px;
    max-width: 10ch;
    font-size: clamp(32px, 9vw, 48px);
    line-height: 1.02;
  }

  .mission__content{
    max-width: 100%;
  }

  .mission__content p{
    margin-bottom: 18px;
    font-size: 17px;
    line-height: 1.75;
  }

  .mission__cta{
    margin-top: 28px;
  }

  .mission__link{
    font-size: 13px;
    letter-spacing: .12em;
  }

  .offer-copy-block + .offer-copy-block{
    margin-top: 28px;
  }

  .offer-copy-block__text{
    font-size: 17px;
    line-height: 1.8;
  }

  .offer-process__card{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .offer-process__title{
    font-size: clamp(30px, 8vw, 40px);
  }

  .offer-process__lead{
    font-size: 17px;
    line-height: 1.7;
  }

  .offer-process__text{
    font-size: 17px;
    line-height: 1.72;
  }

  .offer-list li{
    font-size: 16px;
    line-height: 1.65;
  }

  .offer-price__value{
    font-size: clamp(26px, 7vw, 34px);
  }

  .offer-disclaimer__text{
    font-size: 16px;
    line-height: 1.75;
  }

  .offer-disclaimer__lead{
    font-size: clamp(24px, 7vw, 32px);
  }

  .event-copy__block p{
    font-size: 17px;
    line-height: 1.75;
  }

  .event-meta__item{
    padding: 18px 18px;
  }

  .event-meta__value{
    font-size: 17px;
  }

  .event-program{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .event-program__title{
    font-size: clamp(28px, 7vw, 36px);
  }

  .event-program__text{
    font-size: 17px;
    line-height: 1.7;
  }

  .event-tag{
    font-size: 12px;
    line-height: 1.4;
  }

  .event-gallery__rail{
    grid-auto-columns: minmax(220px, 80vw);
    gap: 14px;
  }
}

@media (max-width: 720px){
  .products-page{
    padding-top: 56px;
  }

  .product-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .products-page .offer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .product-card__content{
    padding: 18px 18px 20px;
  }

  .product-card__title{
    font-size: clamp(24px, 7vw, 30px);
  }

  .product-card__desc{
    font-size: 15px;
    line-height: 1.65;
  }
}

@media (max-width: 420px){
  .hero__bottomTitle{
    font-size: clamp(24px, 7.8vw, 34px);
    bottom: 20px;
    padding: 0 7vw;
  }
}
/* =========================
   POPRAWKA: HAMBURGER BEZ OTOCZKI
   ========================= */

#menuBtn.icon-btn{
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  appearance: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;
}

#menuBtn.icon-btn:hover,
#menuBtn.icon-btn:focus,
#menuBtn.icon-btn:active,
#menuBtn.icon-btn:focus-visible{
  border: 0;
  background: transparent;
  box-shadow: none;
  outline: none;
  transform: none;
}

/* Same 3 kreski */
#menuBtn .burger{
  width: 28px;
  height: 2px;
  position: relative;
  display: block;
  background: var(--cream);
  border-radius: 999px;
}

#menuBtn .burger::before,
#menuBtn .burger::after{
  content: "";
  position: absolute;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--cream);
  border-radius: 999px;
}

#menuBtn .burger::before{
  top: -8px;
}

#menuBtn .burger::after{
  bottom: -8px;
}

/* Po zjechaniu na jasne sekcje hamburger robi się ciemny */
body.is-scrolled #menuBtn .burger,
body.is-scrolled #menuBtn .burger::before,
body.is-scrolled #menuBtn .burger::after{
  background: var(--dark);
}


/* =========================
   POPRAWKA: LINKI W DRAWER MENU
   MNIEJSZE + DRUKOWANE
   ========================= */

.drawer__item{
  font-family: var(--sans);
  font-size: clamp(14px, 1.4vw, 17px);
  line-height: 1.35;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 16px 0;
}
/* =========================
   REGULAMIN / POLITYKA PRYWATNOŚCI
   ========================= */

.legal-hero .display{
  max-width: 900px;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-size: clamp(44px, 5.6vw, 88px);
  color: var(--cream);
}
.legal-hero .lead{
  max-width: 860px;
}

.legal-page{
  padding-top: 72px;
}

.legal-page__inner{
  max-width: 920px;
}

.legal-card{
  padding: clamp(24px, 4vw, 52px);
  border-radius: 24px;
  background: var(--cream);
  border: 1px solid rgba(62,42,38,.10);
  box-shadow: 0 14px 34px rgba(0,0,0,.08);
}

.legal-card h2{
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--dark);
}

.legal-date{
  margin: 0 0 34px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(62,42,38,.62);
}

.legal-text{
  color: rgba(62,42,38,.90);
}

.legal-text h3{
  margin: 42px 0 18px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.legal-text h3:first-child{
  margin-top: 0;
}

.legal-text h4{
  margin: 30px 0 12px;
  font-family: var(--sans);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark);
}

.legal-text p{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.85;
}

.legal-text ul{
  margin: 0 0 18px;
  padding-left: 22px;
}

.legal-text li{
  margin: 0 0 8px;
  font-size: 16px;
  line-height: 1.75;
}

.legal-text a{
  border-bottom: 1px solid rgba(62,42,38,.28);
}

.legal-text a:hover{
  opacity: .72;
}

.legal-text hr{
  margin: 44px 0;
  border: 0;
  border-top: 1px solid rgba(62,42,38,.16);
}

.footer__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer__legalLink{
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: .78;
}

.footer__legalLink:hover{
  opacity: 1;
}

@media (max-width: 720px){
  .legal-page{
    padding-top: 48px;
  }

  .legal-card{
    padding: 22px 18px;
    border-radius: 20px;
  }

  .legal-card h2{
    font-size: clamp(30px, 9vw, 42px);
  }

  .legal-text p,
  .legal-text li{
    font-size: 15px;
    line-height: 1.75;
  }

  .footer__inner{
    align-items: flex-start;
    flex-direction: column;
  }
}
/* =========================
   OPINIE JAKO ZDJĘCIA + LIGHTBOX
   ========================= */

.testimonials--images{
  background: var(--red);
}

.testimonials__rail--images{
  grid-auto-columns: minmax(240px, 330px);
  gap: 18px;
  padding: 12px 6px 16px;
}

.testimonial-image{
  scroll-snap-align: start;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--cream);
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(0,0,0,.18);
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.testimonial-image:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(0,0,0,.24);
}

.testimonial-image:focus-visible{
  outline: none;
  box-shadow:
    0 0 0 3px rgba(241,238,236,.55),
    0 22px 48px rgba(0,0,0,.24);
}

.testimonial-image img{
  width: 100%;
  height: 430px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: var(--cream);
}


/* TŁO POWIĘKSZENIA */

.testimonial-lightbox{
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(20, 12, 10, .82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

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

.testimonial-lightbox__inner{
  position: relative;
  width: min(920px, 100%);
  max-height: 92vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.testimonial-lightbox__image{
  max-width: 100%;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 18px;
  background: var(--cream);
  box-shadow: 0 28px 80px rgba(0,0,0,.42);
}

.testimonial-lightbox__close{
  position: absolute;
  top: -18px;
  right: -18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(241,238,236,.35);
  border-radius: 999px;
  background: rgba(241,238,236,.92);
  color: var(--dark);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-lightbox__close:hover{
  background: var(--white);
}

.testimonial-lightbox__close:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px rgba(241,238,236,.35);
}


/* TELEFON */

@media (max-width: 720px){
  .testimonials__rail--images{
    grid-auto-columns: minmax(230px, 78vw);
    gap: 14px;
  }

  .testimonial-image{
    border-radius: 18px;
  }

  .testimonial-image img{
    height: 380px;
  }

  .testimonial-lightbox{
    padding: 18px;
  }

  .testimonial-lightbox__image{
    max-height: 84vh;
    border-radius: 14px;
  }

  .testimonial-lightbox__close{
    top: -14px;
    right: -8px;
    width: 42px;
    height: 42px;
    font-size: 28px;
  }
}
/* =========================
   OPINIE — UKRYCIE BIAŁYCH PASÓW BEZ UCINANIA TEKSTU
   ========================= */

.testimonial-image{
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--red);
  overflow: hidden;
}

/* zdjęcie pokazujemy w całości, bez powiększania */
.testimonial-image img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--red);
  transform: none !important;
}

/* burgundowa nakładka na biały pasek u góry */
.testimonial-image::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 64px;
  z-index: 2;
  background: var(--red);
  pointer-events: none;
}

/* burgundowa nakładka na biały pasek na dole */
.testimonial-image::after{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 64px;
  z-index: 2;
  background: var(--red);
  pointer-events: none;
}