/* ============================================================
   ŁM | architekt wnętrz — EDITORIAL DARK
   Concept: black canvas, gold accents, massive Syne type,
   film-grain texture, marquee bands, numbered sections
   ============================================================ */

/* ─── DESIGN TOKENS ──────────────────────────────────────── */
:root {
  --void:    #060606;
  --surface: #0d0d0b;
  --lift:    #141412;
  --line:    #1e1c1a;
  --cream:   #ede9e1;
  --ghost:   rgba(237, 233, 225, .78);
  --gold:    #c8a86c;
  --gold-hi: #dbbe82;
  --gold-bg: rgba(200, 168, 108, .10);
  --muted:   #958f89;
  --radius:  0px;

  /* legacy compat for subpages */
  --ink:   #060606;
  --warm:  #c8a86c;
  --clay:  #a88a4a;
  --paper: #060606;
  --white: #ede9e1;
  --dark:  #060606;
  --olive: #a88a4a;
}

/* ─── RESET ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--void);
  color: var(--cream);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

/* Film-grain overlay — gives a tactile, printed quality */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  opacity: .032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23g)'/%3E%3C/svg%3E");
  background-size: 220px 220px;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
p, h1, h2, h3 { margin: 0; }
.wrap { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }

/* ─── TYPOGRAPHY ──────────────────────────────────────────── */
h1 {
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 2.8vw, 46px);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.018em;
  color: var(--cream);
}
h2 {
  font-family: "Syne", sans-serif;
  font-size: clamp(19px, 1.9vw, 30px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--cream);
}
h3 {
  font-family: "Syne", sans-serif;
  font-size: clamp(15px, 1.2vw, 19px);
  font-weight: 700;
  color: var(--cream);
}

.eyebrow, .kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--gold);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
}
.eyebrow::before, .kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* Section index labels — "01 / PORTFOLIO" style */
.sec-label {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 52px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}
.sec-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}
.sec-label em {
  font-style: normal;
  color: var(--gold);
  margin-right: 4px;
}

/* ─── NAVIGATION ──────────────────────────────────────────── */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 400ms ease, box-shadow 400ms ease;
}
.topbar.scrolled {
  background: rgba(6, 6, 6, .94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--line);
}
.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topbar.scrolled .nav { min-height: 58px; }
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
}
.brand-logo {
  width: 34px; height: 34px;
  object-fit: contain;
  filter: invert(1);
  opacity: .85;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ghost);
}
.nav-links a { transition: color 220ms ease; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--cream); }
.nav-cta {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(200, 168, 108, .35);
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  transition: background 240ms ease, border-color 240ms ease;
}
.nav-cta:hover {
  background: var(--gold-bg);
  border-color: var(--gold);
}

/* ─── BUTTONS ─────────────────────────────────────────────── */
.btn, .nav-cta {
  transition: transform 340ms cubic-bezier(0.34,1.56,0.64,1),
              background 240ms ease,
              color 240ms ease,
              border-color 240ms ease !important;
}
.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.btn.primary {
  background: var(--gold);
  color: var(--void);
  border: 1px solid var(--gold);
}
.btn.primary:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
}
.btn.secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(237,233,225,.22);
}
.btn.secondary:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}
.btn:active, .nav-cta:active {
  transform: scale(0.97) !important;
  transition-duration: 100ms !important;
}

