/*
Theme Name: Mack Gabinet
Theme URI: https://mackgabinet.pl
Author: EJNO Pracownia Kreatywna
Author URI: https://ejno.pl
Description: Motyw WordPress dla gabinetu makijażu permanentnego MACK Monika Sewruk. Elegancki, minimalistyczny design z pełnym wsparciem ACF.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: mackgabinet
Tags: beauty, cosmetics, salon, one-page, responsive, custom-colors
*/

/* =========================================
   GILROY FONT FACES
   ========================================= */
@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gilroy";
  src: url("assets/fonts/Gilroy-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

/* =========================================
   CSS VARIABLES – Design Tokens
   ========================================= */
:root {
  --background: #F3EEEE;
  --foreground: #717171;
  --color-primary: #0f172a;
  --color-black: #1E1E1E;
  --color-secondary: #64748b;
  --color-accent: #E3321F;
  --color-accent-cennik: #D77575;
  --color-circle-active: #F0CBC8;
  --color-circle-inactive: #E7E7E7;
  --color-muted: #e5e7eb;
  --color-white: #ffffff;
  --content-max: 1440px;
  --font-gilroy: "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-newsreader: "Newsreader", "Times New Roman", Georgia, serif;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-gilroy);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2 {
  font-family: var(--font-newsreader);
  font-size: clamp(2.25rem, 4vw + 1.5rem, 80px);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

h3 {
  font-family: var(--font-newsreader);
  font-size: clamp(1.5rem, 2vw + 1rem, 42px);
  font-weight: 300;
}

h4 {
  font-size: clamp(1.25rem, 1.5vw + 0.75rem, 24px);
  font-weight: 500;
}

p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--foreground);
}

/* =========================================
   LAYOUT UTILITIES
   ========================================= */
.content-container {
  width: 100%;
  max-width: var(--content-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1rem, 4vw, 2rem);
  padding-right: clamp(1rem, 4vw, 2rem);
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-main {
  flex: 1;
}

/* =========================================
   ANIMATIONS
   ========================================= */
@keyframes follow-link-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.88; }
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scaleIn {
  from { transform: scale(1.02); }
  to { transform: scale(1.06); }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutRight {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}

.animate-fade-in-up {
  animation: fadeInUp 0.7s ease-out both;
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll-delay-1 { transition-delay: 0.12s; }
.animate-on-scroll-delay-2 { transition-delay: 0.24s; }
.animate-on-scroll-delay-3 { transition-delay: 0.36s; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-gilroy);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  white-space: nowrap;
  border: none;
}

.btn-primary {
  background-color: var(--color-accent);
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-primary:hover {
  background-color: var(--color-black);
  color: #fff;
}

.btn-black {
  background-color: var(--color-black);
  color: #fff;
  padding: 1rem 3rem;
  font-size: 1.1rem;
}

.btn-black:hover {
  background-color: var(--color-accent);
  color: #fff;
}

.btn-rounded {
  background-color: var(--color-accent);
  color: #fff;
  border-radius: 9999px;
  min-width: 180px;
  min-height: 180px;
  font-family: var(--font-newsreader);
  font-size: 1.25rem;
  font-weight: 300;
  padding: 1rem;
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-rounded:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(227, 50, 31, 0.35);
  color: #fff;
}

/* =========================================
   SECTION HEADER
   ========================================= */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 3rem 0 4rem;
}

@media (min-width: 640px) {
  .section-header {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
    padding: 4rem 0 6.25rem;
  }
}

.section-header__tag {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
}

.section-header__line {
  width: 30px;
  height: 1px;
  background-color: #888;
  flex-shrink: 0;
}

.section-header__label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 300;
}

.section-header__title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  letter-spacing: -0.01em;
  line-height: 1.2;
  font-size: clamp(1.75rem, 3vw + 1rem, 56px);
}

.section-header__title--default {
  color: var(--foreground);
}

.section-header__title--default-dark {
  color: var(--color-black);
}

.section-header__title--black {
  color: #fff;
}

