/* ====================================================================
   KobidoNehring — paleta: czerń / biel / czerwień (#e92028 z logo)
   Motyw przewodni: czarne, splatające się linie „mięśni / powięzi"
   ==================================================================== */

:root {
  --black: #0d0d0d;
  --ink: #161616;
  --paper: #faf8f5;
  --paper-2: #f1ede7;
  --white: #ffffff;
  --red: #e92028;
  --red-dark: #c41a21;
  --gray: #6b6660;
  --gray-light: #d9d4cc;
  --line: rgba(13, 13, 13, 0.10);

  --serif: "Fraunces", Georgia, serif;
  --sans: "Space Grotesk", system-ui, -apple-system, sans-serif;

  --maxw: 1160px;
  --radius: 14px;
  --shadow: 0 18px 50px -20px rgba(13, 13, 13, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

/* ====================================================================
   SYGNATUROWA „NIĆ" — pasma z logo rysowane scrollem
   mix-blend-mode: difference → automatycznie jasna na czerni, ciemna na beżu
   ==================================================================== */
.thread {
  position: absolute; top: 0; bottom: 0; left: 0; width: 100%;
  z-index: 1; pointer-events: none;
  mix-blend-mode: difference; opacity: 0.3;
}
.thread svg { display: block; width: 100%; height: 100%; }
.thread-strand { stroke: #fff; }
/* CAŁA treść jest NAD nicią (tekst, zdjęcia, karty, poziome przekładki); tła
   sekcji są POD nią. Dzięki temu pasma są widoczne w pustej przestrzeni na
   każdym tle (mix-blend-mode auto: jasne na czerni, ciemne na beżu), znikają
   za treścią i pojawiają się ponownie poniżej. */
.container, .hero-inner, .copyright { position: relative; z-index: 2; }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.1; margin: 0; }
h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.container.narrow { max-width: 760px; }
.center { text-align: center; }

.section { position: relative; padding: clamp(4rem, 9vw, 7.5rem) 0; }
/* Czysta „przerwa" między sekcjami — cienka linia na styku (gdy hero jest beżowe,
   sąsiednie jasne sekcje potrzebują wyraźnego rozdzielenia). Ciemne sekcje
   (korzyści, stopka) i tak rozdziela kontrast tła. */
.section + .section,
.hero + .section { border-top: 1px solid var(--line); }

/* Jeden, spójny styl etykiet (eyebrow / nagłówki grup / etykiety) */
.eyebrow, .group-title, .contact-label, .site-footer h4 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  line-height: 1.3;
}
.eyebrow { color: var(--red); margin: 0 0 1rem; }

/* <strong> ma używać wczytanej grubości 600, nie syntetycznej 700 */
strong, b { font-weight: 600; }

.section-head { max-width: 620px; margin-bottom: 3rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-sub { color: var(--gray); margin-top: 0.8rem; }
.reviews-more { margin-top: 2.5rem; }

/* ---------- przyciski ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.7em;
  font-family: var(--sans); font-weight: 600; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  background: var(--ink); color: var(--paper);
  padding: 1.05em 1.7em; border-radius: 0;
  border: 1px solid var(--ink);
  cursor: pointer; white-space: nowrap; position: relative;
  transition: background .3s, color .3s, border-color .3s;
}
.btn::after { content: "→"; font-size: 1.15em; transition: transform .3s var(--ease); }
.btn:hover { background: var(--red); border-color: var(--red); color: #fff; }
.btn:hover::after { transform: translateX(5px); }
.btn-sm { padding: 0.7em 1.15em; font-size: 0.66rem; }
.btn-lg { padding: 1.15em 2em; font-size: 0.8rem; }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }

/* Drugorzędne CTA jako link tekstowy z animowanym podkreśleniem + strzałka */
.link-cta {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--sans); font-weight: 600; font-size: 0.78rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink);
  padding-bottom: 3px; background-image: linear-gradient(var(--red), var(--red));
  background-size: 0% 1.5px; background-repeat: no-repeat; background-position: left bottom;
  transition: background-size .35s var(--ease), color .25s;
}
.link-cta::after { content: "→"; transition: transform .3s var(--ease); }
.link-cta:hover { color: var(--red); background-size: 100% 1.5px; }
.link-cta:hover::after { transform: translateX(4px); }

/* Powtarzalny motyw czerwonej kropki z logo */
.dot-mark { color: var(--red); }

