/* TOKENS */
:root {
  /* Wariant A: Nowoczesny & świeży */
  --bg: #f5f5f5;
  --surface: #ffffff;
  --surface-warm: #fafafa;
  --fg: #1a1a1f;
  --fg-2: #666666;
  --muted: #999999;
  --meta: #e847b5;
  --border: #e0e0e0;
  --border-soft: #f0f0f0;
  --accent: #c9388c;
  --accent-on: #ffffff;
  --accent-hover: #b0287a;
  --accent-light: rgba(201, 56, 140, 0.12);
  --footer-fg-muted: rgba(255, 253, 248, 0.5);
  --gallery-badge-bg: rgba(32, 25, 20, 0.7);
  --gallery-label-bg: rgba(255, 253, 248, 0.85);
  --lightbox-bg: rgba(0, 0, 0, 0.85);
  --lightbox-close-bg: rgba(255, 255, 255, 0.15);
  --lightbox-close-hover-bg: rgba(255, 255, 255, 0.25);
  --success: #7ab88c;
  --font-display: Athens, Georgia, 'Times New Roman', serif;
  --font-body: Athens, Georgia, 'Times New Roman', serif;
  --font-mono: 'SF Mono', ui-monospace, Menlo, monospace;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-base: 17px;
  --text-lg: 20px;
  --text-xl: 28px;
  --text-2xl: 42px;
  --text-3xl: 64px;
  --text-4xl: 88px;
  --leading-body: 1.62;
  --leading-tight: 1.1;
  --tracking-display: -0.02em;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --section-y-desktop: 112px;
  --section-y-tablet: 80px;
  --section-y-phone: 56px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  --elev-flat: none;
  --elev-ring: 0 0 0 1px var(--border);
  --elev-raised: 0 20px 52px rgba(0, 0, 0, 0.30);
  --elev-soft: 0 4px 20px rgba(0, 0, 0, 0.15);
  --focus-ring: 0 0 0 4px rgba(232, 121, 169, 0.30);
  --motion-fast: 150ms;
  --motion-base: 300ms;
  --motion-slow: 600ms;
  --ease-standard: cubic-bezier(0.2, 0, 0, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --container-max: 1040px;
  --container-gutter-desktop: 36px;
  --container-gutter-tablet: 24px;
  --container-gutter-phone: 16px;
  --header-height: clamp(80px, 10vw, 112px);
}

/* RESET & BASE */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-body);
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea { font: inherit; }

/* TYPOGRAPHY */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--leading-tight);
  color: var(--fg);
}
h1 { font-size: clamp(2.5rem, 6vw, var(--text-4xl)); letter-spacing: var(--tracking-display); }
h2 { font-size: clamp(2rem, 4vw, var(--text-3xl)); letter-spacing: var(--tracking-display); }
h3 { font-size: clamp(1.4rem, 2.5vw, var(--text-xl)); }
h4 { font-size: var(--text-lg); }
.section-label {
  font-family: var(--font-display);
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: var(--space-2);
}

/* CONTAINER */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-gutter-phone);
  padding-right: var(--container-gutter-phone);
}
@media (min-width: 744px) {
  .container { padding-left: var(--container-gutter-tablet); padding-right: var(--container-gutter-tablet); }
}
@media (min-width: 1024px) {
  .container { padding-left: var(--container-gutter-desktop); padding-right: var(--container-gutter-desktop); }
}

/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--header-height); z-index: 100;
  background: rgba(160, 160, 160, 0.88);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-soft);
  transition: background var(--motion-base) var(--ease-standard);
}
.site-header.scrolled { background: rgba(140, 140, 140, 0.92); }
.header-inner {
  display: flex; align-items: center; gap: clamp(6px, 3vw, 32px);
  height: 100%; max-width: var(--container-max); margin: 0 auto;
  padding: 0 var(--container-gutter-phone);
}
.header-inner > .logo { flex: 0 1 auto; min-width: 0; }