/* =========================================
   HEADER / NAV
   ========================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background-color: #fff;
}

.site-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .site-header__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .site-header__inner {
    padding-top: 3.25rem;
    padding-bottom: 3.25rem;
  }
}

.site-logo {
  font-family: var(--font-newsreader);
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-black);
  letter-spacing: 0.05em;
}

.site-logo img {
  max-height: 50px;
  width: auto;
}

/* Desktop Nav */
.desktop-nav {
  display: none;
}

@media (min-width: 768px) {
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}

.desktop-nav__list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.desktop-nav__item {
  position: relative;
}

.desktop-nav__link {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}

.desktop-nav__link:hover {
  color: var(--color-accent);
}

/* Dropdown */
.nav-dropdown__wrapper {
  position: relative;
}

.nav-dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-dropdown:hover {
  color: var(--color-accent);
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.nav-dropdown__trigger:hover {
  color: var(--color-accent);
}

.nav-dropdown__trigger svg {
  transition: transform 0.2s;
}

.nav-dropdown__wrapper:hover .nav-dropdown__trigger svg,
.nav-dropdown__wrapper.is-open .nav-dropdown__trigger svg {
  transform: rotate(180deg);
}

.nav-dropdown__panel {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 0.5rem;
  min-width: 200px;
  z-index: 200;
  opacity: 0;
  transform: translateY(-4px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-dropdown__wrapper:hover .nav-dropdown__panel,
.nav-dropdown__wrapper.is-open .nav-dropdown__panel {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown__inner {
  background: #fff;
  border: 1px solid var(--color-muted);
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  padding: 6px 0;
}

.nav-dropdown__sub-link {
  display: block;
  padding: 10px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-primary);
  transition: background 0.15s, color 0.15s;
}

.nav-dropdown__sub-link:hover,
.nav-dropdown__sub-link:first-child {
  background: rgba(229, 231, 235, 0.8);
  color: var(--color-accent);
}

.nav-dropdown__sub-link:first-child {
  background: transparent;
  color: var(--color-accent);
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  transition: background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger-btn:hover {
  background-color: var(--color-muted);
}

@media (min-width: 768px) {
  .hamburger-btn {
    display: none;
  }
}

.hamburger-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 24px;
}

.hamburger-lines span {
  display: block;
  height: 2px;
  background-color: var(--color-primary);
  transition: all 0.3s;
  transform-origin: center;
}

.hamburger-btn.is-open .hamburger-lines span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.is-open .hamburger-lines span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger-btn.is-open .hamburger-lines span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
  border: none;
  cursor: pointer;
  width: 100%;
  height: 100%;
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 88vw);
  background-color: var(--background);
  box-shadow: -10px 0 40px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
}

.mobile-menu-overlay.is-open .mobile-menu-panel {
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid var(--color-muted);
}

.mobile-menu-title {
  font-family: var(--font-newsreader);
  font-size: 1.125rem;
  color: var(--color-primary);
}

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  transition: background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1;
}

.mobile-menu-close:hover {
  background-color: var(--color-muted);
}

.mobile-menu-nav {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem 1rem;
}

.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-link {
  display: block;
  padding: 0.75rem;
  border-radius: 8px;
  color: var(--color-primary);
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
}

.mobile-menu-link:hover {
  background-color: var(--color-muted);
  color: var(--color-accent);
}

.mobile-menu-dropdown-title {
  display: block;
  padding: 0.75rem;
  color: var(--color-primary);
  font-weight: 500;
}

.mobile-menu-sub-list {
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mobile-menu-sub-link {
  display: block;
  padding: 0.625rem 0.75rem;
  border-radius: 8px;
  color: rgba(15,23,42,0.8);
  transition: background 0.15s, color 0.15s;
}

.mobile-menu-sub-link:hover {
  background-color: var(--color-muted);
  color: var(--color-accent);
}

.mobile-menu-cta {
  padding-top: 0.5rem;
  padding-bottom: 0.25rem;
}

/* Header white strip below nav */
.header-white-strip {
  background: white;
  height: 120px;
  position: absolute;
  width: 100%;
  z-index: -1;
}

@media (min-width: 1024px) {
  .header-white-strip {
    height: 180px;
  }
}

/* =========================================
   FOLLOW LINK (Floating Google Maps)
   ========================================= */
.follow-link {
  position: fixed;
  bottom: 2rem;
  right: 1.5rem;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  border: 1px solid var(--color-muted);
  border-radius: 9999px;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  color: var(--color-black);
  font-size: 0.875rem;
  font-weight: 500;
  animation: follow-link-pulse 4s ease-in-out infinite;
  transition: box-shadow 0.2s;
}

.follow-link:hover {
  box-shadow: 0 6px 28px rgba(0,0,0,0.15);
}

.follow-link__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background-color: var(--color-accent);
  border-radius: 9999px;
  color: white;
  flex-shrink: 0;
}

