/* =====================================================================
   VOLUTE ATELIER — style.css
   Jasny, ciepły, miękki, ozdobny butik premium.
   Sygnatura: fale (SVG) + łuki (arch) + bloki koloru + zaokrąglenia.
   Edycja: tokeny w :root, teksty w index.html.
   ===================================================================== */

/* ===== TOKENY ===== */
:root {
  --cream:       #FBF4EA;   /* główne tło */
  --cream-deep:  #F4E8D8;   /* drugie tło */
  --rose:        #D99BA5;   /* akcent różany — fale, plamy hero/kontakt */
  --rose-dusty:  #CBA3A8;   /* przyprószony róż — duży blok + owale (mniej cukierkowy) */
  --rose-deep:   #B56B78;   /* mocniejszy róż — przyciski */
  --plum:        #6E3A4E;   /* kontrast, ciemne bloki, nagłówki */
  --ink:         #3D2A2E;   /* tekst główny */
  --gold:        #C9A86A;   /* cienkie detale ozdobne */

  /* pochodne */
  --ink-soft:    #6f5a5e;
  --cream-line:  rgba(110, 58, 78, 0.14);
  --rose-tint:   rgba(217, 155, 165, 0.18);
  --shadow-soft: 0 26px 60px -28px rgba(110, 58, 78, 0.30);
  --shadow-card: 0 18px 44px -26px rgba(110, 58, 78, 0.28);

  /* typografia */
  --display: 'Fraunces', Georgia, serif;
  --body:    'Nunito Sans', system-ui, -apple-system, sans-serif;

  /* easing — miękki */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: no-preference) { html { scroll-behavior: smooth; } }

body {
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--rose-deep); outline-offset: 4px; border-radius: 4px; }

/* ===== WŁASNY SCROLLBAR ===== */
/* Firefox */
html { scrollbar-width: thin; scrollbar-color: var(--plum) var(--cream-deep); }
/* WebKit (Chrome, Safari, Edge) */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--cream-deep); }
::-webkit-scrollbar-thumb {
  background: var(--plum);
  border-radius: 999px;
  border: 2px solid var(--cream-deep);   /* lekki margines = smuklejszy uchwyt */
}
::-webkit-scrollbar-thumb:hover { background: var(--rose-deep); }

/* ===== UKŁAD ===== */
.container { width: 100%; max-width: 1240px; margin: 0 auto; padding: 0 6vw; }
.narrow { max-width: 780px; }
.center { text-align: center; }

/* rytm pionowy — jeden selektor, brak konfliktów specyficzności */
.section { position: relative; padding-block: clamp(5rem, 11vw, 10rem); }
/* dodatkowy dół, by fala nie nachodziła na treść */
.section > .wave-slot ~ * { position: relative; z-index: 2; }
.section .container { position: relative; z-index: 2; }

/* tła sekcji */
.bg-cream      { background: var(--cream); }
.bg-cream-deep { background: var(--cream-deep); }
.bg-rose       { background: var(--rose); }
.bg-plum       { background: var(--plum); }

/* ===== FALE (SVG divider) ===== */
.wave-slot {
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  z-index: 1;
  line-height: 0;
  pointer-events: none;
}
.wave { display: block; width: 100%; height: clamp(48px, 7vw, 96px); }
/* kolor fali = tło NASTĘPNEJ sekcji */
.wave--cream      .wave path { fill: var(--cream); }
.wave--cream-deep .wave path { fill: var(--cream-deep); }
.wave--rose       .wave path { fill: var(--rose-dusty); }
.wave--plum       .wave path { fill: var(--plum); }

/* ===== TYPOGRAFIA WSPÓLNA ===== */
.eyebrow {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 1.4rem;
}
.eyebrow.light { color: rgba(251, 244, 234, 0.85); }

.section-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.08;
  color: var(--plum);
  font-optical-sizing: auto;
}
.section-title em { font-style: italic; color: var(--rose-deep); }
.bg-plum .section-title, .bg-rose .section-title { color: var(--cream); }

.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 1.8rem auto 0;
}
.lead.light { color: rgba(251, 244, 234, 0.88); }

.body-text {
  font-size: clamp(1.02rem, 1.3vw, 1.15rem);
  line-height: 1.82;
  color: var(--ink-soft);
  max-width: 46ch;
}
.body-text + .body-text { margin-top: 1.2rem; }

