/*
Theme Name: Newage
Theme URI: https://newage.net.pl/
Author: Newage
Author URI: https://newage.net.pl/
Description: Motyw firmy Newage — kompleksowa renowacja i pielęgnacja boisk sportowych. Inspirowany wizualnie demo Renowise. Zawiera stronę główną, ofertę z cennikiem i kontakt.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: newage
*/

/* ==========================================================================
   1. Zmienne / paleta (z demo Renowise)
   ========================================================================== */
:root {
  --c-green: #56c01e;
  --c-green-dark: #469c18;
  --c-teal: #015850;
  --c-teal-dark: #013f39;
  --c-amber: #ffab00;
  --c-orange: #f06731;
  --c-orange-dark: #d8521f;
  --c-dark: #111112;
  --c-dark-2: #181818;
  --c-text: #565656;
  --c-muted: #848484;
  --c-light: #f9f9f9;
  --c-cream: #f3f2ed;
  --c-border: #e6e6e6;
  --c-white: #ffffff;
  --ff-head: "Montserrat", -apple-system, "Segoe UI", Roboto, sans-serif;
  --ff-body: "Roboto", -apple-system, "Segoe UI", Arial, sans-serif;
  --container: 1200px;
  --radius: 6px;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.14);
}

/* ==========================================================================
   2. Reset / podstawy
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-text);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-green); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--c-green-dark); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-head);
  color: var(--c-dark);
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 .5em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.4rem; }
p { margin: 0 0 1.2em; }
ul { margin: 0 0 1.2em; padding-left: 1.2em; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 90px 0; }
.section--tight { padding: 60px 0; }
.bg-light { background: var(--c-light); }
.bg-cream { background: var(--c-cream); }
.bg-teal { background: var(--c-teal); color: rgba(255,255,255,.85); }
.bg-teal h1, .bg-teal h2, .bg-teal h3 { color: #fff; }
.text-center { text-align: center; }

/* ==========================================================================
   3. Przyciski
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s ease;
  line-height: 1;
}
.btn--primary { background: var(--c-green); color: #fff; }
.btn--primary:hover { background: var(--c-green-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(86,192,30,.35); }
.btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.7); }
.btn--outline:hover { background: #fff; color: var(--c-teal); }
.btn--dark { background: var(--c-teal); color: #fff; }
.btn--dark:hover { background: var(--c-teal-dark); color: #fff; transform: translateY(-2px); }
.btn--accent { background: var(--c-orange); color: #fff; }
.btn--accent:hover { background: var(--c-orange-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 22px rgba(240,103,49,.4); }

/* ==========================================================================
   4. Nagłówek sekcji
   ========================================================================== */
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head .eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 14px;
}
.section-head h2 { margin-bottom: .35em; }
.section-head p { color: var(--c-text); font-size: 1.05rem; }
.section-head--left { margin-left: 0; text-align: left; }

/* ==========================================================================
   5. Górny pasek (top bar)
   ========================================================================== */
.topbar {
  background: var(--c-teal);
  color: rgba(255,255,255,.8);
  font-size: .85rem;
}
.topbar__inner { display: flex; justify-content: space-between; align-items: center; min-height: 46px; gap: 20px; }
.topbar a { color: rgba(255,255,255,.85); }
.topbar a:hover { color: #fff; }
.topbar__info { display: flex; gap: 26px; flex-wrap: wrap; }
.topbar__info span i { color: var(--c-green); margin-right: 7px; }
.topbar__social a { margin-left: 16px; }

/* ==========================================================================
   6. Header / nawigacja
   ========================================================================== */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--c-border);
  position: sticky;
  top: 0;
  z-index: 100;
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; min-height: 88px; }

/* Placeholder logo (do późniejszej podmiany obrazka) */
.logo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 56px;
  border: 2px dashed #c7c7c7;
  border-radius: var(--radius);
  color: #aaa;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: #fafafa;
}
.site-logo img { max-height: 50px; width: auto; }
.site-logo a { display: inline-flex; }
.site-logo .logo-text { font-family: var(--ff-head); font-weight: 800; font-size: 1.7rem; color: var(--c-dark); }
.site-logo .logo-text span { color: var(--c-green); }