/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  min-height: calc(100dvh - 104px);
  width: 100%;
  background-color: #f3f4f6;
  position: relative;
  overflow: hidden;
}

.hero__floating-logo {
  display: none;
  position: absolute;
  left: -2vw;
  top: 50%;
  transform: translateY(-50%);
  z-index: 0;
  width: min(500px, 30vw);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero__floating-logo {
    display: block;
  }
}

.hero__floating-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100dvh - 104px);
}

@media (min-width: 1024px) {
  .hero__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Dot indicators */
.hero__dots {
  position: absolute;
  top: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
}

@media (min-width: 1024px) {
  .hero__dots {
    top: 2rem;
  }
}

.hero__dot {
  width: 10px;
  height: 10px;
  border-radius: 9999px;
  background-color: rgba(30,30,30,0.3);
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.hero__dot:hover {
  background-color: rgba(30,30,30,0.5);
}

.hero__dot.is-active {
  background-color: var(--color-accent);
  transform: scale(1.25);
}

/* Arrow buttons */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background-color: rgba(255,255,255,0.9);
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.hero__arrow:hover {
  background-color: #fff;
}

.hero__arrow--prev {
  left: 1rem;
}

.hero__arrow--next {
  right: 1rem;
}

@media (min-width: 1024px) {
  .hero__arrow--prev { left: 1.5rem; }
  .hero__arrow--next { right: 1.5rem; }
}

/* Hero content (left) */
.hero__content {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: 4rem;
  padding-bottom: 6rem;
  order: 2;
}

@media (min-width: 1024px) {
  .hero__content {
    width: 50%;
    min-height: calc(100dvh - 104px);
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 5%;
    order: 1;
  }
}

.hero__content-inner {
  max-width: 665px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero__content-inner {
    gap: 4rem;
  }
}

@media (min-width: 1024px) {
  .hero__content-inner {
    gap: 6rem;
  }
}

.hero__title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  color: var(--color-black);
  font-size: clamp(2rem, 4vw + 1rem, 72px);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__desc {
  font-size: clamp(1rem, 1vw + 0.5rem, 1.3125rem);
  color: var(--foreground);
  margin-top: 0.5rem;
}

.hero__price {
  font-size: clamp(1.25rem, 2vw + 0.5rem, 3rem);
  color: var(--color-black);
}

.hero__price-accent {
  color: var(--color-accent);
}

/* Hero image (right) */
.hero__image-wrap {
  width: 100%;
  height: 45vh;
  min-height: 280px;
  order: 1;
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero__image-wrap {
    width: 50%;
    height: calc(100dvh - 104px);
    min-height: calc(100dvh - 104px);
    order: 2;
  }
}

.hero__image-inner {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__image-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.9s ease-in-out;
  animation: scaleIn 9s linear forwards;
}

.hero__image-inner.is-entering {
  opacity: 0;
  animation: heroImgFadeIn 0.9s ease-in-out forwards;
}

@keyframes heroImgFadeIn {
  from { opacity: 0; transform: scale(1.03); }
  to { opacity: 1; transform: scale(1); }
}

/* Floating CTA */
.hero__cta-float {
  position: absolute;
  bottom: 1.5rem;
  right: 0;
  z-index: 20;
}

@media (min-width: 1024px) {
  .hero__cta-float {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: 2.5rem;
  }
}

/* Slide transition */
.hero-slide {
  transition: opacity 0.55s ease-in-out, transform 0.55s ease-in-out;
}

.hero-slide.is-entering {
  animation: fadeInUp 0.55s ease-out;
}

/* =========================================
   SERVICES SECTION
   ========================================= */
.services {
  width: 100%;
  position: relative;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .services {
    padding-bottom: 6rem;
  }
}

@media (min-width: 1024px) {
  .services {
    padding-bottom: 7.5rem;
  }
}

.services__white-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: white;
  z-index: -1;
  height: 300px;
}

@media (min-width: 768px) {
  .services__white-bg {
    height: 400px;
  }
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
  }
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.service-card__image-wrap {
  width: 100%;
  aspect-ratio: 4/5;
  min-height: 280px;
  max-height: 470px;
  position: relative;
  overflow: hidden;
}

.service-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card:hover .service-card__image-wrap img {
  transform: scale(1.05);
}

.service-card__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(227, 50, 31, 0.25);
  opacity: 0;
  transition: opacity 0.3s;
}

