/* =====================================================================
   LASER LEJDI — Centrum upiekszania ciala
   System wizualny: "swiatlo lasera na skorze"
   Paleta: sliwka / dusty rose / szampan / blush / krem
   Typografia: Fraunces (naglowki) + Manrope (tekst, UI)
   ===================================================================== */

:root {
  /* Kolory */
  --ink: #2a1b26;          /* tekst glowny (sliwkowa czern) */
  --ink-soft: #6c5763;     /* tekst drugorzedny */
  --plum: #3a2336;         /* ciemne sekcje, stopka */
  --plum-deep: #2c1a29;
  --rose: #c47d93;         /* akcent glowny / przyciski */
  --rose-deep: #a85f76;    /* hover */
  --rose-soft: #e7c2cd;
  --champagne: #c4a061;    /* zloty akcent, cienkie linie */
  --champagne-soft: #e7d3ad;
  --blush: #f6e7e1;        /* miekkie tlo sekcji */
  --blush-deep: #efd9d2;
  --cream: #fcf8f5;        /* tlo strony */
  --mist: #ece0db;         /* obramowania */
  --white: #ffffff;
  --ok: #5c8a6b;
  --ok-bg: #e6f0e8;
  --pending: #c4924e;
  --pending-bg: #f7ecda;

  /* Cienie (z rozowym podtonem) */
  --shadow-sm: 0 2px 8px rgba(58, 35, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(58, 35, 54, 0.10);
  --shadow-lg: 0 24px 60px rgba(58, 35, 54, 0.16);
  --shadow-rose: 0 14px 34px rgba(168, 95, 118, 0.28);

  /* Krzywe / promienie */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 26px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);

  --container: 1160px;
  --nav-h: 76px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

/* --------------------------------- Reset ---------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; }

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, button { font-size: 1rem; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}

::selection { background: var(--rose-soft); color: var(--plum-deep); }

/* ------------------------------- Pomocnicze ------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--rose-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--champagne);
}
.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--champagne);
}

.section { padding: clamp(64px, 9vw, 132px) 0; position: relative; scroll-margin-top: var(--nav-h); }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head.center { margin-inline: auto; text-align: center; }
.section__head.center .eyebrow { justify-content: center; }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.4rem);
  margin: 18px 0 14px;
}
.section__title em { font-style: italic; color: var(--rose-deep); }
.section__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section__head.center .section__lead { margin-inline: auto; }

/* Przyciski */
.btn {
  --bg: var(--rose);
  --fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  padding: 0.95em 1.7em;
  border-radius: var(--r-pill);
  background: var(--bg);
  color: var(--fg);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease),
    background 0.3s var(--ease);
  box-shadow: var(--shadow-rose);
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); background: var(--rose-deep); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--champagne); outline-offset: 3px; }

.btn--ghost {
  --bg: transparent;
  --fg: var(--ink);
  box-shadow: inset 0 0 0 1.4px var(--mist);
}
.btn--ghost:hover {
  background: var(--white);
  box-shadow: inset 0 0 0 1.4px var(--rose-soft), var(--shadow-sm);
}
.btn--light {
  --bg: #fff;
  --fg: var(--plum);
  box-shadow: var(--shadow-md);
}
.btn--light:hover { --bg: #fff; }
.btn--block { width: 100%; }
.btn--sm { padding: 0.6em 1.1em; font-size: 0.86rem; box-shadow: none; }
.btn--sm.btn:hover { transform: none; }

.link-underline {
  position: relative;
  font-weight: 600;
  color: var(--rose-deep);
}
.link-underline::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 1.5px;
  background: var(--champagne);
  transform: scaleX(0.25);
  transform-origin: left;
  opacity: 0.6;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}
.link-underline:hover::after { transform: scaleX(1); opacity: 1; }