@media (min-width: 744px) { .header-inner { padding: 0 var(--container-gutter-tablet); } }
@media (min-width: 1024px) { .header-inner { padding: 0 var(--container-gutter-desktop); } }
.logo { font-family: var(--font-display); font-size: 23px; color: #ffffff; letter-spacing: -0.01em; }
.logo em { font-style: normal; color: var(--accent) !important; }
.logo-accent { color: var(--accent) !important; }
.logo-img {
  display: block;
  height: clamp(64px, 8vw, 90px);
  width: auto;
  max-width: clamp(280px, 60vw, 420px);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}
@media (min-width: 900px) {
  .logo-img { max-width: 400px; height: clamp(64px, 8vw, 90px); }
}
.footer-logo {
  height: clamp(64px, 14vw, 100px);
  width: auto;
  max-width: clamp(320px, 65vw, 500px);
  margin: 0 auto var(--space-4);
}

.nav-desktop { display: none; gap: clamp(20px, 2vw, 32px); align-items: center; }
@media (min-width: 900px) { .nav-desktop { display: flex; } }
.nav-desktop a { font-family: var(--font-display); font-size: 17px; color: var(--fg); transition: color var(--motion-fast) var(--ease-standard); position: relative; padding: var(--space-2) 0; }
.nav-desktop a::after { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width var(--motion-fast) var(--ease-standard); }
.nav-desktop a:hover, .nav-desktop a.active { color: var(--accent); }
.nav-desktop a:hover::after, .nav-desktop a.active::after { width: 100%; }
.nav-desktop a.nav-btn { background: var(--accent); color: var(--accent-on); padding: var(--space-2) var(--space-5); border-radius: var(--radius-sm); font-weight: 500; }
.nav-desktop a.nav-btn::after { display: none; }
.nav-desktop a.nav-btn:hover { background: var(--accent-hover); }

.hamburger { display: inline-flex; align-items: center; gap: var(--space-2); margin-left: auto; z-index: 110; flex-shrink: 0; font-family: var(--font-display); font-size: 15px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fg); background: rgba(0, 0, 0, 0.08); border: 1px solid var(--border); padding: var(--space-2) var(--space-4); border-radius: var(--radius-pill); transition: background var(--motion-fast) var(--ease-standard), color var(--motion-fast) var(--ease-standard), border-color var(--motion-fast) var(--ease-standard); }
.hamburger-label { font-weight: 500; }
@media (max-width: 420px) {
  .hamburger { padding: var(--space-2) var(--space-3); }
}
.hamburger:hover, .hamburger.open { background: rgba(0, 0, 0, 0.12); color: var(--accent); border-color: var(--accent); }
.hamburger:focus-visible { outline: none; box-shadow: var(--focus-ring); }
@media (max-width: 899px) {
  .header-inner { justify-content: space-between; }
  .hamburger { margin-left: 0; }
}
@media (min-width: 900px) {
  .header-inner { justify-content: space-between; }
  .hamburger { display: none; }
}


.mobile-overlay { position: fixed; inset: 0; z-index: 104; background: rgba(0, 0, 0, 0.6); opacity: 0; pointer-events: none; transition: opacity var(--motion-base) var(--ease-standard); backdrop-filter: blur(2px); -webkit-backdrop-filter: blur(2px); }
.mobile-overlay.open { opacity: 1; pointer-events: all; }

.mobile-menu { position: fixed; top: 0; right: 0; bottom: 0; width: min(320px, 80vw); background: var(--surface); z-index: 106; display: flex; flex-direction: column; padding: calc(var(--header-height) + var(--space-4)) var(--space-6) var(--space-8); gap: var(--space-1); transform: translateX(100%); transition: transform var(--motion-base) var(--ease-standard); box-shadow: -8px 0 40px rgba(32, 25, 20, 0.08); overflow-y: auto; }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu-close { position: absolute; top: var(--space-5); right: var(--space-5); width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--fg-2); transition: background var(--motion-fast) var(--ease-standard); }
.mobile-menu-close:hover { background: var(--border-soft); }
.mobile-menu-close svg { width: 20px; height: 20px; }
.mobile-menu .drawer-label { font-size: 10px; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); padding: var(--space-5) var(--space-4) var(--space-2); margin-top: var(--space-2); border-top: 1px solid var(--border-soft); }
.mobile-menu a { display: flex; align-items: center; gap: var(--space-3); font-family: var(--font-body); font-size: var(--text-base); font-weight: 500; color: var(--fg); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); transition: background var(--motion-fast) var(--ease-standard); }
.mobile-menu a:hover { background: var(--accent-light); color: var(--accent); }
.mobile-menu a.active { color: var(--accent); background: var(--accent-light); }
.mobile-menu a.mobile-btn { background: var(--accent); color: var(--accent-on); font-weight: 500; padding: var(--space-3) var(--space-6); border-radius: var(--radius-sm); margin-top: var(--space-4); text-align: center; justify-content: center; }
.mobile-menu a.mobile-btn:hover { background: var(--accent-hover); color: var(--accent-on); }
.mobile-menu a svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--muted); }
.mobile-menu a:hover svg { color: var(--accent); }