/* ====================================================================
   NAGŁÓWEK
   ==================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.6rem clamp(1.2rem, 4vw, 2.5rem);
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(250, 248, 245, 0.12);
}
.brand-logo { height: 62px; width: auto; background: #fff; padding: 7px 10px; border-radius: 0; }

.nav-menu {
  display: flex; align-items: center; gap: 1.8rem;
  list-style: none; margin: 0; padding: 0;
}
.nav-menu a { font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em; color: var(--paper); transition: color .2s; }
.nav-menu a:not(.btn):hover { color: var(--red); }
/* przycisk CTA w czarnym nagłówku — kontur na jasno, hover czerwony */
.site-header .btn { background: transparent; color: var(--paper); border-color: rgba(250, 248, 245, 0.45); }
.site-header .btn:hover { background: var(--red); border-color: var(--red); color: #fff; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--paper); transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ====================================================================
   HERO
   ==================================================================== */
.hero {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  padding: clamp(5rem, 13vw, 9rem) 0 clamp(4rem, 9vw, 7rem);
  overflow: hidden;
}
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }
.hero-lines { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.line-art--hero {
  position: absolute; right: 6%; top: 50%; transform: translateY(-50%);
  width: min(32vw, 400px); opacity: 0.4;
}

.hero .eyebrow { color: var(--red); }
.hero-title {
  font-size: clamp(2.8rem, 8vw, 5.4rem);
  letter-spacing: -0.02em; margin-bottom: 1.4rem; color: var(--ink);
}
.accent-word { font-style: italic; color: var(--red); }
.hero-lead { max-width: 540px; font-size: 1.1rem; color: var(--gray); margin: 0 0 2.2rem; }
.hero-lead strong { color: var(--ink); font-weight: 600; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1.6rem; align-items: center;
  list-style: none; padding: 0; margin: 2.6rem 0 0;
  font-size: 0.85rem; color: var(--gray);
}
.hero-meta strong { color: var(--red); font-size: 1.05rem; }
.hero-meta .dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--red); margin-right: 0.5rem; }

/* ====================================================================
   LINIE DEKORACYJNE
   ==================================================================== */
.line-art { display: block; pointer-events: none; }
.line-art--top {
  position: absolute; top: -1px; left: 0; width: 100%; height: auto;
  opacity: 0.07; z-index: 2;
}
.line-art--top.flip { transform: scaleY(-1); top: auto; bottom: -1px; }
.section > .container { position: relative; z-index: 2; }

/* ====================================================================
   UKŁAD SPLIT (O mnie / Kontakt)
   ==================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split-text h2 { margin-bottom: 1.2rem; }
.split-text p { color: var(--gray); margin: 0 0 1.1rem; }
.split-text p em { color: var(--ink); font-style: italic; }
.split-media img {
  width: 100%; height: 100%; max-height: 560px; object-fit: cover;
  border-radius: 0; box-shadow: var(--shadow);
  filter: grayscale(1) contrast(1.04);
  transition: filter .6s var(--ease);
}
.split-media img:hover { filter: grayscale(0) contrast(1); }

.checklist { list-style: none; padding: 0; margin: 1.6rem 0; }
.checklist li { position: relative; padding-left: 1.8rem; margin-bottom: 0.7rem; color: var(--ink); }
.checklist li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--red); box-shadow: 0 0 0 4px rgba(233,32,40,.15);
}

/* Rytm tła sekcji — naprzemiennie jaśniejszy/ciemniejszy beż, żeby sekcje
   się wyróżniały (nie zlewały w jedną płaszczyznę):
   hero(paper) · o-mnie(paper-2) · usługi(paper) · korzyści(paper-2) ·
   galeria(paper) · opinie(paper-2) · kontakt(paper) */
.o-mnie { background: var(--paper-2); }

/* ====================================================================
   USŁUGI
   ==================================================================== */
.uslugi { background: var(--paper); }
.group-title {
  color: var(--ink);
  margin: 2.5rem 0 1.4rem; padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--line);
}
.group-title:first-of-type { margin-top: 0; }

