/* ==========================================================================
   Zabawa - Taniec - Energia | theme stylesheet
   Tokens live in :root; components are prefixed with .zte-
   ========================================================================== */

/* --- 1. Tokens ---------------------------------------------------------- */
:root {
  /* brand colors */
  --zte-orange:        #F2823C;
  --zte-orange-hover:  #E4732B;
  --zte-orange-text:   #C9631F;
  --zte-green:         #8FC63F;
  --zte-green-hover:   #7CB233;
  --zte-green-text:    #6FA22C;
  --zte-green-dark:    #4C5A2A;

  /* backgrounds */
  --zte-bg:            #FFF7F0;
  --zte-bg-hero:       linear-gradient(160deg, #FFF1E4 0%, #FDEBDD 48%, #FFF7F0 100%);
  --zte-peach:         #FDEBDD;
  --zte-mint:          #EDF6DC;
  --zte-sky:           #E4F1F7;
  --zte-pink:          #FBE3EA;
  --zte-footer:        #2E2A24;

  /* text */
  --zte-ink:           #3B372F;
  --zte-ink-soft:      #847B6E;
  --zte-ink-tile:      #6E6659;
  --zte-on-dark:       #FFF7F0;
  --zte-on-dark-soft:  rgba(255,247,240,.65);

  /* icons */
  --zte-icon-blue:     #2F7D9E;
  --zte-icon-pink:     #D4587C;

  /* typography */
  --zte-font-display:  'Baloo 2', system-ui, sans-serif;
  --zte-font-body:     'Nunito', system-ui, sans-serif;

  /* radii */
  --zte-r-pill:        999px;
  --zte-r-card:        28px;
  --zte-r-tile:        24px;
  --zte-r-block:       22px;
  --zte-r-sm:          16px;
  --zte-r-xs:          14px;

  /* shadows */
  --zte-sh-card:       0 24px 60px -34px rgba(59,55,47,.35);
  --zte-sh-tile:       0 20px 50px -34px rgba(59,55,47,.4);
  --zte-sh-cta:        0 18px 40px -18px rgba(226,120,40,.55);
  --zte-sh-photo:      0 40px 80px -40px rgba(59,55,47,.45);
  --zte-sh-badge:      0 16px 34px -18px rgba(59,55,47,.5);

  /* layout */
  --zte-max:           1180px;
  --zte-max-doc:       900px;
  --zte-pad-x:         40px;
  --zte-pad-x-mobile:  20px;
  --zte-header-h:      76px;
}

/* --- 2. Reset and base ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  background: var(--zte-bg);
  color: var(--zte-ink);
  font-family: var(--zte-font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--zte-orange); text-decoration: none; }
a:hover { color: var(--zte-orange-hover); }

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

h1, h2, h3, h4 {
  font-family: var(--zte-font-display);
  margin: 0;
  text-wrap: balance;
}
p { text-wrap: pretty; }

:focus-visible { outline: 3px solid var(--zte-orange); outline-offset: 3px; }

/* --- 3. Layout ----------------------------------------------------------- */
.zte-section { padding: 110px var(--zte-pad-x) 0; }
.zte-section--tight { padding-top: 70px; }
.zte-wrap { max-width: var(--zte-max); margin: 0 auto; }
.zte-wrap--doc { max-width: var(--zte-max-doc); margin: 0 auto; }
.zte-center { text-align: center; }

.zte-grid { display: grid; gap: 28px; }
.zte-grid > * { min-width: 0; }
.zte-grid--auto { grid-template-columns: repeat(auto-fit, minmax(330px, 1fr)); }
.zte-grid--tiles { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.zte-grid--cards { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.zte-grid--2 { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr); gap: 48px; align-items: center; }
.zte-grid--2-doc { grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr); gap: 48px; }

/* --- 4. Header and navigation --------------------------------------------- */
.zte-header {
  position: sticky; top: 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 32px;
  background: rgba(255,241,228,.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(59,55,47,.08);
}
.zte-header__logo img { height: 52px; width: auto; }

.zte-nav { display: flex; align-items: center; gap: 2px; font-size: 15px; font-weight: 700; white-space: nowrap; }
.zte-nav a {
  color: var(--zte-ink); padding: 10px 16px; border-radius: var(--zte-r-pill);
  transition: background .18s, color .18s;
}
.zte-nav a:hover,
.zte-nav a[aria-current="page"] { background: var(--zte-peach); color: var(--zte-orange-hover); }

.zte-burger {
  display: none;
  align-items: center; justify-content: center;
  width: 46px; height: 46px; flex: none;
  border: 0; border-radius: var(--zte-r-xs);
  background: var(--zte-peach); color: var(--zte-orange-hover);
  font-size: 22px; line-height: 1; cursor: pointer;
}
.zte-burger[aria-expanded="true"] { background: var(--zte-orange); color: #fff; }

/* --- 5. Buttons ------------------------------------------------------- */
.zte-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 18px 32px; border: 0; border-radius: var(--zte-r-pill);
  font-family: var(--zte-font-body); font-size: 18px; font-weight: 800;
  cursor: pointer; transition: background .18s, box-shadow .18s;
}
.zte-btn--primary { background: var(--zte-orange); color: #fff; box-shadow: var(--zte-sh-cta); }
.zte-btn--primary:hover { background: var(--zte-orange-hover); color: #fff; }
.zte-btn--green { background: var(--zte-green); color: #fff; box-shadow: 0 18px 40px -18px rgba(121,176,47,.6); }
.zte-btn--green:hover { background: var(--zte-green-hover); color: #fff; }
.zte-btn--white { background: #fff; color: var(--zte-orange-hover); }
.zte-btn--white:hover { background: #fff; color: var(--zte-ink); }
.zte-btn--ghost { background: #fff; border: 2px solid var(--zte-peach); color: var(--zte-ink); }
.zte-btn--ghost:hover { border-color: var(--zte-orange); color: var(--zte-ink); }
.zte-btn--sm { padding: 15px 26px; font-size: 16px; }
.zte-btn--nav { padding: 13px 24px; font-size: 15px; font-weight: 700; }

/* the nav CTA keeps its button colors regardless of .zte-nav link states */
.zte-nav .zte-btn--primary { padding: 13px 24px; }
.zte-nav .zte-btn--primary,
.zte-nav .zte-btn--primary:hover,
.zte-nav .zte-btn--primary[aria-current="page"] { background: var(--zte-orange); color: #fff; }
.zte-nav .zte-btn--primary:hover { background: var(--zte-orange-hover); }

/* --- 6. Section typography ---------------------------------------------- */
.zte-eyebrow {
  font-size: 15px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--zte-green);
}
.zte-h1 { font-size: clamp(42px, 5.6vw, 74px); font-weight: 800; line-height: 1.02; letter-spacing: -.015em; }
.zte-h1--sub { font-size: clamp(36px, 4.6vw, 58px); line-height: 1.06; }
.zte-h2 { font-size: clamp(32px, 4.2vw, 52px); font-weight: 800; line-height: 1.08; }
.zte-h3 { font-size: 30px; font-weight: 700; }
.zte-h3--tile { font-size: 23px; font-weight: 700; }
.zte-lead { font-size: 19px; line-height: 1.65; color: var(--zte-ink-soft); }
.zte-body { font-size: 17px; line-height: 1.6; color: var(--zte-ink-soft); }

/* --- 7. Hero ----------------------------------------------------------- */
.zte-hero { position: relative; overflow: hidden; padding: 70px var(--zte-pad-x) 90px; background: var(--zte-bg-hero); }
.zte-hero__inner { position: relative; z-index: 1; }
.zte-blob { position: absolute; border-radius: 50%; z-index: 0; }
.zte-blob--green  { background: var(--zte-green);  width: 190px; height: 190px; top: 150px; right: 32%; }
.zte-blob--orange { background: var(--zte-orange); width: 190px; height: 190px; bottom: 150px; right: -40px; }
.zte-blob--pink   { background: var(--zte-pink);   width: 96px;  height: 96px;  bottom: 110px; right: 44%; }

.zte-hero__photo {
  overflow: hidden; aspect-ratio: 3 / 2;
  border-radius: 38% 42% 40% 44% / 44% 40% 44% 40%;
  animation: zte-blob 14s ease-in-out infinite;
  box-shadow: var(--zte-sh-photo);
}
.zte-hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }

@keyframes zte-blob {
  0%, 100% { border-radius: 38% 42% 40% 44% / 44% 40% 44% 40%; }
  50%      { border-radius: 44% 38% 44% 40% / 40% 44% 40% 44%; }
}
@keyframes zte-bob {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .zte-hero__photo { animation: none; }
  html { scroll-behavior: auto; }
}

/* --- 8. Stats counter --------------------------------------------- */
.zte-stats {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px;
  margin-top: 38px; padding-top: 28px; border-top: 1px solid rgba(59,55,47,.12);
}
.zte-stats__num { font-family: var(--zte-font-display); font-weight: 800; font-size: 38px; line-height: 1; }
.zte-stats__num--orange { color: var(--zte-orange); }
.zte-stats__num--green  { color: var(--zte-green); }
.zte-stats__label { margin-top: 4px; font-size: 14px; font-weight: 600; color: var(--zte-ink-soft); line-height: 1.35; }

/* --- 9. Class cards ---------------------------------------------------- */
.zte-card {
  display: flex; flex-direction: column;
  border-radius: var(--zte-r-card); overflow: hidden;
  background: #fff; box-shadow: var(--zte-sh-card);
}
.zte-card__media { position: relative; height: 260px; }
.zte-card__media img { width: 100%; height: 100%; object-fit: cover; }
.zte-card__body { padding: 56px 28px 28px; display: flex; flex-direction: column; flex: 1; }
.zte-card__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; min-height: 48px; }
.zte-card__head .zte-h3 { white-space: nowrap; }
.zte-card__text { margin: 14px 0 22px; font-size: 17px; line-height: 1.6; color: var(--zte-ink-soft); }
.zte-card__meta { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.zte-card__cta { margin-top: 20px; }

/* round logo emblem, overlaps 46px below the image */
.zte-emblem {
  position: absolute; bottom: -46px; left: 26px; z-index: 3;
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #fff; padding: 10px; box-shadow: var(--zte-sh-badge);
}
.zte-emblem img { width: 100%; height: 100%; object-fit: contain; }

/* "New" ribbon */
.zte-ribbon {
  position: absolute; top: 0; right: 0; z-index: 3;
  display: flex; align-items: center; gap: 7px;
  padding: 11px 20px 11px 18px;
  border-radius: 0 0 0 20px;
  background: var(--zte-green); color: #fff;
  font-family: var(--zte-font-display); font-weight: 800; font-size: 16px;
  box-shadow: 0 10px 24px -12px rgba(59,55,47,.55);
}
.zte-ribbon::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: #fff; }

/* "TuliRytmika method" badge - logo must never sit on a colored background */
.zte-method { display: flex; align-items: center; gap: 8px; flex: none; }
.zte-method__label {
  font-size: 11px; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; color: var(--zte-green); white-space: nowrap;
}
.zte-method img { height: 36px; width: auto; }

/* --- 10. Chips --------------------------------------------------------- */
.zte-chip {
  padding: 9px 16px; border-radius: var(--zte-r-pill);
  background: var(--zte-peach); font-size: 14px; font-weight: 700;
}
.zte-chip--mint { background: var(--zte-mint); }
.zte-chip--gift {
  background: var(--zte-mint); color: var(--zte-green-dark);
  font-weight: 800; border: 2px dashed var(--zte-green);
}

/* --- 11. Icon tiles ------------------------------------------------- */
.zte-tile {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 34px 26px; border-radius: var(--zte-r-tile);
  background: #fff; box-shadow: var(--zte-sh-tile);
}
.zte-tile__icon {
  width: 72px; height: 72px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.zte-tile__icon svg { width: 34px; height: 34px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.zte-tile__icon--peach { background: var(--zte-peach); }
.zte-tile__icon--peach svg { stroke: var(--zte-orange-hover); }
.zte-tile__icon--pink  { background: var(--zte-pink); }
.zte-tile__icon--pink svg { stroke: var(--zte-icon-pink); }
.zte-tile__icon--mint  { background: var(--zte-mint); }
.zte-tile__icon--mint svg { stroke: var(--zte-green-text); }
.zte-tile__icon--sky   { background: var(--zte-sky); }
.zte-tile__icon--sky svg { stroke: var(--zte-icon-blue); }
.zte-tile h3 { margin-top: 20px; }
.zte-tile p { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: var(--zte-ink-soft); }

/* --- 12. Steps (numbered tiles) ------------------------------------- */
.zte-step {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 34px 28px; border-radius: var(--zte-r-tile);
}
.zte-step--peach { background: var(--zte-peach); }
.zte-step--mint  { background: var(--zte-mint); }
.zte-step--sky   { background: var(--zte-sky); }
.zte-step--pink  { background: var(--zte-pink); }
.zte-step__num {
  width: 60px; height: 60px; border-radius: 50%; background: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--zte-font-display); font-weight: 800; font-size: 26px; color: var(--zte-orange);
}
.zte-step h3 { margin-top: 18px; font-size: 23px; }
.zte-step p { margin: 8px 0 0; font-size: 16px; line-height: 1.6; color: var(--zte-ink-tile); }

/* --- 13. Slogan band ------------------------------------------------- */
.zte-banner { position: relative; margin-top: 100px; height: 440px; overflow: hidden; }
.zte-banner img { width: 100%; height: 100%; object-fit: cover; }
.zte-banner__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(242,130,60,.88), rgba(143,198,63,.78));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 40px; color: #fff;
}

/* --- 14. CTA block ----------------------------------------------------- */
.zte-cta {
  padding: 52px 40px; border-radius: 32px; text-align: center; color: #fff;
  background: linear-gradient(120deg, var(--zte-orange), var(--zte-orange-hover));
  box-shadow: 0 30px 70px -34px rgba(226,120,40,.7);
}
.zte-cta .zte-btn { background: #fff; color: var(--zte-orange-hover); box-shadow: none; }
.zte-cta .zte-btn:hover { color: var(--zte-ink); }

/* --- 15. Contact cards ---------------------------------------------- */
.zte-contact-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 36px 30px; border-radius: 26px; background: #fff;
  box-shadow: 0 24px 60px -40px rgba(59,55,47,.4); color: var(--zte-ink);
}
.zte-contact-card:hover { box-shadow: 0 28px 60px -30px rgba(59,55,47,.45); color: var(--zte-ink); }
.zte-contact-card__label { margin-top: 8px; font-size: 13px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--zte-green); }
.zte-contact-card__value { font-family: var(--zte-font-display); font-weight: 700; font-size: 22px; line-height: 1.3; overflow-wrap: anywhere; }
.zte-contact-card__value--email { font-size: 17px; }
.zte-contact-card__note { font-size: 15px; line-height: 1.6; color: var(--zte-ink-soft); }

/* audience split tiles (parents / kindergartens) */
.zte-split { padding: 38px 36px; border-radius: var(--zte-r-card); }
.zte-split--parents { background: var(--zte-peach); }
.zte-split--kindergartens { background: var(--zte-mint); }
.zte-split__tag { display: inline-flex; padding: 7px 16px; border-radius: var(--zte-r-pill); color: #fff; font-size: 13px; font-weight: 800; }
.zte-split--parents .zte-split__tag { background: var(--zte-orange); }
.zte-split--kindergartens .zte-split__tag { background: var(--zte-green); }
.zte-split h2 { margin-top: 16px; font-size: 28px; line-height: 1.15; }
.zte-split p { margin: 10px 0 22px; font-size: 17px; line-height: 1.65; color: var(--zte-ink-tile); }

/* --- 16. FAQ (accordion) ---------------------------------------------- */
.zte-faq__item { border-top: 1px solid rgba(59,55,47,.14); }
.zte-faq__btn {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0; background: none; border: 0; cursor: pointer; text-align: left;
  font-family: var(--zte-font-display); font-weight: 700; font-size: 20px; color: var(--zte-ink);
}
.zte-faq__btn:hover { color: var(--zte-orange-hover); }
.zte-faq__icon {
  flex: none; width: 34px; height: 34px; border-radius: 50%;
  background: var(--zte-peach); color: var(--zte-orange-hover);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; line-height: 1; transition: transform .25s ease;
}
.zte-faq__btn[aria-expanded="true"] .zte-faq__icon { transform: rotate(45deg); }
.zte-faq__panel { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .3s ease, opacity .25s ease; }
.zte-faq__panel[data-open="true"] { max-height: 320px; opacity: 1; }
.zte-faq__panel p { margin: 0 0 22px; font-size: 16px; line-height: 1.65; color: var(--zte-ink-soft); max-width: 66ch; }

/* --- 17. Legal documents ------------------------------------------- */
.zte-doc-block {
  padding: 30px 34px; border-radius: var(--zte-r-block);
  background: #fff; box-shadow: 0 18px 44px -34px rgba(59,55,47,.45);
}
.zte-doc-block + .zte-doc-block { margin-top: 16px; }
.zte-doc-block h2 { font-size: 22px; font-weight: 700; }
.zte-doc-block__rule { height: 3px; width: 44px; background: var(--zte-green); border-radius: 3px; margin-top: 10px; }
.zte-doc-point { display: flex; gap: 14px; font-size: 16px; line-height: 1.7; color: var(--zte-ink-soft); margin-top: 12px; }
.zte-doc-point__num { flex: none; min-width: 34px; font-weight: 800; color: var(--zte-orange); }
.zte-doc-sub { display: flex; gap: 12px; margin: 8px 0 0 38px; font-size: 16px; line-height: 1.65; color: var(--zte-ink-soft); }
.zte-doc-sub::before { content: "•"; color: var(--zte-green); font-weight: 800; }

/* --- 18. Sticky bar (sign-up page) -------------------------- */
.zte-stickybar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 70;
  display: flex; align-items: center; justify-content: center; gap: 24px; flex-wrap: wrap;
  padding: 16px var(--zte-pad-x);
  background: rgba(255,241,228,.95); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(59,55,47,.1);
  box-shadow: 0 -14px 40px -28px rgba(59,55,47,.5);
  transform: translateY(110%); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.zte-stickybar[data-visible="true"] { transform: translateY(0); opacity: 1; pointer-events: auto; }
.zte-stickybar__text { font-size: 17px; font-weight: 700; }

/* --- 19. Footer ----------------------------------------------------- */
.zte-footer { margin-top: 110px; background: var(--zte-footer); color: var(--zte-on-dark); }
.zte-footer__grid {
  display: grid;
  grid-template-columns: minmax(200px, 1fr) minmax(280px, 1.4fr) minmax(150px, .8fr) minmax(120px, .6fr);
  gap: 36px; padding: 60px var(--zte-pad-x) 44px;
}
.zte-footer h4 {
  margin-bottom: 14px; font-family: var(--zte-font-body);
  font-size: 13px; font-weight: 800; letter-spacing: .14em;
  text-transform: uppercase; color: var(--zte-green);
}
.zte-footer__list { display: flex; flex-direction: column; gap: 9px; font-size: 16px; }
.zte-footer__list--company { gap: 6px; font-size: 15px; line-height: 1.55; color: var(--zte-on-dark-soft); }
.zte-footer a { color: var(--zte-on-dark); }
/* 44px touch targets without changing the visual rhythm of the lists */
.zte-footer__list a { display: inline-block; padding: 9px 0; margin: -9px 0; }
.zte-footer a:hover { color: var(--zte-orange); }
.zte-footer__email { overflow-wrap: anywhere; }
.zte-footer__social { display: flex; gap: 12px; }
.zte-footer__social a {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: var(--zte-r-xs);
  background: rgba(255,247,240,.1);
}
.zte-footer__social a:hover { background: var(--zte-orange); }
.zte-footer__social svg { width: 21px; height: 21px; }
.zte-footer__bottom {
  display: flex; justify-content: center; align-items: center;
  padding: 22px var(--zte-pad-x) 30px;
  border-top: 1px solid rgba(255,247,240,.14);
  font-size: 14px; color: rgba(255,247,240,.55);
}

/* --- 20. Responsive --------------------------------------------- */
@media (max-width: 1080px) {
  .zte-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .zte-header { padding: 10px 18px; }
  .zte-header__logo img { height: 44px; }
  .zte-burger { display: flex; }

  .zte-nav {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 4px;
    padding: 14px 18px 20px;
    background: #FFF1E4;
    border-bottom: 1px solid rgba(59,55,47,.1);
    box-shadow: 0 24px 44px -28px rgba(59,55,47,.55);
    white-space: normal;
  }
  .zte-nav[data-open="true"] { display: flex; }
  .zte-nav a,
  .zte-nav .zte-btn--primary { padding: 14px 16px; text-align: center; justify-content: center; }

  .zte-section, .zte-hero, .zte-stickybar { padding-left: var(--zte-pad-x-mobile); padding-right: var(--zte-pad-x-mobile); }
  .zte-footer__grid, .zte-footer__bottom { padding-left: var(--zte-pad-x-mobile); padding-right: var(--zte-pad-x-mobile); }

  .zte-grid--2, .zte-grid--2-doc, .zte-grid--about { grid-template-columns: minmax(0, 1fr); }

  /* decorative circles would overlap the stacked hero text */
  .zte-hero .zte-blob--green, .zte-hero .zte-blob--pink { display: none; }
  .zte-hero .zte-blob--orange { width: 120px; height: 120px; right: -50px; bottom: auto; top: 40px; }
  .zte-section { padding-top: 70px; }
}

@media (max-width: 620px) {
  .zte-footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 560px) {
  .zte-stats { grid-template-columns: 1fr 1fr; }
  .zte-card__body { padding: 56px 20px 24px; }
  .zte-doc-block { padding: 24px 20px; }
}

/* --- 21. WordPress-specific ----------------------------------------- */
/* footer sticks to the bottom on short pages (404) */
body.zte { display: flex; flex-direction: column; min-height: 100vh; }
#zte-main { flex: 1; display: flex; flex-direction: column; min-width: 0; }
#zte-main > * { flex: none; min-width: 0; }
.zte-eyebrow--sm { font-size: 13px; }

.zte-skip {
  position: absolute; left: 16px; top: -100px; z-index: 100;
  padding: 12px 18px; border-radius: var(--zte-r-xs);
  background: var(--zte-orange); color: #fff; font-weight: 800;
}
.zte-skip:focus { top: 16px; color: #fff; }

.zte-hero--page { padding: 60px var(--zte-pad-x) 56px; }
.zte-hero--page .zte-lead { margin: 18px auto 0; max-width: 60ch; }
.zte-hero--page .zte-btn { margin-top: 28px; }

.zte-footer__company-name { font-weight: 700; font-size: 16px; color: var(--zte-on-dark); }
.zte-footer__phone { font-weight: 700; }
.zte-footer__muted { color: rgba(255,247,240,.6); }

.zte-entry__content { font-size: 17px; line-height: 1.7; color: var(--zte-ink-soft); }
.zte-entry__content a { text-decoration: underline; text-underline-offset: 3px; }

/* --- 21b. Legal documents (block editor content) -------------------- */
.zte-section--60 { padding-top: 60px; }
.zte-hero--doc { padding: 56px var(--zte-pad-x) 60px; overflow: visible; }
.zte-doc__lead { margin: 14px 0 0; max-width: 62ch; font-size: 18px; line-height: 1.65; color: var(--zte-ink-soft); }
.zte-doc { display: flex; flex-direction: column; gap: 16px; counter-reset: zte-section; }
.zte-doc > * { margin: 0; }
.zte-doc__note { font-size: 15px; font-weight: 600; color: var(--zte-ink-soft); }
.zte-doc__note a { color: var(--zte-orange); text-decoration: none; }
.zte-doc__note a:hover { color: var(--zte-orange-hover); }
.zte-doc .zte-doc-block { counter-increment: zte-section; scroll-margin-top: 96px; }
.zte-doc-block h2 { margin: 0; font-size: 22px; font-weight: 700; color: var(--zte-ink); }
.zte-doc--rule .zte-doc-block h2::after { content: ""; display: block; height: 3px; width: 44px; margin-top: 10px; border-radius: 3px; background: var(--zte-green); }
.zte-doc-block p { margin: 12px 0 0; font-size: 16px; line-height: 1.7; }
.zte-doc-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 14px; counter-reset: zte-point; }
.zte-doc-list > li { position: relative; padding-left: 38px; font-size: 16px; line-height: 1.7; counter-increment: zte-point; }
.zte-doc-list > li::before {
  content: counter(zte-section) "." counter(zte-point);
  position: absolute; left: 0; top: 0; min-width: 34px; font-weight: 800; color: var(--zte-orange);
}
.zte-doc-list ul { list-style: none; margin: 10px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.zte-doc-list ul li { position: relative; padding-left: 22px; line-height: 1.65; }
.zte-doc-list ul li::before { content: "•"; position: absolute; left: 0; color: var(--zte-green); font-weight: 800; }
.zte-doc-block--peach { background: var(--zte-peach); box-shadow: none; }
.zte-doc-block--peach p { color: var(--zte-ink-tile); }
.zte-doc--rule .zte-doc-block--peach h2::after { display: none; }
.zte-doc__chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.zte-doc__chips a { padding: 10px 18px; border-radius: var(--zte-r-pill); background: #fff; font-size: 15px; font-weight: 700; color: var(--zte-ink); text-decoration: none; }
.zte-doc__chips a:hover { color: var(--zte-orange-hover); }

.zte-pdf {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
  padding: 36px 40px; border-radius: 26px; background: #fff; border: 2px solid var(--zte-peach);
}
.zte-pdf__title { font-family: var(--zte-font-display); font-weight: 700; font-size: 22px; }
.zte-pdf__text { margin: 6px 0 0; max-width: 48ch; font-size: 16px; line-height: 1.6; color: var(--zte-ink-soft); }

/* --- 22. Front page --------------------------------------------------- */
.zte-accent--orange { color: var(--zte-orange); }
.zte-accent--green { color: var(--zte-green); }

.zte-section__intro { max-width: 760px; }
.zte-section__intro--narrow { max-width: 700px; }
.zte-section__intro .zte-h2 { margin-top: 12px; }
.zte-section__intro .zte-lead { margin: 16px 0 0; }
.zte-section__body { margin-top: 48px; }

.zte-hero__lead { margin: 22px 0 0; max-width: 52ch; }
.zte-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.zte-card--tus .zte-card__media img { object-position: center 40%; }
.zte-card--kids .zte-card__media img { object-position: center 30%; }

/* text-only Kids Dance badge, used until a real logo is provided */
.zte-emblem--kids { flex-direction: column; gap: 1px; padding: 0; background: var(--zte-orange); border: 4px solid #fff; }
.zte-emblem__line1 { font-family: var(--zte-font-display); font-weight: 800; font-size: 21px; line-height: 1; color: #fff; }
.zte-emblem__line2 { font-family: var(--zte-font-display); font-weight: 700; font-size: 17px; line-height: 1; color: #FFE08A; }
.zte-emblem__dots { display: flex; gap: 4px; margin-top: 3px; }
.zte-emblem__dots span { width: 5px; height: 5px; border-radius: 50%; }
.zte-emblem__dots span:nth-child(1) { background: #FFE08A; }
.zte-emblem__dots span:nth-child(2) { background: var(--zte-green); }
.zte-emblem__dots span:nth-child(3) { background: var(--zte-pink); }

.zte-banner__title {
  max-width: 20ch; font-size: clamp(32px, 4.4vw, 56px); font-weight: 800; line-height: 1.08;
  text-shadow: 0 4px 24px rgba(0,0,0,.2);
}
.zte-banner__text { margin: 16px 0 0; font-size: 20px; font-weight: 700; opacity: .95; }
.zte-banner__cta { margin-top: 18px; padding: 14px 28px; }
.zte-sup { font-size: .45em; font-weight: 600; vertical-align: super; margin-left: 2px; }

.zte-section--tiles { padding-top: 100px; }
.zte-tiles__title { max-width: 20ch; margin: 0 auto; font-size: clamp(32px, 4vw, 50px); line-height: 1.1; }
.zte-tiles__title + .zte-section__body { margin-top: 44px; }

.zte-grid--about { grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 56px; align-items: center; }
@media (max-width: 900px) { .zte-grid--about { grid-template-columns: minmax(0, 1fr); gap: 40px; } }
.zte-about__media { position: relative; }
.zte-blob--sky { background: var(--zte-sky); width: 150px; height: 150px; top: -24px; left: -24px; }
.zte-about__photo {
  position: relative; z-index: 1; overflow: hidden; aspect-ratio: 2 / 3;
  border-radius: var(--zte-r-card); background: var(--zte-peach);
  box-shadow: 0 40px 80px -44px rgba(59,55,47,.5);
}
.zte-about__photo img { width: 100%; height: 100%; object-fit: contain; }
.zte-grid--about .zte-h2 { margin-top: 12px; }
.zte-about__text { margin: 14px 0 0; max-width: 56ch; font-size: 18px; line-height: 1.7; color: var(--zte-ink-soft); }
.zte-grid--about .zte-h2 + .zte-about__text { margin-top: 20px; }
.zte-person { margin-top: 26px; padding: 24px 26px; border-radius: var(--zte-r-block); background: var(--zte-peach); }
.zte-person__name { font-family: var(--zte-font-display); font-weight: 800; font-size: 22px; }
.zte-person__role { margin-top: 2px; font-size: 15px; font-weight: 700; color: var(--zte-orange-hover); }
.zte-person__text { margin: 10px 0 0; max-width: 52ch; font-size: 16px; line-height: 1.65; color: var(--zte-ink-tile); }

#zapisy .zte-section__body { margin-top: 44px; }
#zapisy .zte-cta { margin-top: 34px; }
.zte-cta__title { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.1; }
.zte-cta__text { margin: 12px 0 0; font-size: 18px; opacity: .95; }
.zte-cta__btn { margin-top: 26px; padding: 19px 36px; }

/* --- 23. Sign-up page ------------------------------------------------- */
.zte-section--90 { padding-top: 90px; }
.zte-section__body--44 { margin-top: 44px; }
.zte-h2--50 { font-size: clamp(32px, 4.2vw, 50px); }
.zte-h2--46 { font-size: clamp(30px, 3.8vw, 46px); }
.zte-btn--md { padding: 16px 30px; font-size: 17px; box-shadow: 0 16px 34px -20px rgba(226,120,40,.6); }
.zte-btn--wide { padding: 18px 34px; }

.zte-hero--signup { padding: 64px var(--zte-pad-x) 80px; }
.zte-h1--signup { max-width: 22ch; font-size: clamp(40px, 5.2vw, 68px); line-height: 1.04; }
.zte-hero__lead--wide { margin-top: 20px; max-width: 58ch; }
.zte-blob--signup-green { background: var(--zte-green); opacity: .9; width: 170px; height: 170px; top: 90px; right: 6%; }
.zte-blob--signup-orange { background: var(--zte-orange); opacity: .85; width: 90px; height: 90px; bottom: 60px; right: 22%; }

.zte-grid--details { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 22px; }
.zte-detail {
  padding: 34px; border-radius: 26px; background: #fff;
  box-shadow: 0 24px 60px -38px rgba(59,55,47,.4);
}
.zte-detail__head { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.zte-detail__head h3 { font-size: 26px; font-weight: 700; }
.zte-detail__logo {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; padding: 8px; background: #fff;
}
.zte-detail__logo--tus { border: 2px solid var(--zte-mint); }
.zte-detail__logo img { width: 100%; height: 100%; object-fit: contain; }
.zte-detail__text { margin: 10px 0 20px; font-size: 16px; line-height: 1.6; color: var(--zte-ink-soft); }
.zte-detail__rows { display: flex; flex-direction: column; gap: 10px; font-size: 16px; font-weight: 600; }
.zte-detail__row { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(59,55,47,.1); }
.zte-detail__row:last-child { padding-bottom: 0; border-bottom: 0; }
.zte-detail__row span:first-child { color: var(--zte-ink-soft); }
.zte-detail__fee { color: var(--zte-orange); }

.zte-tag { padding: 7px 14px; border-radius: var(--zte-r-pill); color: #fff; font-weight: 800; font-size: 13px; }
.zte-tag--green { background: var(--zte-green); }

/* smaller text badge used in detail cards */
.zte-emblem--sm { position: static; width: 64px; height: 64px; border-width: 3px; box-shadow: 0 12px 26px -14px rgba(59,55,47,.5); }
.zte-emblem--sm .zte-emblem__line1 { font-size: 15px; letter-spacing: .02em; }
.zte-emblem--sm .zte-emblem__line2 { font-size: 12px; }
.zte-emblem--sm .zte-emblem__dots { gap: 3px; margin-top: 2px; }
.zte-emblem--sm .zte-emblem__dots span { width: 4px; height: 4px; }

.zte-rules {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 28px;
  padding: 40px 44px; border-radius: var(--zte-r-card); background: #fff;
  box-shadow: 0 24px 60px -40px rgba(59,55,47,.4);
}
.zte-rules__title { font-size: clamp(26px, 3vw, 36px); font-weight: 800; line-height: 1.1; }
.zte-rules__text { margin: 8px 0 0; max-width: 52ch; font-size: 16px; line-height: 1.6; color: var(--zte-ink-soft); }
.zte-rules__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.zte-faq { display: flex; flex-direction: column; }
.zte-faq__panel[data-open="true"] { max-height: 240px; }

.zte-cta--signup { padding: 56px 40px; }
.zte-cta__title--44 { font-size: clamp(30px, 3.6vw, 44px); }
.zte-cta--signup .zte-cta__text { margin-bottom: 0; }

.zte-has-stickybar .zte-footer { padding-bottom: 60px; }

@media (max-width: 900px) {
  .zte-hero--signup .zte-blob { display: none; }
  .zte-rules { padding: 30px 24px; }
}

/* --- 24. Contact page ------------------------------------------------- */
.zte-section--70 { padding-top: 70px; }
.zte-hero--contact { padding: 64px var(--zte-pad-x) 70px; }
.zte-h1--contact { max-width: 22ch; font-size: clamp(38px, 5vw, 64px); line-height: 1.04; letter-spacing: 0; }
.zte-hero__lead--contact { margin-top: 18px; max-width: 56ch; }
.zte-blob--contact-green { background: var(--zte-green); width: 180px; height: 180px; top: 70px; right: 8%; }
.zte-blob--contact-orange { background: var(--zte-orange); width: 88px; height: 88px; bottom: 40px; right: 26%; }

.zte-grid--split { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 22px; }
.zte-split--kindergartens p { color: var(--zte-green-dark); }
.zte-btn--green.zte-btn--md { box-shadow: 0 16px 34px -20px rgba(121,176,47,.6); }

@media (max-width: 900px) {
  .zte-hero--contact .zte-blob { display: none; }
  .zte-doc-block { padding: 24px 20px; }
  .zte-pdf { padding: 28px 22px; }
}

/* --- 25. 404 page ----------------------------------------------------- */
.zte-404 {
  position: relative; flex: 1 1 auto; display: flex; align-items: center; overflow: hidden;
  padding: 70px var(--zte-pad-x) 90px; background: var(--zte-bg-hero);
}
.zte-404__inner {
  position: relative; z-index: 1; width: 100%; max-width: var(--zte-max); margin: 0 auto;
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: 56px; align-items: center;
}
.zte-blob--404-green  { background: var(--zte-green);  width: 150px; height: 150px; top: 40px; right: 4%; }
.zte-blob--404-orange { background: var(--zte-orange); width: 88px;  height: 88px;  bottom: 60px; right: 6%; }
.zte-blob--404-pink   { background: var(--zte-pink);   width: 150px; height: 150px; top: 40%; left: -60px; }
.zte-404__title { margin-top: 14px; font-size: clamp(38px, 5.2vw, 68px); font-weight: 800; line-height: 1.04; }
.zte-404__text { margin: 20px 0 0; max-width: 48ch; font-size: 19px; line-height: 1.65; color: var(--zte-ink-soft); }
.zte-404__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.zte-404__links { margin-top: 40px; padding-top: 26px; border-top: 1px solid rgba(59,55,47,.12); }
.zte-404__links-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 14px; }
.zte-404__links-row a {
  padding: 11px 20px; border-radius: var(--zte-r-pill); background: #fff;
  font-size: 15px; font-weight: 700; color: var(--zte-ink);
  box-shadow: 0 14px 30px -22px rgba(59,55,47,.5);
}
.zte-404__links-row a:hover { color: var(--zte-orange-hover); }
.zte-404__figure { display: flex; align-items: center; justify-content: center; }
.zte-404__mark { width: 100%; max-width: 340px; animation: zte-bob-404 5s ease-in-out infinite; }
@keyframes zte-bob-404 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-14px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) { .zte-404__mark { animation: none; } }
@media (max-width: 900px) {
  .zte-404 { padding-left: var(--zte-pad-x-mobile); padding-right: var(--zte-pad-x-mobile); }
  .zte-404__inner { grid-template-columns: 1fr; gap: 40px; }
  .zte-404__figure { order: -1; }
  .zte-404__mark { max-width: 220px; }
  .zte-404 .zte-blob { display: none; }
}