/* SECTION COMMON */
section { padding-top: var(--section-y-phone); padding-bottom: var(--section-y-phone); }
@media (min-width: 744px) { section { padding-top: var(--section-y-tablet); padding-bottom: var(--section-y-tablet); } }
@media (min-width: 1024px) { section { padding-top: var(--section-y-desktop); padding-bottom: var(--section-y-desktop); } }

.section-title { text-align: center; margin-bottom: var(--space-12); }
.section-title h2 { margin-bottom: var(--space-3); }
.section-title p { color: var(--fg-2); max-width: 520px; margin: 0 auto; }

/* PAGE HERO */
.page-hero {
  min-height: 40vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(165deg, var(--surface-warm) 0%, var(--bg) 60%);
  padding-top: calc(var(--header-height) + var(--space-12)); padding-bottom: var(--space-12);
  position: relative; overflow: hidden;
}
.page-hero::before { content: ''; position: absolute; top: -30%; left: -10%; width: 50vmax; height: 50vmax; border-radius: 50%; background: radial-gradient(circle, rgba(232, 121, 169, 0.06) 0%, transparent 70%); pointer-events: none; }
.page-hero-content { position: relative; z-index: 2; }
.page-hero p.section-label { margin-bottom: var(--space-3); }
.page-hero h1 { margin-bottom: var(--space-4); }
.page-hero .tagline { font-family: var(--font-display); font-size: var(--text-lg); font-style: italic; color: var(--fg-2); max-width: 560px; margin: 0 auto; }

/* FADE-IN ANIMATION */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity var(--motion-slow) var(--ease-out), transform var(--motion-slow) var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 100ms; }
.fade-in-delay-2 { transition-delay: 200ms; }
.fade-in-delay-3 { transition-delay: 300ms; }

/* SERVICES CARD */
.services-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-6); }
@media (min-width: 600px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: 1fr 1fr 1fr; } }
.service-card { background: var(--surface); border-radius: var(--radius-md); padding: var(--space-8); border: 1px solid var(--border-soft); transition: transform var(--motion-base) var(--ease-standard), box-shadow var(--motion-base) var(--ease-standard); position: relative; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--elev-raised); }
.service-icon { width: 44px; height: 44px; border-radius: var(--radius-sm); background: var(--accent-light); display: flex; align-items: center; justify-content: center; margin-bottom: var(--space-5); }
.service-icon svg { width: 22px; height: 22px; color: var(--accent); }
.service-name { font-family: var(--font-body); font-weight: 600; font-size: var(--text-base); margin-bottom: var(--space-2); }
.service-desc { font-size: var(--text-sm); color: var(--fg-2); line-height: 1.6; margin-bottom: var(--space-4); flex: 1; }
.service-meta { display: flex; align-items: center; justify-content: space-between; padding-top: var(--space-4); border-top: 1px solid var(--border-soft); margin-bottom: var(--space-4); }
.service-price { font-family: var(--font-display); font-size: var(--text-xl); color: var(--accent); }
.service-duration { font-size: var(--text-sm); color: var(--muted); }
.service-cta { display: inline-flex; align-items: center; justify-content: center; gap: var(--space-2); background: var(--accent); color: var(--accent-on); font-weight: 500; font-size: var(--text-sm); padding: var(--space-3) var(--space-6); border-radius: var(--radius-sm); transition: background var(--motion-fast) var(--ease-standard); text-align: center; width: 100%; }
.service-cta:hover { background: var(--accent-hover); }
.package-badge { position: absolute; top: var(--space-4); right: var(--space-4); background: var(--success); color: white; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; padding: var(--space-1) var(--space-3); border-radius: var(--radius-pill); }
.service-card.package { border-color: var(--accent); border-width: 2px; background: linear-gradient(135deg, var(--surface), rgba(201, 56, 140, 0.03)); }
.service-save { font-size: var(--text-sm); color: var(--success); font-weight: 500; margin-bottom: var(--space-3); }
.service-save svg { width: 14px; height: 14px; vertical-align: middle; margin-right: 4px; }