/* „Menu zabiegów" — układ edytorski (zamiast jednorodnych kart) */
.menu { list-style: none; margin: 0; padding: 0; }
.menu-item {
  display: block; padding: 1.5rem 0; border-bottom: 1px solid var(--line);
  color: var(--ink); transition: padding-left .35s var(--ease), border-color .3s;
}
.menu li:first-child .menu-item { border-top: 1px solid var(--line); }
.menu-item:hover { padding-left: 0.7rem; border-color: var(--ink); }
.menu-head { display: flex; align-items: baseline; gap: 0.7rem; }
.menu-dot {
  flex: 0 0 7px; width: 7px; height: 7px; border-radius: 50%;
  background: var(--red); align-self: center; transition: transform .35s var(--ease);
}
.menu-item:hover .menu-dot { transform: scale(1.5); }
.menu-name {
  font-family: var(--serif); font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 500; line-height: 1.15; transition: color .25s;
}
.menu-item:hover .menu-name { color: var(--red); }
.menu-leader { flex: 1 1 auto; min-width: 1.2rem; border-bottom: 1px dotted var(--gray-light); transform: translateY(-0.3em); }
.menu-price { font-family: var(--sans); font-weight: 600; font-size: 1.05rem; white-space: nowrap; }
.menu-meta {
  display: flex; align-items: baseline; gap: 1rem;
  margin-top: 0.45rem; padding-left: calc(7px + 0.7rem);
}
.menu-desc { color: var(--gray); font-size: 0.9rem; flex: 1; }
.menu-dur { color: var(--gray); font-size: 0.78rem; white-space: nowrap; }
.menu-go {
  font-family: var(--sans); font-weight: 600; font-size: 0.7rem;
  text-transform: uppercase; letter-spacing: 0.12em; color: var(--red);
  white-space: nowrap; opacity: 0; transform: translateX(-4px);
  transition: opacity .3s, transform .3s var(--ease);
}
.menu-item:hover .menu-go { opacity: 1; transform: none; }

.cennik-note { margin-top: 2.5rem; font-size: 0.82rem; color: var(--gray); }

/* ====================================================================
   KORZYŚCI
   ==================================================================== */
.korzysci { background: var(--paper-2); color: var(--ink); }
.korzysci .eyebrow { color: var(--red); }
.korzysci h2 { color: var(--ink); }
.benefits { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2.6rem 3rem; }
.benefit { border-top: 1px solid var(--line); padding-top: 1.4rem; }
.benefit-num {
  font-family: var(--serif); font-size: clamp(3.2rem, 6vw, 5rem); font-weight: 500;
  color: var(--red); line-height: 0.9; display: block; margin-bottom: 1.1rem;
  font-variant-numeric: lining-nums;
}
.benefit h3 { font-size: 1.45rem; color: var(--ink); margin-bottom: 0.6rem; }
.benefit p { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ====================================================================
   GALERIA
   ==================================================================== */
.gallery-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px; grid-auto-flow: dense; gap: 0.7rem;
}
.gallery-grid figure { margin: 0; overflow: hidden; grid-column: span 2; grid-row: span 1; cursor: zoom-in; position: relative; }
.gallery-grid figure:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
.gallery-grid img {
  width: 100%; height: 100%; border-radius: 0; object-fit: cover; display: block;
  transition: transform .6s var(--ease), filter .5s;
  filter: grayscale(0.15);
}
.gallery-grid figure:hover img { transform: scale(1.04); filter: grayscale(0); }
/* asymetryczny spread */
.gallery-grid figure:nth-child(1) { grid-column: span 3; grid-row: span 2; }
.gallery-grid figure:nth-child(4) { grid-row: span 2; }
.gallery-grid figure:nth-child(6) { grid-column: span 3; }
.gallery-grid figure:nth-child(7) { grid-column: span 3; }
.gallery-grid figure:nth-child(9) { grid-column: span 2; grid-row: span 2; }