/* ozdobnik (cienka linia z akcentem) */
.ornament { display: inline-block; color: var(--gold); margin-bottom: 1.8rem; }
.ornament svg { width: clamp(90px, 16vw, 130px); height: auto; }
.ornament.light { color: rgba(251, 244, 234, 0.9); }

/* ===== PRZYCISKI (zaokrąglone) ===== */
.btn {
  display: inline-block;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease), transform 0.4s var(--ease),
              box-shadow 0.4s var(--ease);
}
/* główny różany */
.btn-rose {
  background: var(--rose-deep);
  color: var(--cream);
  box-shadow: 0 14px 30px -14px rgba(181, 107, 120, 0.7);
}
.btn-rose:hover { background: var(--plum); transform: translateY(-3px); box-shadow: 0 18px 36px -14px rgba(110, 58, 78, 0.55); }

/* miękki różany (obrys) — przy torebkach */
.btn-rose-soft {
  background: transparent;
  color: var(--rose-deep);
  border-color: var(--rose);
}
.btn-rose-soft:hover { background: var(--rose); color: var(--cream); transform: translateY(-3px); }

/* kremowy (na ciemnym bloku) */
.btn-cream {
  background: var(--cream);
  color: var(--plum);
}
.btn-cream:hover { background: var(--rose); color: var(--cream); transform: translateY(-3px); }

.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border-color: rgba(251, 244, 234, 0.6);
}
.btn-outline-cream:hover { background: var(--cream); color: var(--plum); transform: translateY(-3px); }


/* =====================================================================
   ORGANICZNE / ŁUKOWE KSZTAŁTY
   ===================================================================== */
/* organiczny blob za torebką */
.organic {
  position: absolute;
  z-index: 0;
  border-radius: 42% 58% 63% 37% / 49% 41% 59% 51%;
  filter: blur(0.5px);
}
.organic-hero {
  inset: 8% 4% 6% 6%;
  background: linear-gradient(150deg, var(--rose) 0%, var(--cream-deep) 100%);
  opacity: 0.85;
  animation: morph 14s ease-in-out infinite;
}
.organic-rose {
  inset: 6% 8%;
  background: radial-gradient(circle at 40% 35%, var(--rose-dusty) 0%, var(--rose-deep) 130%);
  opacity: 0.4;   /* przygaszone — bardziej przyprószone, eleganckie */
  animation: morph 16s ease-in-out infinite;
}
.organic-plum {
  inset: 6% 8%;
  background: radial-gradient(circle at 55% 40%, var(--plum) 0%, var(--rose-dusty) 130%);
  opacity: 0.34;  /* przygaszone, by nie gryzło się z żółtą torebką */
  animation: morph 18s ease-in-out infinite;
}
@keyframes morph {
  0%, 100% { border-radius: 42% 58% 63% 37% / 49% 41% 59% 51%; }
  50%      { border-radius: 58% 42% 38% 62% / 42% 58% 42% 58%; }
}

/* miękkie plamy tła (hero, kontakt) */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(42px);
  z-index: 0;
  pointer-events: none;
}
.blob-rose { width: 42vw; height: 42vw; max-width: 540px; max-height: 540px;
  top: -8%; right: -6%; background: var(--rose); opacity: 0.4; }
.blob-plum { width: 30vw; height: 30vw; max-width: 360px; max-height: 360px;
  bottom: 4%; left: -8%; background: var(--rose-deep); opacity: 0.18; }
.blob-rose-2 { width: 40vw; height: 40vw; max-width: 460px; max-height: 460px;
  top: -10%; left: -6%; background: var(--rose); opacity: 0.3; }

/* łukowa ramka zdjęcia (okno / arch) */
.arch {
  position: relative;
  z-index: 2;
  overflow: hidden;
  border-radius: 50% 50% 18px 18px / 34% 34% 6px 6px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--cream-line);
}
.arch img { width: 100%; height: 100%; object-fit: cover; display: block; }


/* =====================================================================
   HEADER
   ===================================================================== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding-block: 1rem;
  background: transparent;
  transition: background 0.5s var(--ease), box-shadow 0.5s var(--ease), padding 0.5s var(--ease);
}
.site-header.scrolled {
  background: rgba(251, 244, 234, 0.92);
  backdrop-filter: blur(10px);
  padding-block: 0.65rem;
  box-shadow: 0 10px 30px -20px rgba(110, 58, 78, 0.4);
}
.header-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 6vw;
  display: flex; align-items: center; justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 0.75rem; color: var(--plum); }
.logo-name {
  font-family: var(--body); font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--rose-deep);
}
.monogram-mark { display: block; width: 100%; height: 100%; color: inherit; }
.monogram-slot { display: inline-block; flex-shrink: 0; color: var(--plum); }
.monogram-sm { width: 62px; height: 51px; }   /* +35% — wyraźniejszy w nagłówku */
.monogram-md { width: 78px; height: 65px; }

