/* =====================================================================
   Perfect Clean — Style główne (LIGHT BOUTIQUE)
   Inspiracja: stara strona — biały minimalizm + peach akcent.
   Mobile-first.
   ===================================================================== */

:root {
  /* Paleta — kremowo-biała, peach akcent */
  --peach:       #e89b8a;
  --peach-2:     #d88471;
  --peach-soft:  rgba(232, 155, 138, 0.12);
  --peach-line:  rgba(232, 155, 138, 0.35);

  --bg:          #ffffff;
  --bg-cream:    #faf7f2;
  --bg-soft:     #f4f0eb;
  --bg-dark:     #1a1a1a;

  --text:        #1a1a1a;
  --text-2:      #3a3a3a;
  --text-mute:   #777777;
  --line:        rgba(0, 0, 0, 0.08);
  --line-strong: rgba(0, 0, 0, 0.16);

  --radius:      14px;
  --radius-sm:   10px;
  --radius-lg:   22px;
  --radius-pill: 999px;

  --shadow-sm:   0 2px 12px -4px rgba(0,0,0,0.08);
  --shadow:      0 8px 30px -10px rgba(0,0,0,0.12);
  --shadow-lg:   0 30px 60px -25px rgba(0,0,0,0.20);
  --shadow-peach:0 12px 40px -12px rgba(232,155,138,0.45);

  --font-head:   "Poppins", "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --t-fast:      .2s cubic-bezier(.2,.7,.3,1);
  --t-norm:      .35s cubic-bezier(.2,.7,.3,1);
  --t-slow:      .6s cubic-bezier(.2,.7,.3,1);

  --container:   1200px;
}

/* ===== Reset / base ===== */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; color: inherit; }
ul, ol { padding-left: 1.1em; }
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 .6em;
  color: var(--text);
}
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; left: -9999px; }
.skip-link:focus { left: 8px; top: 8px; background: var(--peach); color: #fff; padding: 8px 12px; z-index: 1000; border-radius: 8px; }

/* ===== Container ===== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ===== Helpers ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 18px; border: 1px solid var(--peach-line); border-radius: var(--radius-pill);
  font-size: 12px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
  color: var(--peach); background: rgba(255,255,255,0.08); backdrop-filter: blur(8px);
}
.pill-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--peach); box-shadow: 0 0 0 4px var(--peach-soft); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: var(--radius-pill); border: 1px solid transparent;
  font-family: var(--font-head); font-weight: 600; font-size: 15px;
  letter-spacing: .01em; text-decoration: none; cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  white-space: nowrap;
}
.btn-primary {
  background: var(--peach);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover {
  background: var(--peach-2);
  transform: translateY(-2px);
  box-shadow: var(--shadow-peach);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--peach);
  color: var(--peach);
  transform: translateY(-2px);
}
.btn-light {
  background: rgba(255,255,255,0.95);
  color: var(--text);
}
.btn-light:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-sm { padding: 11px 20px; font-size: 14px; }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .4; cursor: not-allowed; transform: none !important; box-shadow: none !important; }

/* ===== Header ===== */
.site-header {
  position: absolute; top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background var(--t-norm), backdrop-filter var(--t-norm), box-shadow var(--t-norm);
}
.site-header.is-scrolled,
.site-header.is-static {
  position: fixed;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  box-shadow: 0 4px 20px -10px rgba(0,0,0,0.08);
}
.site-header.is-static { position: sticky; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 56px 40px;
}
.site-header.is-scrolled .header-inner,
.site-header.is-static .header-inner { padding: 32px 40px; }
@media (max-width: 720px) {
  .header-inner { padding: 24px 16px; }
  .site-header.is-scrolled .header-inner,
  .site-header.is-static .header-inner { padding: 18px 16px; }
}

.logo { display: inline-flex; align-items: center; gap: 10px; }
.logo-img {
  height: 140px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
  transition: height var(--t-norm);
}
.site-header.is-scrolled .logo-img,
.site-header.is-static .logo-img { height: 100px; max-width: 280px; }
@media (max-width: 720px) {
  .logo-img { height: 78px; max-width: 220px; }
  .site-header.is-scrolled .logo-img,
  .site-header.is-static .logo-img { height: 62px; max-width: 200px; }
}
.site-header:not(.is-scrolled):not(.is-static) .logo-img.logo-img-light { display: inline-block; }
.site-header:not(.is-scrolled):not(.is-static) .logo-img.logo-img-dark { display: none; }
.site-header.is-scrolled .logo-img.logo-img-light,
.site-header.is-static .logo-img.logo-img-light { display: none; }
.site-header.is-scrolled .logo-img.logo-img-dark,
.site-header.is-static .logo-img.logo-img-dark { display: inline-block; }

.main-nav { display: flex; align-items: center; gap: 42px; }
.main-nav a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffffff;
  transition: color var(--t-fast);
}
@media (max-width: 1100px) { .main-nav { gap: 28px; } .main-nav a { font-size: 14px; } }
.site-header.is-scrolled .main-nav a,
.site-header.is-static .main-nav a { color: var(--text); }
.main-nav a:hover { color: var(--peach); }
.main-nav a[aria-current="page"] { color: var(--peach); }
.main-nav a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -8px; height: 2px; background: var(--peach); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 18px; }

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.32);
  border-radius: var(--radius-pill);
  padding: 4px;
  font-family: var(--font-head);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
}
.site-header.is-scrolled .lang-switch,
.site-header.is-static .lang-switch {
  background: rgba(0,0,0,0.04);
  border-color: var(--line-strong);
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  color: #ffffff;
  transition: background var(--t-fast), color var(--t-fast);
}
.site-header.is-scrolled .lang-switch a,
.site-header.is-static .lang-switch a { color: var(--text-2); }
.lang-switch a.is-active {
  background: var(--peach);
  color: #ffffff !important;
  pointer-events: none;
  box-shadow: var(--shadow-sm);
}
.lang-switch a:hover:not(.is-active) {
  color: var(--peach);
  background: rgba(255,255,255,0.18);
}
.lang-switch span { display: none; }