/* =============================== Nawigacja =============================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease),
    backdrop-filter 0.4s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav.scrolled {
  background: rgba(252, 248, 245, 0.85);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(58, 35, 54, 0.06), var(--shadow-sm);
}
.brand { display: flex; align-items: baseline; gap: 0.55rem; }
.brand__mark {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.brand__mark .dot { color: var(--rose); }
.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav__links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1.5px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover { color: var(--rose-deep); }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { display: flex; align-items: center; gap: 14px; }
.nav__userchip {
  display: none;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--plum);
}
.nav__userchip .avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--rose), var(--champagne));
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.nav__burger span {
  position: relative;
  width: 18px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease);
}
.nav__burger span::before,
.nav__burger span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease), top 0.3s var(--ease);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after { top: 6px; }

/* ================================== Hero ================================= */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
  isolation: isolate;
}
.hero__glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.85;
  pointer-events: none;
}
.hero__glow--1 {
  width: 60vw; height: 60vw;
  max-width: 820px; max-height: 820px;
  top: -16%; right: -10%;
  background: radial-gradient(circle at 50% 50%,
    rgba(196, 125, 147, 0.55),
    rgba(196, 125, 147, 0.18) 45%,
    transparent 70%);
  animation: drift1 16s var(--ease) infinite alternate;
}
.hero__glow--2 {
  width: 46vw; height: 46vw;
  max-width: 620px; max-height: 620px;
  bottom: -18%; left: -12%;
  background: radial-gradient(circle at 50% 50%,
    rgba(196, 160, 97, 0.42),
    rgba(231, 211, 173, 0.18) 45%,
    transparent 70%);
  animation: drift2 20s var(--ease) infinite alternate;
}
.hero__glow--3 {
  width: 30vw; height: 30vw;
  max-width: 360px; max-height: 360px;
  top: 30%; left: 38%;
  background: radial-gradient(circle at 50% 50%,
    rgba(246, 231, 225, 0.7),
    transparent 70%);
  animation: drift3 14s var(--ease) infinite alternate;
}
@keyframes drift1 {
  to { transform: translate(-40px, 30px) scale(1.08); }
}
@keyframes drift2 {
  to { transform: translate(40px, -26px) scale(1.12); }
}
@keyframes drift3 {
  to { transform: translate(20px, 28px) scale(1.15); opacity: 0.5; }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  width: 100%;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.5em 1em 0.5em 0.6em;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--plum);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(6px);
}
.hero__badge .pip {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.25);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.25); }
  50% { box-shadow: 0 0 0 7px rgba(196, 125, 147, 0.08); }
}
.hero__title {
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 1.02;
  margin: 22px 0 0;
  letter-spacing: -0.02em;
}
.hero__title em {
  font-style: italic;
  color: var(--rose-deep);
  position: relative;
}
.hero__sub {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 44ch;
  margin: 26px 0 0;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 26px 40px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--mist);
}
.hero__meta .stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--plum);
  display: block;
  line-height: 1;
}
.hero__meta .stat .lbl {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* Wizualizacja wiazki lasera w hero */
.hero__visual {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-lg);
  background:
    radial-gradient(120% 90% at 70% 0%, rgba(231, 194, 205, 0.55), transparent 60%),
    linear-gradient(160deg, #fff 0%, var(--blush) 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.scroll-cue .mouse {
  width: 22px; height: 36px;
  border: 1.5px solid var(--ink-soft);
  border-radius: 12px;
  position: relative;
}
.scroll-cue .mouse::after {
  content: "";
  position: absolute;
  left: 50%; top: 7px;
  width: 3px; height: 7px;
  border-radius: 2px;
  background: var(--rose);
  transform: translateX(-50%);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot {
  0% { opacity: 0; transform: translate(-50%, -3px); }
  40% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 12px); }
}