.main-nav ul { display: flex; gap: 6px; list-style: none; margin: 0; padding: 0; align-items: center; }
.main-nav a {
  font-family: var(--ff-head);
  font-weight: 600;
  font-size: .92rem;
  color: var(--c-dark);
  padding: 10px 16px;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.main-nav a:hover,
.main-nav .current-menu-item > a,
.main-nav .current_page_item > a { color: var(--c-green); }
.header-actions { display: flex; align-items: center; gap: 18px; }

/* Ikona domku w menu */
.menu-home { display: inline-flex; align-items: center; }
.menu-home__icon { display: block; position: relative; top: 3px; }
.menu-home__label { display: none; }
.main-nav .current-menu-item > a .menu-home__icon,
.main-nav a:hover .menu-home__icon { color: var(--c-green); }
/* Na mobile (menu hamburger) zamiast ikony pokaż napis */
@media (max-width: 768px) {
	.menu-home__icon { display: none; }
	.menu-home__label { display: inline; }
}
.screen-reader-text {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  width: 42px; height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span { display: block; height: 3px; width: 26px; background: var(--c-dark); border-radius: 3px; transition: .3s; }

/* ==========================================================================
   7. Hero
   ========================================================================== */
.hero {
  position: relative;
  color: #fff;
  background: linear-gradient(rgba(1,63,57,.72), rgba(1,63,57,.72)), center/cover no-repeat;
  min-height: 620px;
  display: flex;
  align-items: center;
}
.hero { min-height: 660px; padding-bottom: 80px; }
.hero__inner { max-width: 660px; padding: 90px 0 40px; }
.hero .eyebrow {
  display: inline-block;
  font-family: var(--ff-head);
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--c-green);
  margin-bottom: 18px;
}
.hero h1 { color: #fff; margin-bottom: .4em; font-weight: 800; }
.hero h1 span { color: var(--c-green); }
.hero p { font-size: 1.2rem; color: rgba(255,255,255,.9); margin-bottom: 1.4em; max-width: 560px; }
.hero__phone {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--ff-head); font-weight: 800; font-size: 2rem; color: #fff;
  margin-bottom: 1.4em;
}
.hero__phone i { color: var(--c-orange); font-size: 1.4rem; }
.hero__phone:hover { color: var(--c-green); }
.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Karty nachodzące na hero */
.hero-cards-wrap { position: relative; }
.hero-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  margin-top: -70px; position: relative; z-index: 5;
}
.hero-card {
  background: var(--c-teal); color: rgba(255,255,255,.82);
  border-radius: var(--radius); padding: 36px 30px; display: block;
  transition: transform .3s ease, box-shadow .3s ease; box-shadow: var(--shadow);
}
.hero-card--accent { background: var(--c-teal-dark); }
.hero-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); color: rgba(255,255,255,.92); }
.hero-card__icon {
  width: 60px; height: 60px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: var(--c-green);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px;
}
.hero-card:hover .hero-card__icon { background: var(--c-green); color: #fff; }
.hero-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: .5em; }
.hero-card p { font-size: .95rem; margin-bottom: 1em; }
.hero-card__more { font-family: var(--ff-head); font-weight: 600; font-size: .8rem; text-transform: uppercase; letter-spacing: .04em; color: var(--c-green); }
.hero-card__more i { margin-left: 6px; transition: margin .2s; }
.hero-card:hover .hero-card__more i { margin-left: 12px; }

.eyebrow--green {
  display: inline-block; font-family: var(--ff-head); font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; font-size: .8rem;
  color: var(--c-green); margin-bottom: 14px;
}

/* Blok wartości */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.value { text-align: center; padding: 40px 28px; background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); transition: all .3s ease; }
.value:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.value__icon {
  width: 84px; height: 84px; border-radius: 50%; margin: 0 auto 22px;
  background: rgba(86,192,30,.12); color: var(--c-green);
  display: flex; align-items: center; justify-content: center; font-size: 2rem; transition: all .3s ease;
}
.value:hover .value__icon { background: var(--c-green); color: #fff; transform: rotateY(180deg); }
.value h3 { margin-bottom: .4em; }
.value p { font-size: .96rem; margin: 0; }

/* Naprzemienne wiersze usług */
.svc-row { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; margin-bottom: 70px; }
.svc-row:last-child { margin-bottom: 0; }
.svc-row--reverse .svc-row__img { order: 2; }
.svc-row__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; height: 100%; max-height: 420px; object-fit: cover; }
.svc-row__text h3 { font-size: 1.7rem; margin-bottom: .4em; }
.svc-subgrid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 24px 0 28px; }
.svc-sub { display: flex; align-items: center; gap: 12px; font-family: var(--ff-head); font-weight: 600; font-size: .92rem; color: var(--c-dark); }
.svc-sub i {
  flex: 0 0 40px; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(86,192,30,.12); color: var(--c-green);
  display: inline-flex; align-items: center; justify-content: center; font-size: 1rem;
}

