/* ═══════════════════════════════════════════
   DESIGN SYSTEM — nawiązanie do wizytówki
   ═══════════════════════════════════════════ */
:root {
  /* Backgrounds */
  --white:        #FFFFFF;
  --cream:        #FAF8FD;
  --lavender-bg:  #F2EDF9;

  /* Brand purple (z wizytówki) */
  --purple-pale:  #E8E0F5;
  --purple-light: #C0AEE8;
  --purple:       #8B78C4;
  --purple-mid:   #6B58A8;
  --purple-dark:  #4A3580;
  --purple-deep:  #2D1B5E;

  /* Sage green (ikony wizytówki) */
  --sage-light:   #C8DEC8;
  --sage:         #7EAD87;
  --sage-dark:    #4A7A55;

  /* Watercolor pink (kwiaty) */
  --pink-light:   #F5D8E4;
  --pink:         #E8A0B4;

  /* Text */
  --ink:          #1A1820;
  --muted:        #68687A;
  --soft:         #9898AA;

  --nav-h: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
}

/* ─── NAV ─── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5vw;
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.72);
  box-shadow: 0 1px 24px rgba(100,80,160,0.10);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.9rem;
  text-decoration: none;
}
.nav-logo img {
  height: 50px; width: auto; object-fit: contain;
  border-radius: 3px;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.nav-logo-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 600;
  color: var(--purple-deep); letter-spacing: 0.02em;
  transition: color 0.35s;
}
.nav-logo-text .sub {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.62rem; font-weight: 400;
  color: var(--purple); letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: color 0.35s;
}
#navbar:not(.scrolled) .nav-logo-text .name { color: var(--purple-deep); }
#navbar:not(.scrolled) .nav-logo-text .sub { color: var(--purple); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  text-decoration: none;
  color: var(--muted);
  transition: color 0.2s;
}
#navbar.scrolled .nav-links a { color: var(--muted); }
.nav-links a:hover { color: var(--pink); }
.nav-cta {
  border: 1px solid var(--purple-light);
  padding: 0.4rem 1.2rem; border-radius: 2px;
  color: var(--purple) !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s !important;
}
#navbar.scrolled .nav-cta { color: var(--purple) !important; border-color: var(--purple); }
.nav-cta:hover { background: var(--pink) !important; color: #fff !important; border-color: var(--pink) !important; }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--ink); transition: 0.3s; }
#navbar.scrolled .hamburger span { background: var(--ink); }

/* ─── HERO ─── */
#hero {
  position: relative; height: 100vh; min-height: 620px;
  display: flex; align-items: center;
  overflow: hidden;
  background: #fff url('img/tlo.png') right center / auto 100% no-repeat;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 0 5vw;
  padding-top: var(--nav-h);
  max-width: 620px;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--purple);
  margin-bottom: 1.75rem;
  opacity: 0; animation: fadeUp 0.8s 0.3s forwards;
}
.hero-eyebrow::before {
  content: ''; width: 30px; height: 1px;
  background: linear-gradient(to right, transparent, var(--purple));
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 350; line-height: 1.1;
  color: var(--purple-deep); margin-bottom: 1.6rem;
  opacity: 0; animation: fadeUp 0.9s 0.5s forwards;
}
.hero-title em { font-style: italic; color: var(--purple-mid); }
.hero-desc {
  font-family: 'Lato', sans-serif;
  font-size: 1.05rem; font-weight: 300;
  line-height: 1.85; color: var(--muted);
  max-width: 460px; margin-bottom: 2.5rem;
  opacity: 0; animation: fadeUp 0.9s 0.7s forwards;
}
.hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.9s 0.9s forwards;
}
.btn-primary {
  display: inline-block; text-decoration: none;
  padding: 0.9rem 2.4rem;
  background: var(--pink); color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--pink);
  transition: background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
}
.btn-primary:hover { background: transparent; color: var(--pink); border-color: var(--pink); }
.btn-outline {
  display: inline-block; text-decoration: none;
  padding: 0.9rem 2.4rem;
  background: transparent; color: var(--purple-dark);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.78rem; font-weight: 400;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--purple-light);
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--purple); color: var(--purple); }