/* ─── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-rows: 1fr auto;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: var(--void);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6,6,6,.78) 0%, rgba(6,6,6,.0) 42%),
    linear-gradient(0deg,   rgba(6,6,6,.62) 0%, rgba(6,6,6,.0) 38%),
    url("assets/salon-japandi-hero.webp") center 35% / cover;
  animation: kenburns 20s ease-in-out infinite;
  will-change: transform;
}
@keyframes kenburns {
  0%   { transform: scale(1)    translate(0, 0); }
  50%  { transform: scale(1.06) translate(-1%, .6%); }
  100% { transform: scale(1)    translate(0, 0); }
}
.hero .wrap {
  position: relative;
  z-index: 2;
  padding: 130px 0 0;
}
.hero .eyebrow {
  margin-bottom: 32px;
  background: rgba(6,6,6,.34);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  padding: 6px 14px 6px 0;
  text-shadow: none;
}
.hero h1 {
  max-width: 1020px;
  text-shadow: 0 2px 18px rgba(0,0,0,.45);
}
.hero-lead {
  max-width: 560px;
  margin-top: 24px;
  color: var(--ghost);
  font-size: clamp(15px, 1.3vw, 18px);
  font-weight: 450;
  line-height: 1.65;
  text-shadow: 0 1px 16px rgba(0,0,0,.92), 0 0 32px rgba(0,0,0,.7);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  padding-bottom: 72px;
}

/* Stats strip at very bottom of hero */
.hero-proof {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.16);
  backdrop-filter: blur(8px);
}
.hero-proof div {
  padding: 28px 0 28px 32px;
  border-right: 1px solid var(--line);
}
.hero-proof div:last-child { border-right: 0; }
.hero-proof strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: clamp(26px, 2.4vw, 38px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.hero-proof span {
  display: block;
  margin-top: 6px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ─── MARQUEE BAND ────────────────────────────────────────── */
.marquee-band {
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
  white-space: nowrap;
  user-select: none;
}
.marquee-track {
  display: inline-flex;
  align-items: center;
  animation: marquee 36s linear infinite;
}
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0 20px;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 16px;
  line-height: 0;
  padding: 0 2px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── SECTIONS ────────────────────────────────────────────── */
section { padding: 88px 0; }
section + section { border-top: 1px solid var(--line); }

.section-head {
  display: grid;
  grid-template-columns: minmax(240px, 440px) 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 48px;
}
.section-head p, .lead {
  color: var(--muted);
  font-size: 16px;
  font-weight: 450;
  line-height: 1.7;
}

/* ─── PORTFOLIO GRID ──────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: 1.28fr .72fr;
  gap: 2px;
  background: var(--line);
}
.project {
  position: relative;
  overflow: hidden;
  background: var(--lift);
  min-height: 360px;
}
.project.large { min-height: 700px; }
.project::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(0,0,0,.72) 100%);
}
.project img {
  transition: transform 720ms cubic-bezier(0.32,0.72,0,1);
  will-change: transform;
}
.project:hover img { transform: scale(1.05); }
.project-info {
  position: absolute;
  z-index: 1;
  left: 28px; right: 28px; bottom: 28px;
  color: var(--cream);
  transition: transform 360ms cubic-bezier(0.32,0.72,0,1);
}
.project-info.info-up { transform: translateY(-10px); }
.project-info strong {
  display: block;
  font-family: "Syne", sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.project-info span {
  display: block;
  margin-top: 6px;
  color: rgba(237,233,225,.55);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.project-stack { display: grid; gap: 2px; background: var(--line); }

/* ─── SPLIT / ABOUT ───────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 80px;
  align-items: center;
}
.media {
  position: relative;
  overflow: hidden;
  min-height: 580px;
  background: var(--lift);
}
.media img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  transition: transform 800ms cubic-bezier(0.32,0.72,0,1), filter 600ms ease;
}
.media:hover img { transform: scale(1.04); }
.media img[src*="lukasz-macuga"] {
  filter: grayscale(1);
}
.media:hover img[src*="lukasz-macuga"] { filter: grayscale(0); }
/* Na urządzeniach dotykowych (brak hover) — zawsze kolorowe */
@media (hover: none) {
  .media img[src*="lukasz-macuga"] { filter: grayscale(0); }
}
.portrait-img { object-position: center 28%; }
.copy {
  display: grid;
  gap: 22px;
  color: var(--ghost);
  font-size: 17px;
  font-weight: 450;
  line-height: 1.72;
}
.copy strong { color: var(--cream); }

/* ─── OFFER CARDS ─────────────────────────────────────────── */
.band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.card {
  background: var(--void);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: background 300ms ease;
  position: relative;
}
.card:hover { background: var(--lift); }
.card.featured {
  background: var(--surface);
}
.card.featured::after {
  content: 'POLECANY';
  position: absolute;
  top: 26px; right: 26px;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .22em;
  color: var(--gold);
}
.card h3 { font-size: clamp(20px, 2vw, 26px); }
.card p, .card li { color: var(--muted); font-size: 15px; line-height: 1.65; }
.price {
  display: block;
  margin: 6px 0;
  font-family: "Syne", sans-serif;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  margin-top: auto;
}
.card li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ghost);
  font-weight: 500;
}
.card li::before { content: '—'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
/* keep compat */
.card.featured p, .card.featured li { color: var(--ghost); }

/* ─── COMPARE TABLE ───────────────────────────────────────── */
.compare {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--line);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 13px;
  color: var(--cream);
  vertical-align: middle;
}
.compare th {
  background: var(--surface);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.compare thead th:first-child,
.compare td:first-child { text-align: left; color: var(--ghost); font-weight: 600; }
.compare tr:last-child td { border-bottom: 0; }
.c-yes { color: var(--gold); font-size: 17px; font-weight: 900; }
.c-no  { color: var(--line); font-size: 17px; }
.col-featured { background: var(--surface); }
.col-pkg { font-size: 12px; letter-spacing: .04em; }
.col-pkg span { display: block; margin-top: 4px; color: var(--muted); font-size: 11px; }
.compare-group td {
  background: var(--lift);
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 10px 20px;
}
.feat { color: var(--gold); }

/* ─── PROCESS ─────────────────────────────────────────────── */
.process {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 100px;
  align-items: start;
}
.process-aside {
  position: sticky;
  top: 100px;
}
.steps {
  display: grid;
  border-top: 1px solid var(--line);
}
.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 28px;
  padding: 36px 0;
  border-bottom: 1px solid var(--line);
  transition: background 250ms ease;
}
.num {
  font-family: "Syne", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  color: var(--gold);
  padding-top: 5px;
  /* override old circle styles */
  width: auto; height: auto;
  background: none;
  border-radius: 0;
  display: block;
  place-items: unset;
}
.step h3 { font-size: clamp(17px, 1.6vw, 20px); margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 15px; line-height: 1.65; }
.step:hover { padding-left: 8px; transition: padding-left 250ms ease; }