.nav { display: flex; gap: 2.2rem; }
.nav a {
  font-family: var(--body); font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.03em;
  color: var(--ink); position: relative; padding: 0.3rem 0;
  transition: color 0.35s var(--ease);
}
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px; border-radius: 2px; background: var(--rose-deep);
  transition: width 0.4s var(--ease);
}
.nav a:hover { color: var(--rose-deep); }
.nav a:hover::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; border-radius: 2px; background: var(--plum); transition: transform 0.45s var(--ease), opacity 0.3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* =====================================================================
   HERO
   ===================================================================== */
.hero { background: var(--cream); overflow: hidden; padding-top: clamp(8rem, 14vw, 11rem); }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: clamp(2.5rem, 7vw, 7.5rem);   /* więcej oddechu: tekst ↔ owal torebki */
}
.hero-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.04;
  color: var(--plum);
  font-optical-sizing: auto;
}
.hero-title em { font-style: italic; color: var(--rose-deep); }
.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  color: var(--ink-soft);
  margin: 1.6rem 0 2.4rem;
}

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 360px; }
.hero-bag { position: relative; z-index: 2; width: clamp(240px, 32vw, 430px); filter: drop-shadow(0 30px 34px rgba(110, 58, 78, 0.34)); }

/* float */
.float { animation: float 6.5s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-18px); } }


/* =====================================================================
   MANIFEST
   ===================================================================== */
.manifest { text-align: center; }
.manifest-quote {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 1.28;
  color: var(--plum);
  margin-bottom: 1.4rem;
}
.manifest-quote em { font-style: italic; color: var(--rose-deep); }


/* =====================================================================
   KOLEKCJA
   ===================================================================== */
.bag-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.bag-grid.reverse .bag-media { order: 2; }
.bag-grid.reverse .bag-copy  { order: 1; }

.bag-media {
  position: relative;
  display: flex; justify-content: center; align-items: center;
  min-height: 420px;
}
.organic { will-change: border-radius; }
.bag-img {
  position: relative; z-index: 1;
  width: clamp(260px, 34vw, 460px);
  filter: drop-shadow(0 26px 30px rgba(110, 58, 78, 0.3));
  transition: transform 0.6s var(--ease), filter 0.6s var(--ease);
  will-change: transform;
}
/* hover: wyraźniejsze powiększenie + głębszy, miękki cień */
.bag-media:hover .bag-img {
  transform: scale(1.05);
  filter: drop-shadow(0 38px 46px rgba(110, 58, 78, 0.42));
}

.bag-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  line-height: 1.08;
  color: var(--plum);
  margin-bottom: 1.4rem;
}
.bag-title em { font-style: italic; color: var(--rose-deep); }
.bag-copy .body-text { margin-bottom: 2rem; }


/* =====================================================================
   BLOK WYRÓŻNIONY (różany)
   ===================================================================== */
/* tło przygaszone (--rose-dusty) — zgodne z poprzedzającą falą wave--rose */
.featured { background: var(--rose-dusty); text-align: center; padding-block: clamp(6rem, 13vw, 11rem); }
.featured-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.8rem, 4.4vw, 3.4rem);
  line-height: 1.3;
  color: var(--cream);
}
.featured-text em { font-style: italic; color: var(--plum); }


/* =====================================================================
   PERSONALIZACJA
   ===================================================================== */
.custom { text-align: center; }
.swatch-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 1.1rem; margin: 2.6rem auto;
  max-width: 460px;
}
.swatch {
  width: 50px; height: 50px; border-radius: 50%;
  background: var(--c, #ccc);
  border: 2px solid var(--cream);
  box-shadow: 0 0 0 1px var(--cream-line), 0 8px 16px -8px rgba(110,58,78,0.4);
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.swatch:hover { transform: scale(1.14) translateY(-2px); box-shadow: 0 0 0 2px var(--gold), 0 10px 18px -8px rgba(110,58,78,0.5); }
.custom .btn { margin-top: 1rem; }


/* =====================================================================
   PRACOWNIA / MONIKA
   ===================================================================== */
.atelier-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5.5rem);
}
.atelier-media { position: relative; }
.atelier-media .arch { max-width: 460px; margin: 0 auto; }
/* ozdobny złoty łuk-akcent za zdjęciem */
.arch-accent {
  position: absolute;
  inset: -18px -18px 18px 18px;
  z-index: 1;
  border: 1.5px solid var(--gold);
  border-radius: 50% 50% 20px 20px / 34% 34% 8px 8px;
  opacity: 0.6;
  pointer-events: none;
}
.atelier-copy .section-title { margin-bottom: 1.6rem; }