/* ===== Language selection modal (first visit) ===== */
.lang-modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(8px);
  opacity: 0; pointer-events: none;
  transition: opacity var(--t-norm);
}
.lang-modal.is-open { opacity: 1; pointer-events: auto; }
.lang-modal-box {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  text-align: center;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--shadow-lg);
  transform: scale(.95);
  transition: transform var(--t-norm);
}
.lang-modal.is-open .lang-modal-box { transform: scale(1); }
.lang-modal-logo { height: 40px; margin: 0 auto 18px; }
.lang-modal h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.005em;
  color: var(--text);
}
.lang-modal p {
  font-size: 14px;
  color: var(--text-mute);
  margin: 0 0 28px;
}
.lang-modal-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.lang-modal-btn {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 22px 16px;
  background: var(--bg-cream);
  border: 2px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
  transition: border-color var(--t-fast), background var(--t-fast), transform var(--t-fast);
}
.lang-modal-btn:hover {
  border-color: var(--peach);
  background: var(--peach-soft);
  transform: translateY(-2px);
}
.lang-modal-flag { font-size: 36px; line-height: 1; }
.lang-modal-name { font-size: 13px; color: var(--text-mute); font-weight: 500; letter-spacing: .12em; text-transform: uppercase; }

.header-cta {
  padding: 12px 22px;
  font-size: 14px;
}