.service-card:hover .service-card__overlay {
  opacity: 1;
}

.service-card__btn-wrap {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}

.service-card:hover .service-card__btn-wrap {
  opacity: 1;
  pointer-events: auto;
}

.service-card__title {
  font-family: var(--font-newsreader);
  font-size: clamp(1.5rem, 2vw + 0.75rem, 2.625rem);
  font-weight: 300;
  color: var(--color-black);
  transition: color 0.3s;
}

.service-card:hover .service-card__title {
  color: var(--color-accent);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--foreground);
}

@media (min-width: 768px) {
  .service-card__desc {
    font-size: 1rem;
  }
}

/* =========================================
   ABOUT ME (Dark Section)
   ========================================= */
.about-me {
  position: relative;
}

.about-me__dark-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 75%;
  background-color: var(--color-black);
  z-index: -1;
}

.about-me__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  margin-top: 0;
}

@media (min-width: 768px) {
  .about-me__flex {
    margin-top: -7rem;
  }
}

@media (min-width: 1024px) {
  .about-me__flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: -9.375rem;
    gap: 2rem;
  }
}

.about-me__img-left {
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .about-me__img-left {
    width: 33.333%;
    max-width: none;
    margin: 0;
  }
}

.about-me__img-left-inner {
  aspect-ratio: 1/1;
  width: 100%;
  max-height: 350px;
  position: relative;
  overflow: hidden;
  background: #ccc;
}

@media (min-width: 1024px) {
  .about-me__img-left-inner {
    height: 350px;
    max-height: none;
    aspect-ratio: auto;
  }
}

.about-me__img-left-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleIn 8.5s linear infinite alternate;
}

.about-me__center {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  order: -1;
}

@media (min-width: 1024px) {
  .about-me__center {
    width: 33.333%;
    order: 0;
  }
}

.about-me__center-inner {
  color: white;
  max-width: 350px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  line-height: 1.65;
  font-size: 1rem;
  text-align: left;
}

@media (min-width: 768px) {
  .about-me__center-inner {
    font-size: 1.125rem;
    gap: 2.5rem;
  }
}

.about-me__center-text {
  color: rgba(255,255,255,0.9);
}

.about-me__center-text ul,
.about-me__center-text ol {
  margin: 0.75rem 0 0.75rem 1.25rem;
  padding: 0;
}

.about-me__center-text ul {
  list-style: none;
  margin-left: 0;
}

.about-me__center-text ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.85);
}

.about-me__center-text ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary, #c0392b);
}

.about-me__center-text ol li {
  margin-bottom: 0.35rem;
  color: rgba(255,255,255,0.85);
}

.about-me__center-text p {
  margin-bottom: 0.75rem;
}

.about-me__center-text p:last-child {
  margin-bottom: 0;
}

.about-me__img-right {
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .about-me__img-right {
    width: 33.333%;
    max-width: none;
    margin: 0;
  }
}

.about-me__img-right-inner {
  width: 100%;
  min-height: 280px;
  height: 50vh;
  max-height: 400px;
  position: relative;
  overflow: hidden;
  background: #ccc;
}

@media (min-width: 1024px) {
  .about-me__img-right-inner {
    height: 46.25rem;
    max-height: 46.25rem;
  }
}

.about-me__img-right-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleIn 9.2s linear infinite alternate;
}

/* =========================================
   EXPERIENCE SECTION
   ========================================= */