.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--soft);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
.scroll-line {
  width: 1px; height: 38px;
  background: linear-gradient(to bottom, rgba(232,160,180,0.7), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn  { from { opacity:0; } to { opacity:1; } }
@keyframes scrollPulse { 0%,100%{opacity:0.4;} 50%{opacity:1;} }

/* ─── SECTIONS ─── */
section { padding: 7rem 5vw; }
.section-tag {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--sage-dark);
  margin-bottom: 0.9rem;
}
.section-tag::before {
  content: ''; width: 20px; height: 1px; background: var(--sage);
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.1rem, 4.5vw, 3.6rem);
  font-weight: 400; line-height: 1.18;
  color: var(--ink); margin-bottom: 1.4rem;
}
h2.section-title em { font-style: italic; color: var(--purple-mid); }
.section-lead {
  font-family: 'Lato', sans-serif;
  font-size: 1.02rem; font-weight: 300;
  line-height: 1.88; color: var(--muted);
  max-width: 560px;
}

/* ─── ABOUT ─── */
#o-mnie {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem; align-items: center;
  background: var(--cream);
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; aspect-ratio: 4/5;
  overflow: hidden; border-radius: 16px;
  box-shadow: 0 24px 60px rgba(100,80,160,0.12);
}
.about-img img {
  width: 100%; height: 100%; object-fit: cover;
  object-position: top center;
  transition: transform 0.6s ease;
}
.about-img:hover img { transform: scale(1.03); }

/* Decorative floral corner on photo */
.about-floral {
  position: absolute; bottom: -2rem; right: -2rem;
  width: 140px; height: 140px; pointer-events: none;
  opacity: 0.75;
}

.about-badge {
  position: absolute; top: -1.2rem; left: -1.2rem;
  width: 100px; height: 100px;
  background: var(--purple-deep);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: #fff; text-align: center;
  box-shadow: 0 8px 24px rgba(45,27,94,0.3);
}
.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem; font-weight: 400; line-height: 1;
}
.about-badge span {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.54rem; font-weight: 300; letter-spacing: 0.22em;
  text-transform: uppercase; margin-top: 2px;
  color: var(--purple-light);
}

.about-stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat { border-left: 2px solid var(--sage); padding-left: 1rem; }
.stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 400; color: var(--purple-mid);
}
.stat span {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem; color: var(--muted); font-weight: 300;
}

/* ─── SERVICES ─── */
#uslugi { background: var(--lavender-bg); }
#uslugi .section-tag { color: var(--purple-mid); }
#uslugi .section-tag::before { background: var(--purple); }

.services-header {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: end; margin-bottom: 3.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  padding: 2.5rem 2.2rem 2.5rem;
  background: var(--white);
  border: 1px solid rgba(139,120,196,0.12);
  border-top: 3px solid rgba(139,120,196,0.25);
  border-radius: 3px;
  box-shadow: 0 4px 24px rgba(100,80,160,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
  position: relative; overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(to right, var(--pink), var(--purple));
  transition: width 0.4s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(100,80,160,0.12);
  border-top-color: var(--purple);
}
.service-card:hover::after { width: 100%; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem; font-weight: 400;
  color: rgba(139,120,196,0.38); line-height: 1;
  margin-bottom: 0.9rem;
}
.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 500;
  color: var(--ink); margin-bottom: 0.9rem;
  line-height: 1.25;
}
.service-card p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 400;
  line-height: 1.85; color: var(--muted);
}

/* ─── PORTFOLIO ─── */
#realizacje { background: var(--white); }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 3rem; flex-wrap: wrap; gap: 1.5rem;
}
.portfolio-filter {
  display: flex; gap: 0.5rem; flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  padding: 0.45rem 1.1rem;
  border: 1px solid rgba(139,120,196,0.25);
  background: transparent; color: var(--muted);
  cursor: pointer; border-radius: 2px;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--purple); color: #fff; border-color: var(--purple);
}