.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,0.4); border-radius: 12px; background: transparent; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.nav-toggle span { width: 20px; height: 2px; background: #ffffff; border-radius: 2px; transition: var(--t-fast); }
.site-header.is-scrolled .nav-toggle,
.site-header.is-static .nav-toggle { border-color: var(--line-strong); }
.site-header.is-scrolled .nav-toggle span,
.site-header.is-static .nav-toggle span { background: var(--text); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ===== Sections ===== */
.section { padding: clamp(72px, 10vw, 140px) 0; }
.section-cream { background: var(--bg-cream); }
.section-soft  { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 760px; margin: 0 auto 64px; }
.section-eyebrow-line {
  display: inline-block;
  margin: 16px auto 0;
  width: 60px;
  height: 3px;
  background: var(--peach);
  border-radius: 2px;
}
.section-h2 {
  font-size: clamp(30px, 4.5vw, 52px);
  margin-bottom: 0;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.section-lead { color: var(--text-2); font-size: 17px; max-width: 640px; margin: 20px auto 0; line-height: 1.7; }
.section-actions { text-align: center; margin-top: 56px; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 260px 0 100px;
  overflow: hidden;
  isolation: isolate;
  background: var(--bg-dark);
}
@media (max-width: 720px) { .hero { padding: 160px 0 70px; } }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('/assets/img/uploads/hero.jpg');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.70) 60%, rgba(0,0,0,0.78) 100%);
}
.hero-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
  color: #ffffff;
}
.hero-h1 {
  font-family: var(--font-head);
  font-size: clamp(34px, 5.2vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 26px 0 20px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5);
}
.hero-sub {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin: 0 auto 14px;
  max-width: 780px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.5);
}
.hero-location {
  font-family: var(--font-head);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 40px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.6), 0 1px 6px rgba(0,0,0,0.5);
}
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.hero-cta .btn-primary { padding: 18px 42px; font-size: 16px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; max-width: 720px; margin: 56px auto 0;
}
.stat-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 20px 18px;
  text-align: center;
  color: #ffffff;
}
.stat-v { font-family: var(--font-head); font-weight: 700; font-size: 22px; margin-bottom: 4px; }
.stat-l { color: rgba(255,255,255,0.85); font-size: 12px; letter-spacing: .08em; }
@media (max-width: 700px) {
  .hero-stats { grid-template-columns: 1fr; gap: 10px; }
  .stat-card { padding: 14px; }
}

/* ===== Pillars (3 filary usług — z dużymi zdjęciami) ===== */
.pillars-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 780px) { .pillars-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.pillar {
  position: relative;
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--t-norm), box-shadow var(--t-norm);
}
.pillar:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pillar-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.pillar-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}
.pillar:hover .pillar-image img { transform: scale(1.06); }

.pillar-body { padding: 28px 16px 0; }
.pillar-body h3 {
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 14px;
  letter-spacing: -0.005em;
}
.pillar-body p {
  color: var(--text-2);
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.7;
}
.pillar-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--peach); font-weight: 600; font-size: 14px;
  text-transform: uppercase; letter-spacing: .1em;
}
.pillar-link svg { transition: transform var(--t-fast); }
.pillar-link:hover svg { transform: translateX(4px); }

/* Zachowane stare style pillar-icon (jeszcze może być używane gdzie indziej) */
.pillar-icon { display: none; }

/* ===== USP cards ===== */
.usp-grid { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 600px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .usp-grid { grid-template-columns: repeat(3, 1fr); } }
.usp-card {
  padding: 32px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-align: center;
}
.usp-card:hover { transform: translateY(-4px); border-color: var(--peach-line); box-shadow: var(--shadow); }
.usp-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--peach-soft);
  color: var(--peach);
  display: inline-flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.usp-card h3 { font-size: 17px; margin-bottom: 8px; font-weight: 600; }
.usp-card p  { color: var(--text-2); font-size: 14px; margin: 0; line-height: 1.65; }

/* ===== Before/After Slider ===== */
.ba-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 760px) { .ba-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .ba-grid { grid-template-columns: repeat(3, 1fr); } }
.ba-grid-wide { grid-template-columns: 1fr; }
@media (min-width: 760px) { .ba-grid-wide { grid-template-columns: repeat(2, 1fr); } }