/* =====================================================================
   OPINIE
   ===================================================================== */
.reviews { text-align: center; }
.review-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 3.4rem; text-align: left;
}
.review-card {
  background: var(--cream-deep);
  border-radius: 28px;
  padding: 2.6rem 2.2rem 2.4rem;
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; align-items: flex-start; gap: 1.3rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.review-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -26px rgba(110, 58, 78, 0.4); }
/* łukowe miejsce na zdjęcie klientki */
.review-photo {
  width: 70px; height: 84px;
  border-radius: 50% 50% 14px 14px / 40% 40% 8px 8px;
  object-fit: cover;
}
.review-photo.placeholder { background: linear-gradient(150deg, var(--rose), var(--plum)); opacity: 0.55; }
.review-quote {
  font-family: var(--display); font-style: italic; font-weight: 400;
  font-size: 1.34rem; line-height: 1.45; color: var(--ink);
}
.review-name {
  font-family: var(--body); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--rose-deep);
}


/* =====================================================================
   KONTAKT
   ===================================================================== */
.contact { overflow: hidden; text-align: center; }
.contact-inner { position: relative; z-index: 2; }
.contact-title {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.04; color: var(--cream);
}
.contact-title em { font-style: italic; color: var(--rose); }
.contact-buttons { display: flex; gap: 1.2rem; justify-content: center; flex-wrap: wrap; margin-top: 2.8rem; }


/* =====================================================================
   STOPKA
   ===================================================================== */
.site-footer { background: var(--cream); padding: 4.5rem 0 3rem; text-align: center; }
.footer-logo { display: inline-flex; flex-direction: column; align-items: center; gap: 0.7rem; color: var(--plum); }
.footer-logo .logo-name { color: var(--rose-deep); }
.footer-social { display: flex; justify-content: center; gap: 1.5rem; margin: 1.8rem 0 1.6rem; }
.footer-social a {
  color: var(--plum); background: var(--cream-deep);
  width: 44px; height: 44px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  transition: color 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.footer-social a:hover { color: var(--cream); background: var(--rose-deep); transform: translateY(-3px); }
.footer-tag { font-family: var(--display); font-style: italic; font-size: 1.2rem; color: var(--plum); margin-bottom: 0.6rem; }
.footer-copy { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); opacity: 0.7; }


/* =====================================================================
   ANIMACJE
   ===================================================================== */
/* miękki, "odsłaniający" easing */
:root { --ease-reveal: cubic-bezier(0.16, 1, 0.3, 1); }

/* bazowy scroll-reveal — wyraźne wjeżdżanie (fade + translateY ~46px) */
.reveal {
  opacity: 0; transform: translateY(46px);
  transition: opacity 0.9s var(--ease-reveal), transform 0.9s var(--ease-reveal);
  will-change: opacity, transform;
}
.reveal.is-visible { opacity: 1; transform: none; }

/* kierunkowe wejście torebek — z własnej strony + lekkie skalowanie 0.9→1 */
.reveal-left  { transform: translateX(-54px) scale(0.9); }
.reveal-right { transform: translateX(54px)  scale(0.9); }
.reveal-left.is-visible,
.reveal-right.is-visible { transform: none; }

/* stagger: JS ustawia --i (indeks), tu przeliczamy na opóźnienie kaskadowe */
[data-stagger] > .reveal,
[data-stagger] > .reveal-left,
[data-stagger] > .reveal-right {
  transition-delay: calc(var(--i, 0) * 0.12s);
}


/* =====================================================================
   TEKSTURA PAPIERU — bardzo subtelne ziarno na całej stronie
   Lekki inline-SVG noise (feTurbulence), tiled, ~4.5% krycia.
   Multiply daje wrażenie drogiego papieru; pointer-events:none.
   ===================================================================== */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;                 /* nad tłami sekcji, pod treścią (.container z-index:2) */
  pointer-events: none;
  opacity: 0.04;
  /* bez mix-blend-mode — szybciej i lżej (brak re-kompozytowania tła co klatkę);
     szare ziarno przy 4% i tak daje wrażenie papieru */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* =====================================================================
   PŁYWAJĄCY PRZYCISK KONTAKTU (FAB)
   ===================================================================== */