/* Project cards grid */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
  gap: 2rem;
}
.project-card {
  position: relative; overflow: hidden;
  border-radius: 3px;
  box-shadow: 0 8px 32px rgba(100,80,160,0.1);
  cursor: pointer;
  background: var(--ink);
  transition: transform 0.3s, box-shadow 0.3s;
}
.project-card:hover { transform: translateY(-6px); box-shadow: 0 20px 56px rgba(100,80,160,0.18); }
.project-card-img {
  width: 100%; aspect-ratio: 4/3;
  object-fit: cover; display: block;
  transition: transform 0.6s ease, opacity 0.4s;
}
.project-card:hover .project-card-img { transform: scale(1.07); opacity: 0.72; }
.project-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,27,94,0.95) 0%, rgba(45,27,94,0.2) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 2rem;
  transition: background 0.35s;
}
.project-card-category {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink-light); margin-bottom: 0.5rem;
}
.project-card-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 400;
  color: #fff; line-height: 1.25;
  margin-bottom: 0.4rem;
}
.project-card-meta {
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.25rem;
}
.project-card-count {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 2px;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(4px);
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
}
.project-card:hover .project-card-count {
  background: var(--pink); border-color: var(--pink); color: #fff;
}
.project-card-count svg { width: 14px; height: 14px; stroke: currentColor; }

/* ─── PROJECT GALLERY MODAL ─── */
.project-modal {
  display: none;
  position: fixed; inset: 0; z-index: 600;
  background: rgba(15, 8, 35, 0.97);
  backdrop-filter: blur(8px);
}
.project-modal.open { display: flex; flex-direction: column; }

.pm-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}
.pm-topbar-info {
  display: flex; flex-direction: column; gap: 0.15rem;
}
.pm-topbar-category {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.64rem; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--pink);
}
.pm-topbar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 400; color: #fff;
}
.pm-topbar-right {
  display: flex; align-items: center; gap: 1.5rem;
}
.pm-counter-text {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; color: rgba(255,255,255,0.45);
  letter-spacing: 0.1em;
}
.pm-close {
  background: none; border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.65); font-size: 1.2rem;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.pm-close:hover { background: var(--purple); border-color: var(--purple); color: #fff; }

.pm-body {
  flex: 1; display: flex; overflow: hidden; min-height: 0;
}

.pm-viewer {
  flex: 1; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem;
  min-width: 0;
}
.pm-img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.25s;
}
.pm-img.loading { opacity: 0.3; }

.pm-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.8);
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.3rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  z-index: 2;
  font-family: 'Lato', sans-serif;
}
.pm-arrow:hover { background: var(--purple); border-color: var(--purple); color: #fff; }
.pm-prev { left: 1rem; }
.pm-next { right: 1rem; }

.pm-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem; font-weight: 300;
  color: rgba(255,255,255,0.5);
  font-style: italic;
  white-space: nowrap;
  pointer-events: none;
}