/* FOOTER */
.site-footer { background: var(--fg); color: rgba(255, 253, 248, 0.7); text-align: center; padding: var(--space-10) var(--container-gutter-phone); font-size: var(--text-sm); }
.site-footer .logo { color: var(--accent-on); margin: 0 auto var(--space-4); display: block; }
.site-footer p { line-height: 1.8; }
.site-footer a { color: var(--accent-on); text-decoration: underline; }
.footer-meta { margin-top: var(--space-2); font-size: var(--text-xs); color: var(--footer-fg-muted); }

/* STICKY MOBILE CTA */
.mobile-sticky-cta { display: flex; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90; background: var(--surface); border-top: 1px solid var(--border-soft); padding: var(--space-3) var(--container-gutter-phone); gap: var(--space-3); transform: translateY(100%); transition: transform var(--motion-base) var(--ease-standard); }
.mobile-sticky-cta.visible { transform: translateY(0); }
.mobile-sticky-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: var(--space-2); padding: var(--space-3) var(--space-4); border-radius: var(--radius-sm); font-weight: 500; font-size: var(--text-sm); }
.mobile-sticky-cta .cta-call { background: var(--bg); border: 1px solid var(--border); color: var(--fg); }
.mobile-sticky-cta .cta-booksy { background: var(--accent); color: var(--accent-on); }
.mobile-sticky-cta svg { width: 18px; height: 18px; flex-shrink: 0; }
@media (min-width: 900px) { .mobile-sticky-cta { display: none; } }

/* RESPONSIVE — padding bottom dla mobile */
@media (max-width: 899px) { body { padding-bottom: 72px; } }

/* SKIP LINK */
.skip-link { position: absolute; top: -100%; left: var(--space-4); z-index: 300; background: var(--accent); color: var(--accent-on); padding: var(--space-2) var(--space-4); border-radius: var(--radius-sm); }
.skip-link:focus { top: var(--space-4); }

/* ACCESSIBILITY UTILITIES */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }


/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; z-index: 200; background: var(--lightbox-bg); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--motion-base) var(--ease-standard); padding: var(--space-4); }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content { max-width: 90vw; max-height: 90vh; width: 100%; background: transparent; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-direction: column; gap: var(--space-3); color: white; position: relative; }
.lightbox-content img { max-width: 90vw; max-height: 85vh; width: auto; height: auto; border-radius: var(--radius-md); box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5); transform: scale(0.92); opacity: 0; transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity var(--motion-base) var(--ease-standard); }
.lightbox.open .lightbox-content img { transform: scale(1); opacity: 1; }
.lightbox-content svg { width: 48px; height: 48px; opacity: 0.5; }
.lightbox-caption { color: white; text-align: center; font-size: var(--text-sm); opacity: 0; transition: opacity var(--motion-base) var(--ease-standard) 200ms; max-width: 600px; display: none; }
.lightbox.open .lightbox-caption { opacity: 1; }
.lightbox-close { position: fixed; top: var(--space-4); right: var(--space-4); width: 44px; height: 44px; border-radius: 50%; background: var(--lightbox-close-bg); color: white; display: flex; align-items: center; justify-content: center; transition: background var(--motion-fast) var(--ease-standard), transform var(--motion-fast) var(--ease-standard); border: 0; cursor: pointer; z-index: 201; }
.lightbox-close:hover { background: var(--lightbox-close-hover-bg); transform: scale(1.08); }
.lightbox-close:focus-visible { outline: 2px solid var(--accent-on); outline-offset: 2px; }
.lightbox-close svg { width: 22px; height: 22px; opacity: 1; color: white; }

@media (prefers-reduced-motion: reduce) {
  .lightbox-content img { transition: opacity var(--motion-fast) linear; transform: none; }
  .lightbox.open .lightbox-content img { transform: none; }
}