.fab {
  position: fixed;
  right: clamp(1.1rem, 3vw, 2rem);
  bottom: clamp(1.1rem, 3vw, 2rem);
  z-index: 1000;
  display: flex;
  flex-direction: column-reverse;   /* główny przycisk na dole, akcje wyrastają w górę */
  align-items: flex-end;
  gap: 0.9rem;
}

/* główna bańka */
.fab-main {
  position: relative;
  width: 60px; height: 60px;
  border: none; cursor: pointer;
  border-radius: 50%;
  background: var(--rose-deep);
  color: var(--cream);
  box-shadow: 0 14px 30px -8px rgba(110, 58, 78, 0.55);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.fab-main:hover { background: var(--plum); transform: translateY(-3px) scale(1.05); box-shadow: 0 18px 36px -8px rgba(110, 58, 78, 0.6); }
.fab-main svg { width: 26px; height: 26px; position: absolute; transition: opacity 0.35s var(--ease), transform 0.35s var(--ease); }
/* przełączanie ikon: bańka ↔ X */
.fab-icon-close { opacity: 0; transform: rotate(-45deg) scale(0.6); }
.fab.open .fab-icon-open  { opacity: 0; transform: rotate(45deg) scale(0.6); }
.fab.open .fab-icon-close { opacity: 1; transform: rotate(0) scale(1); }

/* akcje (Messenger, Instagram) */
.fab-action {
  display: flex; align-items: center; gap: 0.65rem;
  /* stan zwinięty */
  opacity: 0;
  transform: translateY(14px) scale(0.85);
  pointer-events: none;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.fab.open .fab-action { opacity: 1; transform: none; pointer-events: auto; }
/* stagger przy rozwijaniu (od dołu) */
.fab.open .fab-action:nth-child(2) { transition-delay: 0.06s; }
.fab.open .fab-action:nth-child(1) { transition-delay: 0.13s; }

.fab-label {
  font-family: var(--body); font-weight: 700;
  font-size: 0.78rem; letter-spacing: 0.02em;
  color: var(--plum);
  background: var(--cream);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  box-shadow: var(--shadow-card);
  white-space: nowrap;
}
.fab-dot {
  width: 46px; height: 46px; flex-shrink: 0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  box-shadow: 0 10px 22px -8px rgba(110, 58, 78, 0.5);
  transition: transform 0.35s var(--ease);
}
.fab-action:hover .fab-dot { transform: scale(1.1); }
.fab-msg  .fab-dot { background: #0a7cff; }   /* Messenger */
.fab-ig   .fab-dot { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); } /* Instagram */
.fab-dot svg { width: 24px; height: 24px; }



  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; min-height: 320px; }
  .hero-bag { width: clamp(220px, 56vw, 340px); }

  .bag-grid, .bag-grid.reverse { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .bag-grid .bag-media, .bag-grid.reverse .bag-media { order: 1; min-height: 360px; }
  .bag-grid .bag-copy,  .bag-grid.reverse .bag-copy  { order: 2; }
  .bag-copy .body-text { margin-left: auto; margin-right: auto; }

  .atelier-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .atelier-copy { text-align: center; }
  .atelier-copy .body-text { margin-left: auto; margin-right: auto; }

  .review-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
}

@media (max-width: 700px) {
  .nav { display: none; }
  .nav-toggle { display: flex; }
  .nav.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(251, 244, 234, 0.97);
    backdrop-filter: blur(10px);
    padding: 1.6rem 6vw 2rem; gap: 1.4rem;
    box-shadow: var(--shadow-card);
  }
  .contact-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 330px; text-align: center; }
  .container { padding: 0 7vw; }
}

@media (min-width: 1500px) {
  .container, .header-inner { max-width: 1340px; }
}

/* prefers-reduced-motion — wyłącz ruch, zostaw proste fade */
@media (prefers-reduced-motion: reduce) {
  .float, .organic { animation: none !important; }
  [data-parallax] img, [data-parallax-soft], .wave { transform: none !important; }
  .reveal, .reveal-left, .reveal-right {
    transition: opacity 0.5s ease !important;
    transform: none !important;
    transition-delay: 0s !important;
  }
  .fab-action { transition: opacity 0.25s ease !important; }
}