.pm-sidebar {
  width: 280px; min-width: 280px;
  border-left: 1px solid rgba(255,255,255,0.07);
  display: flex; flex-direction: column;
  background: rgba(255,255,255,0.02);
  overflow: hidden;
}
.pm-sidebar-info {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pm-sidebar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 400;
  color: #fff; line-height: 1.3;
  margin-bottom: 0.6rem;
}
.pm-sidebar-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.84rem; font-weight: 300;
  line-height: 1.8; color: rgba(255,255,255,0.48);
  margin-bottom: 1.25rem;
}
.pm-sidebar-meta {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.pm-meta-tag {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.28rem 0.75rem;
  border: 1px solid rgba(232,160,180,0.35);
  color: var(--pink-light); border-radius: 2px;
}

.pm-thumbs-header {
  padding: 1rem 1.5rem 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.64rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
}
.pm-thumbs {
  flex: 1; overflow-y: auto;
  min-height: 0;
  padding: 0.5rem 1rem 1rem;
  display: grid; grid-template-columns: 1fr 1fr;
  align-content: start;
  gap: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(139,120,196,0.3) transparent;
}
.pm-thumb {
  position: relative;
  padding-bottom: 100%;
  overflow: hidden; border-radius: 2px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, opacity 0.2s;
  opacity: 0.6;
}
.pm-thumb img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.pm-thumb:hover { opacity: 0.85; }
.pm-thumb.active { border-color: var(--pink); opacity: 1; }

/* ─── PROCESS ─── */
#proces { background: var(--lavender-bg); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  margin-top: 4rem;
  padding-top: 3rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.75rem;
  left: calc(10% + 0.6rem);
  right: calc(10% + 0.6rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,120,196,0.35) 12%, rgba(139,120,196,0.35) 88%, transparent);
}
.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 1.25rem 2rem;
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(139,120,196,0.1);
  border-radius: 10px;
  transition: box-shadow 0.3s, background 0.3s;
}
.process-step:hover {
  background: rgba(255,255,255,0.92);
  box-shadow: 0 8px 32px rgba(139,120,196,0.13);
}
.step-num {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 2.6rem; font-weight: 300; line-height: 1;
  color: var(--purple);
  width: 5.5rem; height: 5.5rem;
  display: flex; align-items: center; justify-content: center;
  background: var(--lavender-bg);
  border: 1.5px solid rgba(139,120,196,0.4);
  border-radius: 50%;
  margin-top: -2.75rem;
  margin-bottom: 1.5rem;
  position: relative; z-index: 1;
  transition: background 0.3s, border-color 0.3s;
  letter-spacing: 0;
}
.process-step:hover .step-num {
  background: var(--purple-pale);
  border-color: var(--purple);
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600;
  color: var(--ink); margin-bottom: 0.8rem;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.step-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem; font-weight: 400;
  line-height: 1.75; color: var(--muted);
}

/* ─── TESTIMONIALS ─── */
#opinie {
  background: linear-gradient(135deg, #6E5EA8 0%, #9A78A8 100%);
  padding: 6rem 5vw;
}
#opinie .section-tag { color: var(--pink-light); }
#opinie .section-tag::before { background: var(--pink); }
#opinie .section-title { color: #fff; }
#opinie .section-title em { color: var(--pink-light); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}

/* ─── CAROUSEL (> 3 opinii) ─── */
.testimonials-carousel { position: relative; margin-top: 3rem; }
.tc-viewport { overflow: hidden; margin: 0 3.5rem; }
.tc-track {
  display: flex; gap: 1.5rem;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}
.tc-track .testimonial { flex-shrink: 0; min-width: 0; }
.tc-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.08); color: #fff;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s;
}
.tc-btn:hover:not(:disabled) { background: var(--pink); border-color: var(--pink); }
.tc-btn:disabled { opacity: .2; cursor: default; }
.tc-prev { left: 0; } .tc-next { right: 0; }
.tc-dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.8rem; }
.tc-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.25); border: none; padding: 0; cursor: pointer;
  transition: background .2s, transform .2s;
}
.tc-dot.active { background: var(--pink-light); transform: scale(1.4); }
.testimonial {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.35);
  padding: 2rem; position: relative;
  border-radius: 3px;
  transition: background 0.3s;
}
.testimonial:hover { background: rgba(255,255,255,0.26); }
.testimonial::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.7;
  color: var(--pink); opacity: 0.7;
  position: absolute; top: 1.5rem; left: 1.5rem;
}
.stars { color: #fff; font-size: 0.75rem; margin-bottom: 0.3rem; letter-spacing: 2px; }
.testimonial-text {
  font-family: 'Lato', sans-serif;
  font-size: 0.93rem; font-weight: 300;
  line-height: 1.88; color: rgba(255,255,255,0.95);
  margin-top: 1.5rem; margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; }
.author-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.75rem; font-weight: 700; color: #fff;
}
.author-name {
  font-family: 'Lato', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: #fff;
}
.author-loc {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem; color: rgba(255,255,255,0.8);
}