/* =========================================
   EXPERIENCE – dark 3-column layout
   ========================================= */
/* =========================================
   EXPERIENCE / O MNIE SECTION
   Light background, 2-column: photo left | text + counter right
   ========================================= */
.experience {
  background-color: var(--background);
  padding: 5rem 0 6rem;
}

@media (min-width: 1024px) {
  .experience {
    padding: 6rem 0 7rem;
  }
}

/* --- Header: tag + big title --- */
.experience__header {
  margin-bottom: 3rem;
}

.experience__tag-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.experience__title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1;
  color: var(--foreground);
  max-width: 720px;
}

/* --- Two/Three columns --- */
.experience__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .experience__cols {
    grid-template-columns: 1.15fr 1fr;
    gap: 3.5rem;
    align-items: center;
  }
  .experience__cols--three {
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 2.5rem;
    align-items: center;
  }
}

/* Left: photo */
.experience__img-col {
  width: 100%;
  overflow: hidden;
}

.experience__img-col img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .experience__img-col img {
    height: 520px;
  }
}

.experience__img-placeholder {
  width: 100%;
  height: 420px;
  background: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* Right: text + counter */
.experience__text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2.5rem;
}

.experience__text {
  color: var(--foreground);
  line-height: 1.75;
  font-size: 0.9375rem;
}

.experience__text p { margin-bottom: 0.75rem; }
.experience__text p:last-child { margin-bottom: 0; }

.experience__text ul {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 0;
}

.experience__text ul li {
  padding-left: 1.25rem;
  position: relative;
  margin-bottom: 0.4rem;
  color: var(--foreground);
}

.experience__text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--color-accent);
}

/* Counter block */
.experience__counter {
  border-left: 2px solid var(--foreground);
  padding-left: 1.5rem;
}

.experience__counter-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.experience__counter-num {
  font-family: var(--font-newsreader);
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--foreground);
}

.experience__counter-labels {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.experience__counter-labels span {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--foreground);
  line-height: 1.3;
}

/* =========================================
   CENNIK PAGE
   ========================================= */
.cennik__header {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 0 4rem;
}

@media (min-width: 1024px) {
  .cennik__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    padding: 3rem 0 5rem;
  }
}

.cennik__header-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
}

.cennik__header-tag {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cennik__header-tag-line {
  width: 30px;
  height: 1px;
  background: #888;
}

.cennik__header-tag-label {
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #888;
  font-weight: 300;
}

.cennik__header-title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
  color: var(--color-black);
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.cennik__header-intro {
  color: var(--color-black);
  font-size: 1rem;
}

.cennik__header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 420px;
}

@media (min-width: 1024px) {
  .cennik__header-right {
    align-items: flex-end;
  }
}

.cennik__included {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--color-muted);
}

@media (min-width: 768px) {
  .cennik__included {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
    padding: 2.5rem 0 3.5rem;
  }
}

.cennik__included-title {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .cennik__included-title {
    font-size: 1.125rem;
    width: 240px;
  }
}

.cennik__included-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cennik__included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-black);
}

.cennik__included-bullet {
  width: 6px;
  height: 6px;
  border-radius: 9999px;
  background: var(--color-black);
  flex-shrink: 0;
  margin-top: 0.5rem;
}

/* Tabs */
.cennik__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}

@media (min-width: 768px) {
  .cennik__tabs {
    gap: 3rem;
  }
}

.cennik__tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

.cennik__tab-dot {
  width: 1rem;
  height: 1rem;
  border-radius: 9999px;
  background-color: var(--color-circle-inactive);
  transition: background-color 0.2s;
}