/* Galeria realizacji */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery__item { position: relative; display: block; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item:hover img { transform: scale(1.08); }
.gallery__overlay {
  position: absolute; inset: 0; background: rgba(1,63,57,.55);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 1.6rem; opacity: 0; transition: opacity .3s ease;
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery--lg { grid-template-columns: repeat(3, 1fr); gap: 22px; }
.gallery__caption { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 0 16px; }
.gallery__caption strong { font-family: var(--ff-head); font-weight: 600; font-size: .95rem; }

.cta-band__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(8,20,18,.92);
  display: none; align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox__stage { margin: 0; max-width: 90vw; max-height: 86vh; text-align: center; }
.lightbox__stage img { max-width: 90vw; max-height: 78vh; width: auto; height: auto; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.lightbox__stage figcaption { color: #fff; font-family: var(--ff-head); font-weight: 600; margin-top: 16px; font-size: 1rem; }
.lightbox__close {
  position: absolute; top: 22px; right: 28px; background: none; border: 0;
  color: #fff; font-size: 2.4rem; line-height: 1; cursor: pointer; opacity: .8; transition: opacity .2s;
}
.lightbox__close:hover { opacity: 1; }
.lightbox__nav {
  background: rgba(255,255,255,.12); border: 0; color: #fff; cursor: pointer;
  width: 52px; height: 52px; border-radius: 50%; font-size: 1.4rem; flex: 0 0 auto;
  margin: 0 10px; transition: background .2s;
}
.lightbox__nav:hover { background: var(--c-green); }
@media (max-width: 768px) {
  .lightbox { padding: 16px; }
  .lightbox__nav { width: 42px; height: 42px; margin: 0 4px; }
  .lightbox__close { top: 10px; right: 14px; }
}


/* Pasek statystyk pod hero */
.stats { background: var(--c-green); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 38px 20px; color: #fff; border-right: 1px solid rgba(255,255,255,.18); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--ff-head); font-weight: 800; font-size: 2.6rem; line-height: 1; }
.stat__label { text-transform: uppercase; letter-spacing: .06em; font-size: .82rem; margin-top: 8px; opacity: .9; }

/* ==========================================================================
   8. Sekcja "O firmie"
   ========================================================================== */
.about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.about__img { position: relative; }
.about__img img { border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.about__badge {
  position: absolute; bottom: -28px; right: -10px;
  background: var(--c-green); color: #fff;
  padding: 22px 28px; border-radius: var(--radius);
  font-family: var(--ff-head); box-shadow: var(--shadow);
}
.about__badge strong { display: block; font-size: 2rem; line-height: 1; }
.about__badge span { font-size: .82rem; text-transform: uppercase; letter-spacing: .05em; }
.feature-list { list-style: none; padding: 0; margin: 22px 0 0; }
.feature-list li { position: relative; padding-left: 34px; margin-bottom: 14px; color: var(--c-dark); font-weight: 500; }
.feature-list li::before {
  content: "\f00c"; font-family: "Font Awesome 6 Free", "FontAwesome"; font-weight: 900;
  position: absolute; left: 0; top: 2px; color: var(--c-green);
}

/* ==========================================================================
   9. Karty usług
   ========================================================================== */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 40px 32px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}
.card::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 4px; width: 0;
  background: var(--c-green); transition: width .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::after { width: 100%; }
.card__icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: rgba(86,192,30,.12); color: var(--c-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; margin-bottom: 22px; transition: all .3s ease;
}
.card:hover .card__icon { background: var(--c-green); color: #fff; }
.card h3 { margin-bottom: .5em; }
.card p { font-size: .96rem; margin-bottom: 1em; }
.card__link { font-family: var(--ff-head); font-weight: 600; font-size: .85rem; text-transform: uppercase; letter-spacing: .04em; }
.card__link i { margin-left: 6px; transition: margin .2s; }
.card__link:hover i { margin-left: 12px; }

/* ==========================================================================
   10. Cennik / oferta
   ========================================================================== */
.price-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.price-card {
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .3s ease, transform .3s ease;
}
.price-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.price-card__head {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 16px;
  padding: 28px 30px 22px; border-bottom: 1px solid var(--c-border);
  background: var(--c-cream);
}
.price-card__head h3 { font-size: 1.15rem; margin: 0; max-width: 60%; }
.price-card__price {
  font-family: var(--ff-head); font-weight: 800; color: var(--c-teal);
  font-size: 1.5rem; white-space: nowrap; text-align: right; line-height: 1.15;
}
.price-card__price small { display: block; font-size: .72rem; font-weight: 600; color: var(--c-muted); text-transform: uppercase; letter-spacing: .04em; }
.price-card__body { padding: 26px 30px; display: flex; flex-direction: column; flex: 1; }
.price-card__body ul { list-style: none; padding: 0; margin: 0; }
.price-card__foot { margin-top: auto; padding-top: 22px; }
.btn--sm { padding: 12px 24px; font-size: .8rem; }
.price-card__body li { position: relative; padding-left: 28px; margin-bottom: 12px; font-size: .95rem; }
.price-card__body li::before {
  content: "\f058"; font-family: "Font Awesome 6 Free","FontAwesome"; font-weight: 900;
  position: absolute; left: 0; top: 3px; color: var(--c-green); font-size: .95rem;
}
.price-note {
  background: rgba(255,171,0,.12); border-left: 4px solid var(--c-amber);
  padding: 18px 22px; border-radius: var(--radius); margin-top: 8px;
}

/* ==========================================================================
   11. Pasek CTA
   ========================================================================== */
.cta-band {
  background: linear-gradient(rgba(1,63,57,.9), rgba(1,63,57,.9)), center/cover no-repeat;
  color: #fff; text-align: center; padding: 80px 0;
}
.cta-band h2 { color: #fff; }
.cta-band p { font-size: 1.1rem; max-width: 640px; margin: 0 auto 1.8em; color: rgba(255,255,255,.9); }

/* ==========================================================================
   12. Strona wewnętrzna (page hero)
   ========================================================================== */
.page-hero {
  background: linear-gradient(rgba(1,63,57,.78), rgba(1,63,57,.78)), center/cover no-repeat;
  color: #fff; padding: 90px 0; text-align: center;
}
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.breadcrumbs { font-size: .9rem; color: rgba(255,255,255,.8); }
.breadcrumbs a { color: var(--c-green); }
.breadcrumbs span { margin: 0 8px; }

/* ==========================================================================
   13. Kontakt
   ========================================================================== */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-info { display: grid; gap: 22px; }
.contact-info__item { display: flex; gap: 18px; align-items: flex-start; }
.contact-info__icon {
  flex: 0 0 52px; width: 52px; height: 52px; border-radius: 50%;
  background: rgba(86,192,30,.12); color: var(--c-green);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.contact-info__item h4 { margin: 0 0 4px; font-size: 1.05rem; }
.contact-info__item p { margin: 0; }
.contact-form { background: #fff; border: 1px solid var(--c-border); border-radius: var(--radius); padding: 38px; box-shadow: var(--shadow); }
.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label { display: block; font-family: var(--ff-head); font-weight: 600; font-size: .85rem; margin-bottom: 6px; color: var(--c-dark); }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 16px; border: 1px solid var(--c-border);
  border-radius: var(--radius); font-family: var(--ff-body); font-size: .95rem; margin-bottom: 18px;
  background: var(--c-light); transition: border .2s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--c-green); background: #fff; }
.contact-form textarea { min-height: 140px; resize: vertical; }
.consent { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 22px; font-family: var(--ff-body); font-weight: 400; }
.consent input { width: auto; margin: 5px 0 0; flex: 0 0 auto; accent-color: var(--c-green); }
.consent span { font-size: .78rem; line-height: 1.55; color: var(--c-muted); }
.consent a { color: var(--c-green); text-decoration: underline; }
.map-embed { margin-top: 50px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-embed iframe { display: block; width: 100%; height: 380px; border: 0; }
.form-note { font-size: .85rem; color: var(--c-muted); }

/* ==========================================================================
   14. Stopka
   ========================================================================== */
.site-footer { background: var(--c-dark); color: rgba(255,255,255,.65); padding: 70px 0 0; font-size: .95rem; }
.site-footer h4 { color: #fff; font-size: 1.1rem; margin-bottom: 22px; position: relative; padding-bottom: 14px; }
.site-footer h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 40px; height: 3px; background: var(--c-green); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.site-footer a { color: rgba(255,255,255,.65); }
.site-footer a:hover { color: var(--c-green); }
.footer__grid ul { list-style: none; padding: 0; margin: 0; }
.footer__grid li { margin-bottom: 10px; }
.footer__about p { margin-bottom: 18px; }
.footer-logo {
  display: inline-flex; align-items: center; justify-content: center;
  background: #fff; padding: 12px 18px; border-radius: var(--radius);
  margin-bottom: 22px;
}
.footer-logo img { max-height: 42px; width: auto; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact li i { color: var(--c-green); margin-top: 5px; }
.footer__social a {
  display: inline-flex; width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.08); align-items: center; justify-content: center; margin-right: 8px;
}
.footer__social a:hover { background: var(--c-green); color: #fff; }
.footer__badge {
  display: inline-flex; align-items: center;
  margin: 28px 0 18px; opacity: .85; transition: opacity .2s ease, transform .2s ease;
}
.footer__badge:hover { opacity: 1; transform: translateY(-2px); }
.footer__badge img { max-height: 34px; width: auto; display: block; }
.footer__bottom {
  margin-top: 0; border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px 20px; font-size: .85rem;
}
.footer__legal { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.footer__credit {
  display: flex; align-items: center; justify-content: flex-end; gap: 14px;
  padding: 14px 0 30px;
  font-size: .82rem; color: rgba(255,255,255,.55);
}
@media (max-width: 560px) {
  .footer__credit { justify-content: center; }
}
.footer__credit a { display: inline-flex; align-items: center; opacity: .85; transition: opacity .2s; }
.footer__credit a:hover { opacity: 1; }
.footer__credit img { height: 26px; width: auto; display: block; }

/* ==========================================================================
   15. WordPress content (strony tekstowe)
   ========================================================================== */
.entry-content { max-width: 820px; margin: 0 auto; }
.entry-content img { border-radius: var(--radius); margin: 1.5em 0; }
.entry-content h2, .entry-content h3 { margin-top: 1.4em; }

/* Powrót do góry */
.to-top {
  position: fixed; right: 24px; bottom: 24px; width: 46px; height: 46px;
  background: var(--c-green); color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: .3s; z-index: 90; box-shadow: var(--shadow);
}
.to-top.show { opacity: 1; visibility: visible; }
.to-top:hover { background: var(--c-green-dark); color: #fff; }

/* ==========================================================================
   16. Responsywność
   ========================================================================== */
@media (max-width: 992px) {
  .about__grid, .contact__grid { grid-template-columns: 1fr; gap: 40px; }
  .cards, .price-list { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .hero-cards { grid-template-columns: 1fr; margin-top: -50px; }
  .value-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .svc-row { grid-template-columns: 1fr; gap: 30px; margin-bottom: 50px; }
  .svc-row--reverse .svc-row__img { order: 0; }
  .svc-row__img img { max-height: 320px; }
}
@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .topbar { display: none; }
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: #fff;
    border-bottom: 1px solid var(--c-border); box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 70vh; overflow-y: auto; }
  .main-nav ul { flex-direction: column; align-items: stretch; gap: 0; padding: 10px 0; }
  .main-nav a { padding: 14px 24px; border-bottom: 1px solid var(--c-light); }
  .cards, .price-list, .contact-form .row { grid-template-columns: 1fr; }
  .price-card__head h3 { max-width: 100%; }
  .newage-cta-btn { display: none; }
}
@media (max-width: 1100px) {
  .newage-cta-btn { display: none; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .hero__actions .btn { width: 100%; text-align: center; }
  .gallery { grid-template-columns: 1fr; }
  .svc-subgrid { grid-template-columns: 1fr; }
  .hero__phone { font-size: 1.5rem; }
}