/* ============================ Jak to dziala ============================= */
.how { background: linear-gradient(180deg, var(--cream), #fff 60%); }
.how__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
}
.how__figure {
  position: sticky;
  top: calc(var(--nav-h) + 30px);
  border-radius: var(--r-lg);
  background: linear-gradient(165deg, var(--plum) 0%, var(--plum-deep) 100%);
  padding: 34px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.how__figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(80% 60% at 60% 10%, rgba(196, 125, 147, 0.3), transparent 60%);
  pointer-events: none;
}
.how__figcaption {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  margin-top: 18px;
  text-align: center;
  position: relative;
}
.steps { display: flex; flex-direction: column; gap: 14px; counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}
.step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.step__num {
  counter-increment: step;
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  border: 1px solid var(--rose-soft);
}
.step__num::before { content: "0" counter(step); }
.step h3 { font-size: 1.22rem; margin-bottom: 5px; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }

/* ============================== Korzysci =============================== */
.benefits { background: var(--blush); }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.bcard {
  background: #fff;
  border-radius: var(--r-md);
  padding: 32px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
  border: 1px solid transparent;
}
.bcard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--rose-soft);
}
.bcard__icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--blush-deep), #fff);
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.bcard__icon svg { width: 26px; height: 26px; }
.bcard h3 { font-size: 1.18rem; margin-bottom: 8px; }
.bcard p { color: var(--ink-soft); font-size: 0.94rem; }

/* =============================== Terminarz ============================== */
.schedule { background: linear-gradient(180deg, #fff, var(--cream)); scroll-margin-top: var(--nav-h); }

.sched {
  background: #fff;
  border: 1px solid var(--mist);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.sched__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 26px;
  background: linear-gradient(180deg, #fff, var(--cream));
  border-bottom: 1px solid var(--mist);
  flex-wrap: wrap;
}
.sched__nav { display: flex; align-items: center; gap: 12px; }
.sched__navbtn {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--plum);
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.sched__navbtn:hover { color: var(--rose-deep); transform: scale(1.06); }
.sched__navbtn:disabled { opacity: 0.35; cursor: not-allowed; }
.sched__range {
  font-family: var(--font-display);
  font-size: 1.18rem;
  min-width: 220px;
  text-align: center;
}
.sched__range small { display: block; font-family: var(--font-body); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); margin-top: 2px; }
.sched__today {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--rose-deep);
}

.legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  padding: 14px 26px;
  border-bottom: 1px solid var(--mist);
  font-size: 0.82rem;
  color: var(--ink-soft);
  background: var(--cream);
}
.legend span { display: inline-flex; align-items: center; gap: 0.5em; }
.legend .dot { width: 12px; height: 12px; border-radius: 4px; }
.dot--free { background: #fff; border: 1.5px solid var(--rose-soft); }
.dot--busy { background: var(--mist); border: 1.5px solid var(--mist); }
.dot--mine { background: var(--rose); }
.dot--ok { background: var(--ok); }

/* Widok tygodnia (desktop) */
.week {
  display: grid;
  grid-template-columns: 64px repeat(var(--cols, 6), 1fr);
  overflow-x: auto;
}
.week__cell {
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  min-height: 56px;
  padding: 6px;
}
.week__corner { border-right: 1px solid var(--mist); border-bottom: 1px solid var(--mist); background: var(--cream); }
.week__dayhead {
  text-align: center;
  padding: 14px 6px;
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  background: var(--cream);
  position: sticky; top: 0;
}
.week__dayhead .dow { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-soft); }
.week__dayhead .date { font-family: var(--font-display); font-size: 1.25rem; }
.week__dayhead.is-today { background: var(--blush); }
.week__dayhead.is-today .date { color: var(--rose-deep); }
.week__timecol {
  border-right: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
  display: grid; place-items: center;
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: var(--cream);
  font-variant-numeric: tabular-nums;
}