@media (min-width: 768px) {
  .cennik__tab-dot {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.cennik__tab-btn.is-active .cennik__tab-dot,
.cennik__tab-btn:hover .cennik__tab-dot {
  background-color: var(--color-circle-active);
}

.cennik__tab-label {
  font-family: var(--font-newsreader);
  font-weight: 300;
  font-size: clamp(1.25rem, 1.5vw + 0.5rem, 1.75rem);
  color: var(--color-black);
  transition: color 0.2s;
}

.cennik__tab-btn.is-active .cennik__tab-label {
  color: var(--color-accent-cennik);
}

/* Price list */
.cennik__price-section {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 3rem;
}

@media (min-width: 1024px) {
  .cennik__price-section {
    flex-direction: row;
    gap: 4rem;
    padding-bottom: 5rem;
  }
}

.cennik__price-list {
  flex: 1;
  min-width: 0;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 0 2rem;
  border-bottom: 1px solid var(--color-muted);
}

@media (min-width: 640px) {
  .price-card {
    flex-direction: row;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem 0;
  }
}

.price-card:last-child {
  border-bottom: none;
}

.price-card__left {
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .price-card__left {
    width: 280px;
  }
}

.price-card__name {
  font-weight: 400;
  color: var(--color-black);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .price-card__name {
    font-size: clamp(1.25rem, 1.5vw + 0.75rem, 24px);
  }
}

.price-card__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .price-card__price {
    font-size: 1.75rem;
  }
}

.price-card__desc {
  font-size: 0.875rem;
  color: #888;
  line-height: 1.6;
  max-width: 320px;
}

@media (min-width: 768px) {
  .price-card__desc {
    font-size: 1rem;
  }
}

.price-card__note {
  font-size: 0.875rem;
  color: var(--color-accent);
  margin-top: 0.25rem;
}

/* Refresh section */
.cennik__refresh {
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .cennik__refresh {
    width: 380px;
  }
}

.cennik__refresh-title-wrap {
  position: relative;
}

.cennik__refresh-circle {
  position: absolute;
  left: -0.5rem;
  top: -0.25rem;
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  background-color: var(--color-circle-active);
  opacity: 0.9;
  z-index: -1;
}

@media (min-width: 768px) {
  .cennik__refresh-circle {
    width: 5rem;
    height: 5rem;
  }
}

.cennik__refresh-title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  position: relative;
  z-index: 1;
}

.cennik__refresh-items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cennik__refresh-item-period {
  font-size: 1.125rem;
  color: var(--color-black);
}

.cennik__refresh-item-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .cennik__refresh-item-value {
    font-size: 1.5rem;
  }
}

.cennik__footnote {
  font-size: 0.875rem;
  color: #888;
  margin-top: 2rem;
  max-width: 320px;
}

/* Additional services */
.cennik__additional {
  padding-top: 2rem;
  padding-bottom: 4rem;
  border-top: 1px solid var(--color-muted);
}

@media (min-width: 768px) {
  .cennik__additional {
    padding-top: 3rem;
    padding-bottom: 6rem;
  }
}

.cennik__additional-title-wrap {
  position: relative;
  margin-bottom: 2.5rem;
}

.cennik__additional-circle {
  position: absolute;
  left: -0.5rem;
  top: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 9999px;
  background-color: var(--color-circle-active);
  opacity: 0.9;
  z-index: -1;
}

@media (min-width: 768px) {
  .cennik__additional-circle {
    width: 4rem;
    height: 4rem;
  }
}

.cennik__additional-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem 3rem;
  max-width: 700px;
}

@media (min-width: 640px) {
  .cennik__additional-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cennik__additional-item-name {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-black);
}

@media (min-width: 768px) {
  .cennik__additional-item-name {
    font-size: 1.125rem;
  }
}

.cennik__additional-item-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .cennik__additional-item-price {
    font-size: 1.75rem;
  }
}

.cennik__additional-item-desc {
  font-size: 0.875rem;
  color: #888;
  margin-top: 0.25rem;
}

/* =========================================
   GALLERY PAGE
   ========================================= */
.galeria__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .galeria__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(5, 220px);
    gap: 0.75rem;
  }
}

.galeria__item {
  position: relative;
  overflow: hidden;
  background-color: var(--color-muted);
  min-height: 200px;
  cursor: pointer;
  display: block;
  border: none;
  padding: 0;
}

@media (min-width: 640px) {
  .galeria__item {
    min-height: 240px;
  }
}

@media (min-width: 768px) {
  .galeria__item {
    min-height: 280px;
  }
}

.galeria__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
  display: block;
}

.galeria__item:hover img {
  transform: scale(1.05);
}

.galeria__item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.galeria__item:hover .galeria__item-overlay {
  opacity: 1;
}