/* ====================================================================
   LIGHTBOX GALERII (powiększenie zdjęcia; nad przypinką Booksy z-index 200)
   ==================================================================== */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: none; align-items: center; justify-content: center;
  background: rgba(13, 13, 13, 0.92);
  padding: clamp(1rem, 4vw, 3rem);
}
.lightbox.is-open { display: flex; }
.lb-stage { margin: 0; max-width: 90vw; max-height: 88vh; display: flex; }
.lb-img {
  max-width: 90vw; max-height: 88vh; width: auto; height: auto;
  object-fit: contain; display: block; box-shadow: 0 30px 80px -20px rgba(0,0,0,.8);
}
.lb-close, .lb-nav {
  position: absolute; background: transparent; border: 1px solid rgba(250,248,245,.3);
  color: var(--paper); cursor: pointer; line-height: 1;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s, border-color .2s, color .2s;
}
.lb-close:hover, .lb-nav:hover { background: var(--red); border-color: var(--red); color: #fff; }
.lb-close { top: 1.1rem; right: 1.1rem; width: 44px; height: 44px; font-size: 1.1rem; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; font-size: 1.8rem; }
.lb-prev { left: 1.1rem; }
.lb-next { right: 1.1rem; }
.lb-counter {
  position: absolute; bottom: 1.2rem; left: 50%; transform: translateX(-50%);
  color: var(--paper); font-size: 0.85rem; letter-spacing: 0.08em;
  font-family: var(--sans); opacity: 0.8;
}
@media (max-width: 560px) {
  .lb-nav { width: 42px; height: 42px; font-size: 1.5rem; }
  .lb-prev { left: 0.5rem; } .lb-next { right: 0.5rem; }
  .lb-close { top: 0.6rem; right: 0.6rem; }
}

/* ====================================================================
   OPINIE
   ==================================================================== */
.opinie { background: var(--paper-2); position: relative; }
.opinie .section-head { text-align: center; max-width: 620px; }
.rating { margin: 0.5rem 0 0; }
.stars { color: var(--red); font-size: 1.5rem; letter-spacing: 0.15em; }
.rating-num { margin: 0.4rem 0 0; color: var(--gray); font-size: 0.92rem; }
.rating-num strong { color: var(--ink); font-size: 1.1rem; }

/* Klikalne opinie (z Booksy) */
.reviews {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: 0;
  padding: 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.7rem;
  position: relative; transition: border-color .3s;
}
.review::before {
  content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 2px;
  background: var(--red); transform: scaleX(0); transform-origin: left;
  transition: transform .4s var(--ease);
}
.review:hover { border-color: var(--ink); }
.review:hover::before { transform: scaleX(1); }
.review-head { display: flex; align-items: center; gap: 0.8rem; }
.review-avatar {
  width: 42px; height: 42px; flex: 0 0 42px; border-radius: 50%;
  background: var(--ink); color: #fff; font-weight: 600; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
}
.review-meta { display: flex; flex-direction: column; line-height: 1.25; margin-right: auto; }
.review-meta strong { color: var(--ink); font-size: 0.98rem; }
.review-date { font-size: 0.75rem; color: var(--gray); }
.review-stars { color: var(--red); font-size: 0.9rem; letter-spacing: 0.05em; }
.review-text {
  font-family: var(--serif); font-style: italic; font-size: 1rem; line-height: 1.45;
  color: var(--ink); margin: 0; flex: 1;
}

/* ====================================================================
   KONTAKT
   ==================================================================== */
.contact-list { list-style: none; padding: 0; margin: 1.5rem 0; }
.contact-list li { padding: 0.9rem 0; border-bottom: 1px solid var(--line); }
.contact-label { display: block; color: var(--red); margin-bottom: 0.25rem; }
.contact-list a { font-size: 1.05rem; color: var(--ink); transition: color .2s; }
.contact-list a:hover { color: var(--red); }
.amenities { display: flex; flex-wrap: wrap; gap: 0.6rem; list-style: none; padding: 0; margin: 1.6rem 0; }
.amenities li {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 500;
  padding: 0.55em 0.85em; border-radius: 0;
  background: transparent; border: 1px solid var(--line); color: var(--gray);
}
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; border-radius: 0; box-shadow: var(--shadow); }

/* ====================================================================
   STOPKA
   ==================================================================== */