/* Widok dnia (mobile) */
.dayview { display: none; padding: 8px; }
.daychips {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 16px;
  border-bottom: 1px solid var(--mist);
  scrollbar-width: none;
}
.daychips::-webkit-scrollbar { display: none; }
.daychip {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 54px;
  padding: 9px 6px;
  border-radius: var(--r-sm);
  background: var(--cream);
  border: 1.5px solid transparent;
  transition: all 0.3s var(--ease);
}
.daychip .dow { font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.daychip .date { font-family: var(--font-display); font-size: 1.2rem; }
.daychip.active { background: var(--plum); border-color: var(--plum); }
.daychip.active .dow, .daychip.active .date { color: #fff; }
.daychip.is-today:not(.active) { border-color: var(--rose-soft); }
.daylist { display: flex; flex-direction: column; gap: 8px; padding: 14px 16px; }
.daylist .closed { text-align: center; color: var(--ink-soft); padding: 30px 0; font-size: 0.95rem; }

/* Slot (wspolny dla obu widokow) */
.slot {
  width: 100%;
  height: 100%;
  min-height: 44px;
  border-radius: var(--r-sm);
  padding: 8px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  text-align: left;
  font-size: 0.82rem;
  line-height: 1.25;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease),
    background 0.25s var(--ease), border-color 0.25s var(--ease);
  border: 1.5px solid transparent;
}
.dayview .slot {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 12px 16px;
}
.dayview .slot .slot__time { font-weight: 700; font-size: 0.98rem; }
.slot__time { font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.slot__label { font-size: 0.76rem; }

.slot--free {
  background: #fff;
  border-color: var(--rose-soft);
  color: var(--rose-deep);
  cursor: pointer;
}
.slot--free:hover {
  background: var(--rose);
  border-color: var(--rose);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-rose);
}
.slot--free:hover .slot__time { color: #fff; }
.slot--free .slot__label::before { content: "Wolny"; }
.slot--free:hover .slot__label::before { content: "Zarezerwuj  ›"; }

.slot--busy {
  background: var(--mist);
  border-color: var(--mist);
  color: var(--ink-soft);
  cursor: default;
}
.slot--busy .slot__time { color: var(--ink-soft); }

.slot--mine { background: var(--blush); border-color: var(--rose); cursor: default; }
.slot--mine.is-approved { background: var(--ok-bg); border-color: var(--ok); }
.slot--mine .slot__time { color: var(--plum); }
.slot__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 0.15em 0.55em;
  border-radius: var(--r-pill);
  align-self: flex-start;
}
.dayview .slot__meta { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; }
.tag--pending { background: var(--pending-bg); color: var(--pending); }
.tag--ok { background: var(--ok-bg); color: var(--ok); }
.tag--admin { background: rgba(196,125,147,0.16); color: var(--rose-deep); }

/* Slot administratorki */
.slot--admin { background: #fff; border-color: var(--rose-soft); cursor: default; }
.slot--admin.is-approved { border-color: var(--ok); background: var(--ok-bg); }
.slot--admin .who { font-weight: 700; color: var(--plum); font-size: 0.8rem; }
.slot--admin .ph { color: var(--ink-soft); font-size: 0.72rem; }
.slot__admin-actions { display: flex; gap: 6px; margin-top: 4px; }
.icon-btn {
  width: 30px; height: 30px;
  border-radius: 8px;
  display: grid; place-items: center;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.icon-btn svg { width: 16px; height: 16px; }
.icon-btn--ok { background: var(--ok-bg); color: var(--ok); }
.icon-btn--ok:hover { background: var(--ok); color: #fff; transform: scale(1.08); }
.icon-btn--del { background: #f7e6e6; color: #b15a5a; }
.icon-btn--del:hover { background: #b15a5a; color: #fff; transform: scale(1.08); }

.sched__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px 26px;
  background: var(--cream);
  border-top: 1px solid var(--mist);
  font-size: 0.86rem;
  color: var(--ink-soft);
}
.sched__note svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--rose-deep); margin-top: 2px; }
.sched__note a { color: var(--rose-deep); font-weight: 600; }

.sched__loading {
  padding: 60px 26px;
  text-align: center;
  color: var(--ink-soft);
}
.spinner {
  width: 30px; height: 30px;
  border: 3px solid var(--mist);
  border-top-color: var(--rose);
  border-radius: 50%;
  margin: 0 auto 14px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* =============================== Kontakt =============================== */
.contact { background: var(--blush); scroll-margin-top: var(--nav-h); }
.contact__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: stretch;
}
.contact__card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}
.contact__list { list-style: none; display: flex; flex-direction: column; gap: 22px; margin: 28px 0 32px; }
.contact__list li { display: flex; gap: 16px; align-items: flex-start; }
.contact__ico {
  flex: 0 0 auto;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  background: var(--blush);
  color: var(--rose-deep);
}
.contact__ico svg { width: 22px; height: 22px; }
.contact__list .k { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); }
.contact__list .v { font-size: 1.08rem; font-weight: 600; color: var(--ink); }
.contact__list .v a:hover { color: var(--rose-deep); }
.contact__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: auto; }