/* ─── REVIEWS ─────────────────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 36px;
  background: var(--surface);
  transition: background 280ms ease;
}
.review-card:hover { background: var(--lift); }
.review-stars { color: var(--gold); font-size: 13px; letter-spacing: 3px; }
.review-text {
  flex: 1;
  color: var(--ghost);
  font-size: 14px;
  font-weight: 450;
  line-height: 1.72;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-weight: 800; font-size: 14px;
  color: var(--void);
  background: var(--gold);
  flex-shrink: 0;
}
.review-author strong { display: block; font-size: 13px; color: var(--cream); font-weight: 700; }
.review-author span   { display: block; font-size: 11px; color: var(--muted); font-weight: 600; margin-top: 2px; }

/* ─── CTA / CONTACT ───────────────────────────────────────── */
.cta { background: var(--surface); }
/* Smaller headings inside contact/cta grid — they sit next to a form */
.contact-grid h1, .contact-grid h2,
.cta-grid h1, .cta-grid h2 {
  font-size: clamp(17px, 1.6vw, 26px);
}
.cta-grid, .contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.cta p, .contact p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}
.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 36px;
}
.contact-list span,
.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ghost);
  font-size: 15px;
  font-weight: 600;
}
form {
  display: grid;
  gap: 18px;
  padding: 36px;
  background: var(--lift);
  border: 1px solid var(--line);
  color: var(--cream);
}
label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
input, select, textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--line);
  padding: 13px 16px;
  color: var(--cream);
  background: var(--void);
  font: inherit;
  font-size: 15px;
  border-radius: 0;
  transition: border-color 240ms ease;
  outline: none;
}
input:focus, select:focus, textarea:focus {
  border-color: rgba(200,168,108,.5);
}
input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 0.65;
}
input:focus:invalid, textarea:focus:invalid {
  border-color: rgba(200, 70, 70, .55);
}
textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
button[type="submit"], button {
  min-height: 54px;
  border: 0;
  background: var(--gold);
  color: var(--void);
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 250ms ease,
              transform 340ms cubic-bezier(0.34,1.56,0.64,1);
}
button[type="submit"]:hover, button:hover {
  background: var(--gold-hi);
  transform: translateY(-2px);
}

/* ─── FOOTER ──────────────────────────────────────────────── */
footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
footer span {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted);
}
.footer-cities {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}
.footer-cities a {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--muted);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.footer-cities a:hover { color: var(--cream); }

/* ─── PAGE HERO (sub-pages) ───────────────────────────────── */
.page-hero {
  padding: 160px 0 100px;
  background: var(--void);
  border-bottom: 1px solid var(--line);
}
.page-hero .grid {
  display: grid;
  grid-template-columns: minmax(300px, 600px) 1fr;
  gap: 80px;
  align-items: end;
}
.page-hero h1 {
  margin-top: 20px;
  color: var(--cream);
  font-size: clamp(22px, 2.2vw, 36px);
}
.page-hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