.ba-slider { margin: 0; }
.ba-img-wrap {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  user-select: none; touch-action: none;
  box-shadow: var(--shadow);
}
.ba-img-wrap img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ba-before-wrap { position: absolute; inset: 0; width: 50%; overflow: hidden; }
.ba-before { left: 0; }
.ba-range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; z-index: 5; }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%; width: 3px;
  background: var(--peach);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.18);
  pointer-events: none;
}
.ba-handle::before {
  content: ""; position: absolute; left: 50%; top: 50%;
  width: 46px; height: 46px; transform: translate(-50%, -50%);
  border-radius: 50%; background: var(--peach); border: 3px solid #fff;
  box-shadow: var(--shadow-peach);
}
.ba-handle::after {
  content: "‹›"; position: absolute; left: 50%; top: 50%;
  transform: translate(-50%, -52%); color: #fff; font-weight: 800;
  font-size: 18px;
}
.ba-label { position: absolute; top: 14px; padding: 5px 12px; border-radius: var(--radius-pill); font-size: 11px; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; backdrop-filter: blur(6px); }
.ba-label-before { left: 14px; background: rgba(255,255,255,0.85); color: var(--text); }
.ba-label-after  { right: 14px; background: var(--peach); color: #fff; }
.ba-slider figcaption { color: var(--text-2); font-size: 14px; margin-top: 14px; padding: 0 4px; text-align: center; }

/* ===== Founder section ===== */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: start; }
@media (min-width: 880px) { .founder-grid { grid-template-columns: minmax(300px, 420px) 1fr; gap: 80px; } }
@media (min-width: 880px) { .founder-photo { position: sticky; top: 130px; } }
.founder-hero { padding: clamp(120px, 14vw, 180px) 0 60px; }
.founder-grid-hero { gap: 64px; align-items: center; }
@media (min-width: 880px) { .founder-grid-hero { grid-template-columns: 1fr 1.2fr; }
  .founder-grid-hero .founder-photo { position: static; }
}

/* Tekst w sekcji founder (na home — pełna historia) */
.founder-text .story-p {
  font-size: 17px;
  line-height: 1.8;
  color: var(--text-2);
  margin: 0 0 22px;
}
.founder-text .founder-quote {
  font-size: 17px;
  margin: 26px 0;
  font-style: normal;
  font-weight: 500;
  font-family: var(--font-body);
}

.founder-photo { position: relative; }
.founder-photo-frame {
  position: relative;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-soft), var(--bg-cream));
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.founder-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo-fallback {
  display: flex; align-items: center; justify-content: center;
}
.founder-mark {
  position: absolute; right: 20px; bottom: 20px;
  font-family: var(--font-head); font-weight: 800; font-size: 84px;
  color: var(--peach); opacity: .9; line-height: 1;
}
.founder-badge {
  position: absolute; left: -16px; bottom: 28px;
  background: var(--peach); color: #ffffff; padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-head); font-weight: 700;
  display: flex; align-items: baseline; gap: 8px;
  box-shadow: var(--shadow-peach);
}
.founder-badge strong { font-size: 22px; }
.founder-badge span { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }

.founder-text .section-h2,
.founder-text h1 {
  text-transform: none;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.015em;
  margin: 0 0 32px;
}
.founder-lead {
  font-size: 17px;
  font-weight: 400;
  color: var(--text-2);
  margin: 0 0 22px;
  line-height: 1.75;
}
.founder-quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  border-left: 3px solid var(--peach);
  padding: 6px 0 6px 20px;
  margin: 26px 0;
  background: transparent;
}
.founder-quote::before {
  content: none;
}

.section-founder { background: var(--bg-cream); }
.section-story { padding-top: 40px; background: var(--bg); }
.story-p { font-size: 17px; color: var(--text-2); margin: 0 0 22px; line-height: 1.8; }
.story-quote {
  font-family: var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
  color: var(--text);
  margin: 32px 0;
  padding: 14px 0 14px 22px;
  max-width: none;
  position: relative;
  border-left: 3px solid var(--peach);
  border-top: 0;
  border-bottom: 0;
}
.story-quote::before { content: none; }
.story-quote::after  { content: none; }
.story-signature { text-align: right; font-family: var(--font-head); }
.story-signature strong { font-size: 22px; color: var(--text); }
.story-signature span { color: var(--text-mute); font-size: 14px; }