.site-footer { background: var(--black); color: rgba(250,248,245,.72); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer-logo { height: 100px; margin-bottom: 1.2rem; background: #fff; padding: 14px 18px; border-radius: 0; }
.footer-note { font-size: 0.85rem; margin: 0; }
.social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; color: var(--paper);
  border: 1px solid rgba(250,248,245,.25);
  transition: color .25s, border-color .25s, background .25s;
}
.social a:hover { color: #fff; background: var(--red); border-color: var(--red); }
.site-footer h4 { color: var(--white); margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.6rem; font-size: 0.88rem; }
.site-footer a:hover { color: var(--red); }
.copyright { text-align: center; font-size: 0.76rem; color: rgba(250,248,245,.4); margin: 3rem 0 0; padding-top: 1.5rem; border-top: 1px solid rgba(250,248,245,.1); }

/* ====================================================================
   PŁYWAJĄCA PRZYPINKA BOOKSY
   ==================================================================== */
.booksy-pin {
  position: fixed; right: 1.4rem; bottom: 1.4rem; z-index: 200;
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: #0a40ff; color: #fff;
  padding: 0.7rem 1.25rem 0.7rem 0.85rem; border-radius: 10px;
  box-shadow: 0 14px 34px -8px rgba(10,64,255,.6);
  font-family: var(--sans); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.02em;
  transition: transform .35s var(--ease), box-shadow .35s;
}
.booksy-pin img { width: 26px; height: 26px; }
.booksy-pin::after {
  content: ""; position: absolute; inset: 0; border-radius: 10px;
  box-shadow: 0 0 0 0 rgba(10,64,255,.5);
  animation: pin-pulse 2.6s infinite;
}
.booksy-pin:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 18px 40px -8px rgba(10,64,255,.75); }
@keyframes pin-pulse {
  0% { box-shadow: 0 0 0 0 rgba(10,64,255,.45); }
  70% { box-shadow: 0 0 0 16px rgba(10,64,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(10,64,255,0); }
}

/* ====================================================================
   ANIMACJE WEJŚCIA
   ==================================================================== */
/* tylko opacity (bez translateY) → pozycje elementów są stabilne dla maski nici */
[data-reveal] { opacity: 0; transition: opacity .8s var(--ease); }
[data-reveal].is-visible { opacity: 1; }

/* ====================================================================
   RESPONSYWNOŚĆ
   ==================================================================== */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    position: fixed; inset: 64px 0 auto 0;
    flex-direction: column; gap: 0; align-items: stretch;
    background: rgba(13, 13, 13, 0.97); border-bottom: 1px solid rgba(250,248,245,.12);
    padding: 1rem clamp(1.2rem, 4vw, 2.5rem) 1.5rem;
    transform: translateY(-120%); transition: transform .4s var(--ease);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); }
  .nav-menu li { border-bottom: 1px solid rgba(250,248,245,.12); }
  .nav-menu li:last-child { border: 0; margin-top: 0.8rem; }
  .nav-menu a:not(.btn) { display: block; padding: 0.9rem 0; font-size: 1rem; }
  .nav-menu .btn { width: 100%; }

  .split { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .kontakt .split-media { order: 0; }
  /* galeria: prostszy, wciąż nierówny układ */
  .gallery-grid { grid-template-columns: repeat(4, 1fr); grid-auto-rows: 120px; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(1),
  .gallery-grid figure:nth-child(4),
  .gallery-grid figure:nth-child(6),
  .gallery-grid figure:nth-child(7),
  .gallery-grid figure:nth-child(9) { grid-column: span 2; grid-row: span 1; }
  .gallery-grid figure:nth-child(1) { grid-column: span 4; grid-row: span 2; }
  /* na dotyku pokaż CTA „Umów →" bez hovera */
  .menu-go { opacity: 1; transform: none; }
}

@media (max-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 140px; }
  .gallery-grid figure,
  .gallery-grid figure:nth-child(n) { grid-column: span 1; grid-row: span 1; }
  .gallery-grid figure:nth-child(1) { grid-column: span 2; grid-row: span 2; }
  .menu-head { flex-wrap: wrap; }
  .menu-leader { display: none; }
  .menu-price { margin-left: auto; }
  .hero-meta { gap: 0.4rem 1.2rem; }
  .booksy-pin-label { display: none; }
  .booksy-pin { padding: 0.8rem; }
  .booksy-pin img { width: 30px; height: 30px; }

  /* opinie: poziomy, przewijany pasek (jedna karta wysokości, swipe) */
  .reviews {
    display: flex; grid-template-columns: none;
    overflow-x: auto; scroll-snap-type: x mandatory;
    gap: 0.9rem; margin: 0 calc(-1 * clamp(1.2rem, 4vw, 2.5rem));
    padding: 0.25rem clamp(1.2rem, 4vw, 2.5rem) 0.5rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .reviews::-webkit-scrollbar { display: none; }
  .review { flex: 0 0 86%; scroll-snap-align: center; }
}

/* nić ukryta na telefonie (świadomie — patrz scripts/main.js);
   emblemat hero też (na wąskim ekranie nachodziłby na tekst) → czysty hero */
@media (max-width: 720px) {
  .thread { display: none; }
  .line-art--hero { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