/* ─── GALLERY GRID ────────────────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.gallery-card {
  background: var(--surface);
  overflow: hidden;
  border: 0;
  transition: opacity 300ms ease;
}
.gallery-card .thumb {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--lift);
}
.gallery-card .thumb img {
  transition: transform 640ms cubic-bezier(0.32,0.72,0,1);
}
.gallery-card:hover .thumb img { transform: scale(1.07); }
.gallery-card .body {
  padding: 20px 22px;
  border-top: 1px solid var(--line);
}
.gallery-card h3 { font-size: 16px; }
.gallery-card p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .04em;
}

/* ─── HAMBURGER / MOBILE MENU ─────────────────────────────── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px; height: 1px;
  background: var(--cream);
  transition: transform .25s ease, opacity .25s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(6,6,6,.97);
  backdrop-filter: blur(24px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: "Syne", sans-serif;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: .04em;
  color: var(--cream);
  transition: color 220ms ease;
}
.mobile-menu a:hover,
.mobile-menu a[aria-current="page"] { color: var(--gold); }
.mobile-menu .nav-cta { margin-top: 8px; min-width: 200px; justify-content: center; }

/* ─── FLOATING BUTTONS ────────────────────────────────────── */
.float-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 50;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  box-shadow: 0 4px 24px rgba(37,211,102,.28);
  display: grid; place-items: center;
  transition: transform 400ms cubic-bezier(0.34,1.56,0.64,1),
              box-shadow 400ms ease;
}
.float-wa:hover {
  transform: translateY(-4px) scale(1.09);
  box-shadow: 0 10px 40px rgba(37,211,102,.44);
}
.float-wa svg { width: 26px; height: 26px; }

.float-social {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  background: rgba(13,13,11,.92);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 40px;
}
.float-social a {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  color: var(--muted);
  border-radius: 50%;
  transition: color 260ms ease,
              transform 340ms cubic-bezier(0.34,1.56,0.64,1);
}
.float-social a:hover { color: var(--gold); transform: translateY(-3px); }
.float-social a.contact-link { color: rgba(237,233,225,.55); }
.float-social a.contact-link:hover { color: var(--cream); }
.float-social svg { width: 15px; height: 15px; }
.float-sep {
  width: 1px;
  height: 18px;
  background: #3e3c3a;
  margin: 0 5px;
  flex-shrink: 0;
}

/* ─── PARTNERS MARQUEE ────────────────────────────────────── */
.partners-section {
  padding-top: 88px;
  padding-bottom: 0;
  overflow: hidden;
}
.partners-section .wrap {
  padding-bottom: 40px;
}
.partners-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
/* fade edges */
.partners-marquee::before,
.partners-marquee::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.partners-marquee::before {
  left: 0;
  background: linear-gradient(to right, var(--void), transparent);
}
.partners-marquee::after {
  right: 0;
  background: linear-gradient(to left, var(--void), transparent);
}
.partners-track {
  display: inline-flex;
  align-items: center;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}
.partners-marquee:hover .partners-track {
  animation-play-state: paused;
}
@keyframes partnersScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px 52px;
  border-right: 1px solid var(--line);
  flex-shrink: 0;
  text-decoration: none;
  cursor: pointer;
}
.partner-logo img {
  width: auto;
  max-width: 200px;
  height: 72px;
  object-fit: contain;
  filter: invert(1) grayscale(1) brightness(8);
  mix-blend-mode: screen;
  opacity: .42;
  transition: opacity 320ms ease;
}
.partners-marquee:hover .partner-logo img { opacity: .78; }

@media (max-width: 560px) {
  .partner-logo { padding: 28px 36px; }
  .partner-logo img { max-width: 140px; height: 56px; }
  .partners-marquee::before,
  .partners-marquee::after { width: 60px; }
}

/* ─── SCROLL REVEAL ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 820ms cubic-bezier(0.32,0.72,0,1),
              transform 820ms cubic-bezier(0.32,0.72,0,1);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* ─── MEGA ANIMATION CSS ──────────────────────────────────── */

/* Scroll progress */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-hi) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
  will-change: transform;
}