.founder-callout {
  display: grid; grid-template-columns: 1fr; gap: 28px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--peach-soft), transparent);
  border: 1px solid var(--peach-line);
  border-radius: var(--radius-lg);
}
@media (min-width: 800px) { .founder-callout { grid-template-columns: 1.4fr auto; } }

/* ===== Reviews ===== */
.reviews-meta {
  display: inline-flex; align-items: center; gap: 14px;
  margin-top: 12px; font-size: 15px; color: var(--text-2);
}
.reviews-meta strong { color: var(--text); font-size: 22px; font-family: var(--font-head); }

.reviews-carousel { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .reviews-carousel { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-carousel { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  padding: 30px 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
}
.review-card:hover { transform: translateY(-3px); border-color: var(--peach-line); box-shadow: var(--shadow); }
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-text { color: var(--text-2); font-size: 15px; line-height: 1.7; margin: 0 0 18px; }
.review-meta { color: var(--text-mute); font-size: 13px; }
.review-meta strong { color: var(--text); }

.reviews-bigmeta {
  display: inline-grid; grid-template-columns: auto auto auto; align-items: center; gap: 28px;
  padding: 28px 32px; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--bg); margin-top: 24px;
  box-shadow: var(--shadow-sm);
}
.rating-num { font-family: var(--font-head); font-weight: 800; font-size: 56px; line-height: 1; color: var(--text); }
.rating-count { color: var(--text-mute); font-size: 14px; margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 700px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.reviews-note { text-align: center; color: var(--text-mute); font-size: 13px; margin-top: 32px; }

.trust-stars { display: inline-flex; gap: 2px; align-items: center; vertical-align: middle; }
.trust-stars span { margin-left: 10px; color: var(--text-2); }
.trust-stars-lg svg { width: 22px; height: 22px; }

/* ===== Service cards (Services page) ===== */
.services-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
@media (min-width: 720px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1080px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  position: relative;
  padding: 28px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color var(--t-norm), transform var(--t-norm), box-shadow var(--t-norm);
}
.service-card:hover { transform: translateY(-4px); border-color: var(--peach-line); box-shadow: var(--shadow); }
.service-card-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.service-card-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--peach-soft); color: var(--peach); display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-card-head h3 { font-size: 18px; margin: 0; }
.service-card-short { color: var(--text); font-size: 15px; margin: 0 0 10px; }
.service-card-desc  { color: var(--text-2); font-size: 14px; margin: 0 0 22px; }
.service-card-foot { display: flex; align-items: end; justify-content: space-between; gap: 14px; padding-top: 16px; border-top: 1px solid var(--line); }
.service-card-price strong { font-family: var(--font-head); font-size: 22px; color: var(--text); }
.service-card-price small { color: var(--text-2); font-size: 12px; margin-left: 6px; }
.price-label { display: block; font-size: 11px; color: var(--text-mute); text-transform: uppercase; letter-spacing: .14em; }
.service-card-meta { margin-top: 14px; color: var(--text-mute); font-size: 13px; }

.services-mini-grid { display: grid; grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .services-mini-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services-mini-grid { grid-template-columns: repeat(3, 1fr); } }
.service-mini {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 16px;
  padding: 18px 22px; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  color: var(--text); transition: border-color var(--t-fast), transform var(--t-fast);
}
.service-mini:hover { border-color: var(--peach); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.service-mini-icon { width: 40px; height: 40px; border-radius: 10px; background: var(--peach-soft); color: var(--peach); display: inline-flex; align-items: center; justify-content: center; }
.service-mini h3 { font-size: 15px; margin: 0 0 2px; }
.service-mini p  { font-size: 13px; color: var(--text-2); margin: 0; }
.service-mini-arrow { color: var(--peach); font-size: 20px; font-weight: 700; }

/* ===== Page hero (sub-pages) ===== */
.page-hero {
  padding: clamp(120px, 14vw, 180px) 0 60px;
  text-align: center;
  background: var(--bg-cream);
}
.page-h1 { font-size: clamp(36px, 5vw, 60px); margin: 14px 0 16px; text-transform: uppercase; letter-spacing: -0.01em; }
.page-lead { color: var(--text-2); font-size: 18px; max-width: 720px; margin: 0 auto; }

/* ===== Form (Wycena, kontakt) ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 18px;
}
@media (min-width: 700px) { .form-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.form-field-wide { grid-column: 1 / -1; }
.form-field > span {
  display: block;
  font-family: var(--font-head);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-2);
}
.form-field input,
.form-field select,
.form-field textarea {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.4;
  font-family: var(--font-body);
  transition: border-color var(--t-fast), background var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='none' stroke='%23777' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--peach);
  box-shadow: 0 0 0 3px var(--peach-soft);
}
.form-field textarea { resize: vertical; min-height: 130px; }
.form-check { display: flex; align-items: flex-start; gap: 10px; margin-top: 18px; font-size: 14px; color: var(--text-2); cursor: pointer; }
.form-check input { margin-top: 4px; accent-color: var(--peach); }
.form-check a { color: var(--peach); }
.form-check.inline { margin: 0; }
.form-error  { padding: 12px 16px; background: rgba(220, 80, 80, 0.08); border: 1px solid rgba(220,80,80,0.25); border-radius: var(--radius-sm); color: #b03030; font-size: 14px; margin-bottom: 16px; }
.form-success{ padding: 12px 16px; background: rgba(80, 180, 100, 0.08); border: 1px solid rgba(80,180,100,0.3); border-radius: var(--radius-sm); color: #2a7a3e; font-size: 14px; margin-bottom: 16px; }

/* ===== Quote (Wycena) form box ===== */
.quote-box {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}
@media (max-width: 600px) { .quote-box { padding: 28px 22px; } }

/* ===== FAQ ===== */
.faq-list { display: grid; gap: 14px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  overflow: hidden;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.faq-item:hover { border-color: var(--line-strong); box-shadow: var(--shadow-sm); }
.faq-item[open] { border-color: var(--peach); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 26px; cursor: pointer;
  font-family: var(--font-head); font-weight: 600;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { transition: transform var(--t-fast); flex-shrink: 0; color: var(--text-mute); }
.faq-item[open] summary svg { transform: rotate(180deg); color: var(--peach); }
.faq-answer { padding: 0 26px 26px; color: var(--text-2); }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 48px; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: 380px 1fr; gap: 64px; } }
.contact-info { background: var(--bg-cream); padding: 32px; border-radius: var(--radius); }
.contact-block { padding: 22px 0; border-bottom: 1px solid var(--line); }
.contact-block:last-child { border-bottom: 0; }
.contact-block h3 { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 8px; font-weight: 600; }
.contact-big-link { display: block; font-family: var(--font-head); font-weight: 700; font-size: 22px; color: var(--text); margin-bottom: 10px; }
.contact-big-link:hover { color: var(--peach); }
.contact-form { background: var(--bg); padding: 40px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.map-section { padding-bottom: 0; background: var(--bg-cream); }
.map-wrap { margin-top: 24px; line-height: 0; }
.map-wrap iframe { width: 100%; height: 450px; border: 0; }

/* ===== Legal page ===== */
.legal h2 { margin-top: 32px; font-size: 20px; }
.legal p  { color: var(--text-2); }

/* ===== CTA band (above footer) ===== */
.cta-band {
  padding: clamp(72px, 10vw, 110px) 0;
  background: var(--bg-dark);
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 80% at 50% 0%, rgba(232,155,138,0.20), transparent 70%);
}
.cta-band h2 { color: #ffffff; font-size: clamp(28px, 4vw, 42px); margin: 12px 0 8px; text-transform: uppercase; }
.cta-band-text { color: rgba(255,255,255,0.85); margin: 0; }
.cta-band .eyebrow { color: var(--peach); }
.cta-band-inner { display: grid; grid-template-columns: 1fr; gap: 24px; align-items: center; text-align: center; }
@media (min-width: 800px) { .cta-band-inner { grid-template-columns: 1.4fr auto; gap: 48px; text-align: left; } }
.cta-band .btn-primary { background: var(--peach); }
.cta-band .btn-primary:hover { background: var(--peach-2); }

/* ===== Footer ===== */
.site-footer {
  background: var(--bg-dark);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.footer-grid {
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer-col h4 { font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: #ffffff; margin-bottom: 16px; }
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
.footer-col a:hover { color: var(--peach); }
.footer-about { margin: 12px 0 18px; color: rgba(255,255,255,0.65); }
.logo-footer .logo-img { filter: invert(1) brightness(2); height: 36px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.8);
  transition: border-color var(--t-fast), color var(--t-fast), background var(--t-fast);
}
.footer-social a:hover { border-color: var(--peach); color: var(--peach); background: rgba(232,155,138,0.10); }
.footer-contact li { display: block; margin-bottom: 10px; }
.footer-hours { margin-top: 14px; color: rgba(255,255,255,0.55); font-size: 13px; }
.footer-bottom { margin-top: 56px; padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.10); }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,0.45); font-size: 13px; }
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--peach); }