/* ─── CONTACT ─── */
#kontakt { background: var(--cream); }
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; margin-top: 3rem;
}
.contact-info { display: flex; flex-direction: column; gap: 2rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(126,173,135,0.1); border: 1px solid rgba(126,173,135,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; stroke: var(--sage-dark); }
.contact-item h4 {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 0.3rem;
}
.contact-item a, .contact-item p {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; color: var(--ink);
  line-height: 1.6; text-decoration: none;
}
.contact-item a:hover { color: var(--purple-mid); }
.social-row { display: flex; gap: 0.75rem; margin-top: 0.5rem; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.74rem; font-weight: 600;
  color: var(--ink); text-decoration: none;
  border: 1px solid rgba(139,120,196,0.25);
  padding: 0.42rem 1rem; border-radius: 2px;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.social-btn:hover { background: var(--purple); color: #fff; border-color: var(--purple); }
.social-btn svg { width: 15px; height: 15px; fill: currentColor; }

.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.42rem; }
.form-group label {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 300;
  padding: 0.8rem 1rem;
  background: var(--white); color: var(--ink);
  border: 1px solid rgba(139,120,196,0.2);
  outline: none; resize: vertical;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(139,120,196,0.1);
}
.form-group textarea { min-height: 130px; }
.btn-submit {
  display: inline-flex; align-items: center; gap: 0.75rem;
  padding: 0.95rem 2.5rem;
  background: #E8A0B4; color: #fff;
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  border: 1px solid #C4607A; cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
  align-self: flex-start; border-radius: 2px;
}
.btn-submit:hover { background: #D4788E; border-color: #D4788E; }
.btn-submit svg { width: 16px; height: 16px; stroke: currentColor; }

/* ─── FOOTER ─── */
footer {
  background: linear-gradient(135deg, #6E5EA8 0%, #9A78A8 100%);
  padding: 3rem 5vw;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { display: flex; align-items: center; gap: 0.8rem; }
.footer-logo img {
  height: 42px; width: auto; object-fit: contain;
  opacity: 0.92;
}
.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; font-weight: 400;
  color: #fff; line-height: 1.3;
}
.footer-logo-text span {
  display: block; font-size: 0.55rem;
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-top: 2px;
}
.footer-copy {
  font-family: 'Lato', sans-serif;
  font-size: 0.74rem; color: rgba(255,255,255,0.8);
}
.footer-copy a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-copy a:hover { color: #fff; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: #fff; }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── MOBILE MENU ─── */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: rgba(45,27,94,0.98);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 400;
  color: rgba(255,255,255,0.85); text-decoration: none;
  letter-spacing: 0.02em; transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--pink-light); }
.mobile-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.5); font-size: 1.8rem; line-height: 1;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid .testimonial:last-child { display: none; }
  .tc-viewport { margin: 0 3rem; }
  #o-mnie { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { order: -1; max-width: 420px; }
  .services-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .process-step { padding: 1.5rem 0; border-bottom: 1px solid rgba(139,120,196,0.12); }
  .process-step:last-child { border-bottom: none; }
  .step-num { margin-bottom: 1rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .pm-sidebar { width: 240px; min-width: 240px; }
}
@media (max-width: 768px) {
  .hero-content {
    background: rgba(255,255,255,0.41);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 4px;
    padding: 2rem 1.6rem 2rem;
    margin: 0 1rem;
  }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  section { padding: 5rem 5vw; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-grid .testimonial:last-child { display: block; }
  .tc-viewport { margin: 0 2.5rem; }
  .tc-btn { width: 38px; height: 38px; }
  .form-row { grid-template-columns: 1fr; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .nav-logo-text { display: none; }
  .pm-sidebar { display: none; }
  .pm-arrow { width: 40px; height: 40px; font-size: 1rem; }
  .pm-prev { left: 0.5rem; }
  .pm-next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; }
  .social-row { flex-direction: column; }
  .projects-grid { gap: 1.2rem; }
}