/* Custom cursor */
@media (hover: hover) {
  body { cursor: none; }
  a, button, .project, .gallery-card, .review-card, .card, .step { cursor: none; }
}
.cursor-dot, .cursor-ring {
  pointer-events: none;
  position: fixed;
  top: 0; left: 0;
  border-radius: 50%;
  opacity: 0;
  z-index: 10000;
  will-change: transform;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  transition: opacity 250ms ease;
}
.cursor-ring {
  width: 40px; height: 40px;
  border: 1px solid rgba(200,168,108,.5);
  transition: opacity 300ms ease,
              width  260ms cubic-bezier(0.34,1.56,0.64,1),
              height 260ms cubic-bezier(0.34,1.56,0.64,1),
              border-color 260ms ease;
}
.cursor-ring.hovered { width: 58px; height: 58px; border-color: var(--gold); }

/* Word reveal */
.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms cubic-bezier(0.32,0.72,0,1),
              transform 720ms cubic-bezier(0.32,0.72,0,1);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.word-reveal.in {
  opacity: 1;
  transform: translateY(0);
  will-change: auto;
}

/* Kicker slide */
.kicker-anim {
  opacity: 0;
  transform: translateX(-18px);
  transition: opacity 580ms cubic-bezier(0.32,0.72,0,1),
              transform 580ms cubic-bezier(0.32,0.72,0,1);
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.kicker-anim.kicker-in {
  opacity: 1;
  transform: translateX(0);
  will-change: auto;
}

/* Heading clip reveal */
.heading-anim {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 920ms cubic-bezier(0.77,0,0.175,1);
  will-change: clip-path;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.heading-anim.heading-in {
  clip-path: inset(0 0% 0 0);
  will-change: auto;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  section { padding: 80px 0; }
  .section-head { grid-template-columns: 1fr; gap: 32px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .project.large { min-height: 480px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .cards { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: 1fr; gap: 56px; }
  .process-aside { position: static; }
  .cta-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .page-hero .grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: repeat(3, 1fr); }
  .hero-proof div { padding: 22px 0 22px 20px; }
}

@media (max-width: 560px) {
  .wrap { width: calc(100% - 32px); }
  section { padding: 60px 0; }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-proof div { border-right: 0; border-bottom: 1px solid var(--line); }
  .hero-proof div:last-child { border-bottom: 0; }
  .cards, .reviews-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  form { padding: 28px 22px; }
  .float-wa { bottom: 18px; right: 14px; width: 48px; height: 48px; }
  .float-social { bottom: 18px; }
  .sec-label { margin-bottom: 48px; }
  /* Smaller reveal offset on mobile — less jarring on fast scroll */
  .reveal { transform: translateY(22px); }
  .word-reveal { transform: translateY(20px); }
}

/* ─── HERO MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  /* Na mobile tekst schodzi niżej — środek obrazu jest jasny (kanapa).
     Zamiast dwóch wąskich gradientów dajemy jeden ciemny całego hero. */
  .hero::before {
    background:
      linear-gradient(180deg,
        rgba(6,6,6,.90) 0%,
        rgba(6,6,6,.60) 40%,
        rgba(6,6,6,.68) 75%,
        rgba(6,6,6,.82) 100%),
      url("assets/salon-japandi-hero.webp") center 35% / cover;
  }

  /* Mocniejszy cień na nagłówku */
  .hero h1 {
    text-shadow: 0 2px 20px rgba(0,0,0,.75), 0 0 40px rgba(0,0,0,.55);
  }

  /* Przycisk "Zobacz realizacje" — na jasnym tle prawie niewidoczny.
     Dodajemy ciemne tło zamiast przezroczystego. */
  .hero-actions .btn.secondary {
    background: rgba(6,6,6,.52);
    border-color: rgba(237,233,225,.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
  }

  /* Przyciski na wąskim ekranie — każdy na własną linię */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-actions .btn {
    width: 100%;
    max-width: 340px;
    text-align: center;
    justify-content: center;
  }
}

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-top: 1px solid var(--line);
}
.faq-item:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--cream);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 400;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform .25s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
}
.faq-item p {
  padding: 0 0 22px;
  color: var(--ghost);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 680px;
}

/* ─── ODZNAKI / TRUST BAR ────────────────────────────────── */
.reviews-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.reviews-trust-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.reviews-trust-text strong {
  font-size: 15px;
  color: var(--cream);
}
.reviews-trust-text span {
  font-size: 13px;
  color: var(--muted);
}
.reviews-trust a img {
  display: block;
  opacity: .85;
  transition: opacity .2s;
}
.reviews-trust a:hover img { opacity: 1; }

/* text-body helper */
.text-body {
  max-width: 760px;
  margin: 40px auto 0;
}
.text-body p {
  color: var(--ghost);
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 18px;
}
.text-body p:last-child { margin-bottom: 0; }