/* ===== Mobile sticky action bar ===== */
.mobile-bar { display: none; }
@media (max-width: 720px) {
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0;
    position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 60;
    background: rgba(255,255,255,0.95); backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,0.18);
    overflow: hidden;
    transform: translateY(140%);
    opacity: 0;
    transition: transform var(--t-norm), opacity var(--t-norm);
    pointer-events: none;
  }
  .mobile-bar.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .mobile-bar-btn { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; color: var(--text); font-size: 11px; padding: 12px 8px; font-weight: 600; }
  .mobile-bar-btn svg { color: var(--peach); }
  .mobile-bar-btn.mobile-bar-cta { background: var(--peach); color: #fff; }
  .mobile-bar-btn.mobile-bar-cta svg { color: #fff; }
  body.mobile-bar-shown { padding-bottom: 84px; }
  .nav-toggle { display: inline-flex; }
  .main-nav {
    position: fixed; top: 76px; right: 12px; left: 12px;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: rgba(255,255,255,0.98); backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 8px;
    max-height: 0; overflow: hidden;
    transition: max-height var(--t-norm);
    box-shadow: var(--shadow);
  }
  .main-nav.is-open { max-height: 80vh; padding: 14px; }
  .main-nav a { width: 100%; padding: 12px 14px; border-radius: 10px; color: var(--text) !important; }
  .main-nav a[aria-current="page"]::after { display: none; }
  .main-nav a[aria-current="page"] { background: var(--peach-soft); color: var(--peach) !important; }
  .header-cta { display: none; }
}

/* ===== Cookie banner ===== */
.cookie-banner {
  position: fixed; left: 16px; right: 16px; bottom: 16px;
  z-index: 80;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; gap: 16px; align-items: center; justify-content: space-between;
  font-size: 14px; color: var(--text-2);
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
}
.cookie-banner p { margin: 0; }
.cookie-banner div { display: flex; gap: 14px; align-items: center; }
.cookie-banner a { color: var(--peach); }
@media (max-width: 720px) { .cookie-banner { flex-direction: column; align-items: flex-start; bottom: 100px; } }

/* ===== Reveal animations ===== */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity var(--t-slow), transform var(--t-slow); transition-delay: var(--d, 0ms); }
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fade-up { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* ===== Empty / utility ===== */
.empty-note { color: var(--text-2); text-align: center; padding: 60px 0; }

/* ===== Print ===== */
@media print {
  .mobile-bar, .cookie-banner, .site-header, .site-footer { display: none !important; }
}

/* ===== Booking — minimal styles (legacy, jeśli kiedyś wróci) ===== */
.booking-steps li { color: var(--text-mute); }
.booking-steps li.is-active { color: var(--peach); }