.galeria__item-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.75rem;
  text-align: left;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}

.galeria__item:hover .galeria__item-label {
  opacity: 1;
  transform: translateY(0);
}

/* Bento desktop positions */
@media (min-width: 768px) {
  .galeria__item[data-bento="0"] { grid-column: 1/3; grid-row: 1/3; }
  .galeria__item[data-bento="1"] { grid-column: 3/4; grid-row: 1/3; }
  .galeria__item[data-bento="2"] { grid-column: 4/5; grid-row: 1/2; }
  .galeria__item[data-bento="3"] { grid-column: 4/5; grid-row: 2/3; }
  .galeria__item[data-bento="4"] { grid-column: 1/3; grid-row: 3/4; }
  .galeria__item[data-bento="5"] { grid-column: 3/4; grid-row: 3/5; }
  .galeria__item[data-bento="6"] { grid-column: 4/5; grid-row: 3/4; }
  .galeria__item[data-bento="7"] { grid-column: 4/5; grid-row: 4/5; }
  .galeria__item[data-bento="8"] { grid-column: 1/3; grid-row: 4/5; }
  .galeria__item[data-bento="9"] { grid-column: 1/3; grid-row: 5/6; }
  .galeria__item[data-bento="10"] { grid-column: 3/4; grid-row: 5/6; }
  .galeria__item[data-bento="11"] { grid-column: 4/5; grid-row: 5/6; }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox__inner {
  position: relative;
  width: 90vw;
  height: 85vh;
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
}

.lightbox__close {
  position: absolute;
  top: -3rem;
  right: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.1);
  color: white;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.lightbox__arrow:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox__arrow--prev { left: -4rem; }
.lightbox__arrow--next { right: -4rem; }

.lightbox__counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
}

/* =========================================
   CONTACT PAGE
   ========================================= */
.kontakt__flex {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 4rem;
}

@media (min-width: 1024px) {
  .kontakt__flex {
    flex-direction: row;
    gap: 4rem;
    padding-bottom: 6rem;
  }
}

.kontakt__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .kontakt__info {
    min-width: 320px;
  }
}

.kontakt__business-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-black);
}

.kontakt__address {
  font-size: 1rem;
  color: var(--foreground);
}

.kontakt__hint {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--foreground);
  margin-bottom: 0.75rem;
}

.kontakt__phone {
  font-family: var(--font-newsreader);
  font-size: clamp(1.25rem, 2vw + 0.5rem, 1.5rem);
  color: var(--color-black);
  transition: color 0.2s;
  display: block;
}

.kontakt__phone:hover {
  color: var(--color-accent);
}

.kontakt__map {
  flex: 1;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--color-muted);
}

@media (min-width: 1024px) {
  .kontakt__map {
    min-height: 400px;
  }
}

.kontakt__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  border: none;
}

/* =========================================
   ABOUT PAGE
   ========================================= */
.o-mnie__flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding-bottom: 6rem;
  position: relative;
}

@media (min-width: 1024px) {
  .o-mnie__flex {
    flex-direction: row;
    gap: 4rem;
    padding-top: 0;
    margin-top: -6.25rem;
  }
}

.o-mnie__text {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 520px;
  order: 2;
  padding-bottom: 5rem;
}

@media (min-width: 768px) {
  .o-mnie__text {
    gap: 1.5rem;
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .o-mnie__text {
    order: 1;
    max-width: none;
    padding-bottom: 0;
  }
}

.o-mnie__text p {
  line-height: 1.65;
  color: var(--foreground);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .o-mnie__text p {
    font-size: 1.125rem;
  }
}

.o-mnie__image {
  width: 100%;
  height: 320px;
  position: relative;
  overflow: hidden;
  order: 1;
}

@media (min-width: 640px) {
  .o-mnie__image { height: 420px; }
}

@media (min-width: 1024px) {
  .o-mnie__image {
    width: 50%;
    height: 650px;
    flex-shrink: 0;
    order: 2;
  }
}

.o-mnie__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: scaleIn 9s linear infinite alternate;
}