.contact__map {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  min-height: 420px;
  position: relative;
  border: 1px solid rgba(255,255,255,0.6);
}
.contact__map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; filter: grayscale(0.2) contrast(1.02); }

/* =============================== Stopka ================================ */
.footer {
  background: var(--plum-deep);
  color: rgba(255, 255, 255, 0.75);
  padding: 64px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__brand .brand__mark { color: #fff; }
.footer__brand p { margin-top: 16px; max-width: 38ch; font-size: 0.92rem; }
.footer h4 { color: #fff; font-family: var(--font-body); font-size: 0.8rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; font-size: 0.92rem; }
.footer ul a:hover { color: var(--rose-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================= Modale (auth) =========================== */
.modal-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-root.open { display: flex; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(44, 26, 41, 0.55);
  backdrop-filter: blur(6px);
  animation: fade 0.3s var(--ease);
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
.modal {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: var(--cream);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 40px;
  animation: pop 0.4s var(--ease);
  max-height: 92vh;
  overflow-y: auto;
}
@keyframes pop {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.modal__close:hover { transform: rotate(90deg); color: var(--rose-deep); }
.modal__eyebrow { color: var(--rose-deep); }
.modal__title { font-size: 1.9rem; margin: 12px 0 6px; }
.modal__lead { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }

.field { margin-bottom: 16px; }
.field > label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field input {
  width: 100%;
  padding: 0.85em 1em;
  border: 1.5px solid var(--mist);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field input::placeholder { color: #b9a8b0; }
.field input:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.14);
}
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field--row .field { margin-bottom: 0; }

.form-msg {
  font-size: 0.86rem;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  margin-bottom: 14px;
  display: none;
}
.form-msg.show { display: block; }
.form-msg.error { background: #f8e7e7; color: #a64a4a; }
.form-msg.success { background: var(--ok-bg); color: var(--ok); }

.modal__switch {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.modal__switch button { color: var(--rose-deep); font-weight: 700; }
.modal__switch button:hover { text-decoration: underline; }

/* Modal potwierdzenia rezerwacji */
.confirm__slot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-md);
  margin: 8px 0 22px;
}
.confirm__slot .cal {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--blush);
  display: grid; place-items: center;
  color: var(--rose-deep);
}
.confirm__slot .cal svg { width: 26px; height: 26px; }
.confirm__slot .when .d { font-weight: 700; font-size: 1.05rem; color: var(--plum); text-transform: capitalize; }
.confirm__slot .when .t { color: var(--ink-soft); font-size: 0.9rem; }

/* ================================ Toast ================================ */
.toast-wrap {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 300;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: min(420px, calc(100vw - 40px));
}
.toast {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--r-md);
  background: var(--plum);
  color: #fff;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  animation: toastin 0.4s var(--ease);
}
.toast.leaving { animation: toastout 0.35s var(--ease) forwards; }
@keyframes toastin { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes toastout { to { opacity: 0; transform: translateY(12px); } }
.toast .ico { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; }
.toast--success { background: #3c6b4c; }
.toast--error { background: #9c4646; }

/* ============================ Reveal on scroll ========================= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* ============================ Laser beam (SVG) ========================= */
.beam { transform-origin: top center; animation: beamPulse 3.2s var(--ease) infinite; }
@keyframes beamPulse { 0%,100% { opacity: 0.55; } 50% { opacity: 1; } }
.beam-dot { animation: beamTravel 3.2s var(--ease) infinite; }
@keyframes beamTravel {
  0% { transform: translateY(0); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateY(118px); opacity: 0; }
}
.follicle-glow { animation: folliclePulse 3.2s var(--ease) infinite; transform-origin: center; }
@keyframes folliclePulse {
  0%, 55% { opacity: 0; r: 8; }
  72% { opacity: 0.9; r: 18; }
  100% { opacity: 0; r: 26; }
}

/* ========================= Strefy zabiegowe =========================== */
.zones { background: var(--cream); }
.zones__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}
.zones__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  rotate: -2deg;
}
.zones__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.zones__copy .section__head { margin-bottom: 28px; }
.zones__chips { display: flex; flex-wrap: wrap; gap: 10px; }
.zones__chips li {
  list-style: none;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--plum);
  background: #fff;
  border: 1px solid var(--rose-soft);
  border-radius: var(--r-pill);
  padding: 0.5em 1.05em;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
}
.zones__chips li:hover { transform: translateY(-2px); background: var(--rose); color: #fff; border-color: var(--rose); }

/* ============================== Efekty ================================= */
.results { background: linear-gradient(180deg, var(--cream), #fff); }
.results__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.result {
  margin: 0;
  border-radius: var(--r-md);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--mist);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.result:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.result img { display: block; width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.result figcaption {
  padding: 14px 16px;
  font-size: 0.86rem;
  color: var(--ink-soft);
  text-align: center;
  line-height: 1.4;
}

/* ============================ Zabiegi RF ============================== */
.rf { background: var(--blush); }
.rf__feature {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  margin-bottom: 56px;
}
.rf__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 6px solid #fff;
  max-width: 420px;
}
.rf__media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.rf__list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.rf__list li {
  list-style: none;
  position: relative;
  padding-left: 26px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.rf__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--rose);
  box-shadow: 0 0 0 4px rgba(196, 125, 147, 0.18);
}
.rf__list strong { color: var(--plum); font-weight: 700; }
.rf__gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 760px;
  margin-inline: auto;
}

/* ====================== Baner kontaktowy (witryna) ==================== */
.contact__banner {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
}
.contact__banner img { display: block; width: 100%; height: auto; }

/* ============================== Responsywnosc ========================== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__visual { max-width: 380px; margin-inline: auto; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .how__figure { position: static; }
  .zones__grid { grid-template-columns: 1fr; gap: 36px; }
  .zones__media { rotate: 0deg; max-width: 460px; margin-inline: auto; }
  .rf__feature { grid-template-columns: 1fr; gap: 32px; }
  .rf__media { margin-inline: auto; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__links.mobile-open {
    display: flex;
    position: fixed;
    inset: var(--nav-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(252, 248, 245, 0.98);
    backdrop-filter: blur(14px);
    padding: 12px 24px 24px;
    box-shadow: var(--shadow-md);
  }
  .nav__links.mobile-open li { border-bottom: 1px solid var(--mist); }
  .nav__links.mobile-open a { display: block; padding: 16px 0; }
  .how__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 30px; }
  .week { display: none; }
  .dayview { display: block; }
  .sched__range { min-width: auto; }
}

@media (max-width: 560px) {
  .container { padding-inline: 18px; }
  .benefits__grid { grid-template-columns: 1fr; }
  .modal { padding: 28px 22px; }
  .contact__card { padding: 28px 22px; }
  .field--row { grid-template-columns: 1fr; }
  .hero__meta { gap: 18px 28px; }
  .nav__cta .btn span.long { display: none; }
  .rf__gallery { grid-template-columns: 1fr; max-width: 420px; }
}

/* Mniejsze numery / drobne korekty */
@media (min-width: 861px) {
  .nav__userchip.show { display: flex; }
}

/* ====================== Szacunek dla redukcji ruchu ==================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== Poprawka naglowka (nawigacji) na telefonach ===== */
@media (max-width: 560px) {
  .nav__inner { padding-inline: 16px; gap: 12px; }
  .brand { gap: 0; min-width: 0; }
  .brand__sub { display: none; }
  .brand__mark { font-size: 1.15rem; letter-spacing: 0.08em; white-space: nowrap; }
  .nav__cta { gap: 10px; }
  .nav__cta .btn--sm { padding: 0.5em 0.8em; font-size: 0.78rem; }
  #userChip { display: none !important; }
}