.o-mnie__name-btn {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

@media (min-width: 1024px) {
  .o-mnie__name-btn {
    bottom: 2.5rem;
  }
}

/* =========================================
   SERVICE DETAIL PAGE
   ========================================= */

/* 1. Nagłówek – pełna szerokość */
.usluga__header {
  padding: 3.5rem 0 2rem;
  max-width: 680px;
}

.usluga__title {
  font-family: var(--font-newsreader);
  font-weight: 300;
  font-size: clamp(2.25rem, 5.5vw, 4rem);
  line-height: 1.1;
  color: var(--color-black);
  margin-bottom: 1rem;
}

.usluga__desc {
  font-size: 0.9375rem;
  color: var(--foreground);
  line-height: 1.6;
}

/* 2. Zdjęcie + okrągły przycisk */
.usluga__visual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-bottom: 4rem;
}

@media (min-width: 768px) {
  .usluga__visual {
    flex-direction: row;
    align-items: center;
    gap: 0;
  }
}

.usluga__image {
  width: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .usluga__image {
    width: 55%;
  }
}

.usluga__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .usluga__image img {
    height: 500px;
  }
}

.usluga__image-placeholder {
  width: 100%;
  height: 420px;
  background: #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 0.875rem;
}

.usluga__cta-col {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 768px) {
  .usluga__cta-col {
    width: 45%;
  }
}

/* 3. Cennik + Odświeżanie – dwie kolumny */
.usluga__bottom {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding-bottom: 5rem;
  border-top: 1px solid #e5e7eb;
  padding-top: 3rem;
}

@media (min-width: 1024px) {
  .usluga__bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 5rem;
  }
}

.usluga__prices-col {
  flex: 1 1 55%;
}

.usluga__cennik-heading {
  font-family: var(--font-newsreader);
  font-weight: 300;
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-black);
  margin-bottom: 2.5rem;
}

.usluga__refresh-col {
  flex: 1 1 40%;
}

/* 4. Treść WYSIWYG */
.usluga__content {
  max-width: 720px;
  padding-bottom: 6rem;
  line-height: 1.7;
  color: var(--foreground);
  font-size: 1rem;
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background-color: var(--color-black);
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: auto;
}

.site-footer__inner {
  padding: 2.5rem 0;
}

@media (min-width: 768px) {
  .site-footer__inner {
    padding: 3.5rem 0;
  }
}

.site-footer__top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .site-footer__top {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
}

@media (min-width: 768px) {
  .footer-nav__list {
    gap: 0.5rem 2rem;
  }
}

.footer-nav__link {
  color: rgba(255,255,255,0.9);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.footer-nav__link:hover {
  color: var(--color-accent);
}

.scroll-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 9999px;
  border: 2px solid var(--color-primary);
  background-color: var(--color-accent);
  color: white;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.scroll-to-top:hover {
  background-color: white;
  color: var(--color-black);
}

.site-footer__bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.site-footer__credit {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.site-footer__credit a {
  color: rgba(255,255,255,0.9);
  text-decoration: underline;
  text-decoration-color: rgba(227,50,31,0.5);
  text-underline-offset: 2px;
  transition: color 0.2s;
}

.site-footer__credit a:hover {
  color: var(--color-accent);
}

/* =========================================
   WORDPRESS CORE
   ========================================= */
.wp-block-image {
  margin: 0;
}

.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

/* =========================================
   GALLERY CATALOG TABS
   ========================================= */
.galeria__catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.galeria__catalog-tab {
  border-radius: 9999px;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  border: none;
  font-family: inherit;
}

.galeria__catalog-tab--inactive {
  background: var(--color-muted);
  color: var(--foreground);
}

.galeria__catalog-tab--inactive:hover {
  background: rgba(229,231,235,0.8);
}

.galeria__catalog-tab--active {
  background: var(--foreground);
  color: white;
}

/* =========================================
   PRICE CARD ANIMATIONS
   ========================================= */
.price-panel {
  display: none;
}
.price-panel.is-active {
  display: block;
  animation: fadeInUp 0.35s ease-out;
}

/* =========================================
   UTILITY
   ========================================= */
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1rem; }

/* WordPress alignment */
.site-main p:not(:last-child) {
  margin-bottom: 1rem;
}
