/* ═══════════════════════════════════════════════
   ULALA BEAUTY INSTITUTE — style.css
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600&display=swap');

/* ── RESET & ROOT ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black:      #0a0a0a;
  --off-black:  #111111;
  --dark-gray:  #1c1c1c;
  --mid-gray:   #555555;
  --light-gray: #aaaaaa;
  --off-white:  #f5f4f2;
  --white:      #ffffff;
  --accent:     #c8a96e;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}

::-webkit-scrollbar       { width: 4px; }
::-webkit-scrollbar-track { background: var(--white); }
::-webkit-scrollbar-thumb { background: var(--black); }


/* ═══════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════ */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 160;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  transition: padding 0.4s ease, box-shadow 0.4s ease;
}

nav.scrolled {
  padding: 10px 48px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.06);
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--black);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--black);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

/* ── Logo ── */
.nav-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  transition: transform 0.4s ease;
  flex-shrink: 0;
}

.nav-logo:hover img { transform: rotate(12deg) scale(1.05); }

.nav-logo-name {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--black);
  white-space: nowrap;
  line-height: 1.2;
}

.nav-logo-name em {
  font-style: italic;
  font-weight: 300;
  color: var(--mid-gray);
}

/* ── Booksy button ── */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn-booksy {
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 10px 22px;
  display: inline-block;
  transition: background 0.3s ease;
}

.btn-booksy:hover { background: var(--accent); }


/* ═══════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════ */

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  overflow: hidden;
}

/* Swap this background for: url('../img/hero.jpg') center/cover no-repeat */
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../img/hero.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 41px
  );
}

.placeholder-label {
  color: rgba(255,255,255,0.12);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 24px;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.1) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 80px;
  max-width: 700px;
}

.hero-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: block;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 96px);
  font-weight: 300;
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.5s forwards;
}

.hero-title em { font-style: italic; font-weight: 300; }

.hero-subtitle {
  font-size: 11px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.7s forwards;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s ease 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  right: 56px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  animation: fadeIn 1.5s ease 1.5s both;
}

.hero-scroll::after {
  content: '';
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.3);
  animation: scrollLine 2s ease-in-out 1.5s infinite;
}


/* ═══════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════ */

.btn-outline {
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.btn-solid {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 13px 28px;
  display: inline-block;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-solid:hover { background: var(--accent); color: var(--white); }

.btn-text {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
  display: inline-block;
  transition: color 0.3s, border-color 0.3s;
}

.btn-text:hover { color: var(--accent); border-color: var(--accent); }


/* ═══════════════════════════════════════════════
   SECTION COMMON
   ═══════════════════════════════════════════════ */

.section-tag {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mid-gray);
  margin-bottom: 20px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

.section-body {
  font-size: 13px;
  line-height: 1.9;
  color: var(--mid-gray);
  max-width: 440px;
  margin-bottom: 36px;
}


/* ═══════════════════════════════════════════════
   QUOTE BAND
   ═══════════════════════════════════════════════ */

.quote-band {
  background: var(--off-white);
  padding: 60px 80px;
  text-align: center;
}

.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(20px, 3vw, 30px);
  font-style: italic;
  font-weight: 300;
  color: var(--dark-gray);
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}

.quote-band cite {
  display: block;
  margin-top: 18px;
  font-family: var(--font-body);
  font-size: 9px;
  font-style: normal;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--mid-gray);
}


/* ═══════════════════════════════════════════════
   MISSION
   ═══════════════════════════════════════════════ */

.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

/* Swap background for: url('../img/mission.jpg') center/cover no-repeat */
.mission-image {
  background: url('../img/mission.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  min-height: 480px;
}

.mission-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


/* ═══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
   ═══════════════════════════════════════════════ */

.img-ph {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.img-ph-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(0,0,0,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-ph-icon svg {
  width: 22px;
  height: 22px;
  stroke: rgba(0,0,0,0.28);
  fill: none;
  stroke-width: 1.5;
}

.img-ph-text {
  font-size: 9px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.28);
}

/* Dark variant */
.img-ph.dark .img-ph-icon { border-color: rgba(255,255,255,0.18); }
.img-ph.dark .img-ph-icon svg { stroke: rgba(255,255,255,0.28); }
.img-ph.dark .img-ph-text { color: rgba(255,255,255,0.25); }


/* ═══════════════════════════════════════════════
   ZABIEGI
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   ZABIEGI — split layout (panel + slider)
   ═══════════════════════════════════════════════ */

.zabiegi {
  background: var(--off-white);
  overflow: hidden;
}

/* Outer two-column layout */
.zabiegi-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 600px;
}

/* ── Panel lewy ── */
.zabiegi-panel {
  background: var(--off-white);
  padding: 72px 48px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

.zabiegi-panel .section-tag {
  margin-bottom: 16px;
}

.zabiegi-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 24px;
  color: var(--black);
}

.zabiegi-title em {
  font-style: italic;
  font-weight: 300;
}

.zabiegi-desc {
  font-size: 13px;
  line-height: 1.9;
  color: var(--mid-gray);
  margin-bottom: 36px;
  max-width: 260px;
}

.btn-zabiegi {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 14px 28px;
  align-self: flex-start;
  transition: background 0.3s;
}

.btn-zabiegi:hover { background: var(--accent); }

/* ── Panel prawy: slider ── */
.zabiegi-slider-wrap {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.slider-track-wrap {
  overflow: hidden;
  width: 100%;
  align-self: stretch;
}

.slider-track {
  display: flex;
  gap: 16px;
  height: 100%;
  will-change: transform;
  transition: transform 0.6s cubic-bezier(0.77, 0, 0.18, 1);
  cursor: grab;
}

.slider-track.dragging {
  transition: none;
  cursor: grabbing;
}

/* ── Karta zabiegu ── */
.zabieg-card {
  position: relative;
  flex: 0 0 calc(50% - 8px);   /* 2 karty widoczne */
  height: 100%;
  min-height: 540px;
  overflow: hidden;
  cursor: pointer;
  background: #222;
}

.zabieg-card:nth-child(1) { background: url('../img/zabieg-1.png') center/cover no-repeat; }
.zabieg-card:nth-child(2) { background: url('../img/zabieg-2.png') center/cover no-repeat; }
.zabieg-card:nth-child(3) { background: url('../img/zabieg-3.png') center/cover no-repeat; }
.zabieg-card:nth-child(4) { background: url('../img/zabieg-4.png') center/cover no-repeat; }
.zabieg-card:nth-child(5) { background: url('../img/zabieg-5.png') center/cover no-repeat; }
.zabieg-card:nth-child(6) { background: url('../img/zabieg-6.png') center/cover no-repeat; }
.zabieg-card:nth-child(7) { background: url('../img/zabieg-7.png') center/cover no-repeat; }
.zabieg-card:nth-child(8) { background: url('../img/zabieg-8.png') center/cover no-repeat; }
.zabieg-card:nth-child(9) { background: url('../img/zabieg-9.png') center/cover no-repeat; }

.zabieg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 36px 28px;
  text-align: center;
  transition: background 0.4s ease;
}

.zabieg-card:hover .zabieg-overlay {
  background: linear-gradient(to top, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.25) 100%);
}

.zabieg-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 20px;
}

/* Szczegóły — biały button jak na screenie */
.zabieg-cta {
  display: inline-block;
  background: var(--white);
  color: var(--black);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 12px 32px;
  border: none;
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s, color 0.3s;
}

.zabieg-card:hover .zabieg-cta {
  opacity: 1;
  transform: translateY(0);
}

.zabieg-cta:hover {
  background: var(--accent);
  color: var(--white);
}

/* ── Strzałki — po bokach, między kartami ── */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  pointer-events: none;
  z-index: 10;
}

.slider-btn {
  width: 44px;
  height: 44px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 2px 16px rgba(0,0,0,0.15);
  transition: background 0.25s, box-shadow 0.25s;
}

.slider-btn svg {
  width: 18px;
  height: 18px;
  stroke: var(--black);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.25s;
}

.slider-btn:hover {
  background: var(--black);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.slider-btn:hover svg { stroke: var(--white); }

.slider-btn:disabled {
  opacity: 0.3;
  pointer-events: none;
}


/* ═══════════════════════════════════════════════
   EXPERIENCE STRIP
   ═══════════════════════════════════════════════ */

.experience-strip {
  background: var(--black);
  color: var(--white);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.exp-item {
  padding: 32px 40px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.exp-item:last-child { border-right: none; }

.exp-number {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 300;
  line-height: 1;
  color: var(--white);
  margin-bottom: 8px;
}

.exp-number em { font-style: normal; color: var(--accent); }

.exp-label {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 14px;
}

.exp-desc {
  font-size: 12px;
  line-height: 1.8;
  color: rgba(255,255,255,0.42);
}


/* ═══════════════════════════════════════════════
   ABOUT
   ═══════════════════════════════════════════════ */

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}

.about-text {
  padding: 80px 72px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--off-white);
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
}

.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.feature-num {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: rgba(0,0,0,0.1);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.feature-content h4 {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.feature-content p {
  font-size: 12px;
  line-height: 1.75;
  color: var(--mid-gray);
}

/* Swap background for: url('../img/about.jpg') center/cover no-repeat */
.about-image {
  background: url('../img/about.png') center/cover no-repeat;
  position: relative;
  overflow: hidden;
}


/* ═══════════════════════════════════════════════
   OPINIE
   ═══════════════════════════════════════════════ */

@keyframes fadeOpinia {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.opinie-controls { display: none; } /* hidden on desktop */

.opinie {
  padding: 96px 80px;
  background: var(--white);
  text-align: center;
}

.opinie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: left;
  margin-top: 60px;
}

.opinia-card {
  padding: 36px 32px;
  border: 1px solid rgba(0,0,0,0.08);
}

.opinia-stars {
  color: var(--accent);
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.opinia-quote {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.7;
  color: rgba(0,0,0,0.06);
  margin-bottom: 16px;
  font-style: italic;
}

.opinia-text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.85;
  color: var(--mid-gray);
  margin-bottom: 24px;
}

.opinia-author {
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  font-weight: 600;
  font-family: var(--font-body);
}


/* ═══════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════ */

.gallery-outer { position: relative; }

.gallery-teaser {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: repeat(2, 260px);
  gap: 3px;
}

.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.gallery-item:first-child { grid-row: 1 / 3; }

/* Swap each for: url('../img/gallery-N.jpg') center/cover no-repeat */
.gallery-item:nth-child(1) { background: url('../img/gallery-1.png') center/cover no-repeat; }
.gallery-item:nth-child(2) { background: url('../img/gallery-2.png') center/cover no-repeat; }
.gallery-item:nth-child(3) { background: url('../img/gallery-3.png') center/cover no-repeat; }
.gallery-item:nth-child(4) { background: url('../img/gallery-4.png') center/cover no-repeat; }
.gallery-item:nth-child(5) { background: url('../img/gallery-5.png') center/cover no-repeat; }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.38); }

.gallery-item-overlay span {
  font-size: 8px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: transparent;
  transition: color 0.35s ease;
  font-weight: 500;
  font-family: var(--font-body);
}

.gallery-item:hover .gallery-item-overlay span { color: var(--white); }

/* ── Mobile gallery slider (hidden on desktop) ── */
.gallery-slider-wrap {
  display: none;
  flex-direction: column;
  overflow: hidden;
}

.gallery-slider-track {
  display: flex;
  width: 100%;
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.18, 1);
  cursor: grab;
  will-change: transform;
}

.gallery-slider-track.dragging {
  transition: none;
  cursor: grabbing;
}

.gallery-slide {
  flex: 0 0 100%;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.gallery-slide:nth-child(1) { background: url('../img/gallery-1.png') center/cover no-repeat; }
.gallery-slide:nth-child(2) { background: url('../img/gallery-2.png') center/cover no-repeat; }
.gallery-slide:nth-child(3) { background: url('../img/gallery-3.png') center/cover no-repeat; }
.gallery-slide:nth-child(4) { background: url('../img/gallery-4.png') center/cover no-repeat; }
.gallery-slide:nth-child(5) { background: url('../img/gallery-5.png') center/cover no-repeat; }

/* Dots */
.gallery-slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
  background: var(--black);
}

.gallery-slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.gallery-slider-dot.active {
  background: var(--white);
  width: 22px;
  border-radius: 3px;
}


/* ═══════════════════════════════════════════════
   BOOKSY BANNER
   ═══════════════════════════════════════════════ */

.booksy-banner {
  background: var(--off-black);
  color: var(--white);
  padding: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.booksy-banner-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 14px;
}

.booksy-banner-text h2 em { font-style: italic; }

.booksy-banner-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  max-width: 480px;
}

.btn-booksy-lg {
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 18px 48px;
  white-space: nowrap;
  flex-shrink: 0;
  display: inline-block;
  transition: background 0.3s, color 0.3s;
}

.btn-booksy-lg:hover { background: var(--accent); color: var(--white); }


/* ═══════════════════════════════════════════════
   MAPA
   ═══════════════════════════════════════════════ */

.mapa-section {
  background: var(--off-white);
}

.mapa-layout {
  display: grid;
  grid-template-columns: 420px 1fr;
  min-height: 560px;
}

/* ── Info panel ── */
.mapa-info {
  padding: 72px 56px 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
  border-right: 1px solid rgba(0,0,0,0.06);
}

.mapa-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--black);
}

.mapa-title em {
  font-style: italic;
  font-weight: 300;
}

.mapa-divider {
  width: 36px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 36px;
}

.mapa-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.mapa-detail-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.mapa-icon {
  width: 36px;
  height: 36px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.mapa-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mapa-detail-label {
  display: block;
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--light-gray);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.mapa-detail-value {
  font-size: 13px;
  line-height: 1.75;
  color: var(--dark-gray);
}

.mapa-detail-value a {
  color: var(--dark-gray);
  text-decoration: none;
  transition: color 0.25s;
}

.mapa-detail-value a:hover { color: var(--accent); }

/* ── Google Maps embed ── */
.mapa-embed-wrap {
  position: relative;
  overflow: hidden;
  background: #e8e6e2;
}

.mapa-iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
  filter: grayscale(25%) contrast(1.05);
  transition: filter 0.4s ease;
}

.mapa-embed-wrap:hover .mapa-iframe {
  filter: grayscale(0%) contrast(1);
}

/* Badge nad mapą */
.mapa-overlay-badge {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  padding: 10px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--black);
  box-shadow: 0 4px 20px rgba(0,0,0,0.14);
  pointer-events: none;
}

.mapa-overlay-badge svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Responsive ── */



/* ═══════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════ */

footer {
  background: var(--black);
  color: rgba(255,255,255,0.55);
  padding: 64px 80px 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

/* Footer brand */
.footer-brand .footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand .footer-logo-wrap img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.06em;
}

.footer-brand-sub {
  font-size: 7px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
}

.footer-brand p {
  font-size: 11px;
  line-height: 1.9;
  max-width: 240px;
  margin-bottom: 20px;
}

.footer-contact-item {
  font-size: 11px;
  margin-bottom: 6px;
}

.footer-contact-item a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-contact-item a:hover { color: var(--white); }

/* Footer columns */
.footer-col h4 {
  font-size: 8px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }

.footer-col ul a {
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.04em;
}

.footer-col ul a:hover { color: var(--white); }

/* Footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

.footer-bottom p { font-size: 10px; letter-spacing: 0.06em; }

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-socials a {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 10px;
  font-family: var(--font-body);
  transition: all 0.3s;
}

.footer-socials a:hover {
  border-color: var(--white);
  color: var(--white);
}


/* ═══════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════ */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top;    opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top;    opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════
   BURGER & MOBILE MENU
   ═══════════════════════════════════════════════ */

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 200;
  flex-shrink: 0;
}

.burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--black);
  transition: transform 0.35s ease, opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}

/* Burger → X animacja */
.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; width: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu — pełnoekranowe nakładka */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 150;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 80px 40px 60px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1);
  pointer-events: none;
}

.mobile-menu.open {
  transform: translateX(0);
  pointer-events: all;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  margin-bottom: 48px;
}

.mobile-menu ul li {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.mobile-menu.open ul li:nth-child(1) { opacity: 1; transform: none; transition-delay: 0.15s; }
.mobile-menu.open ul li:nth-child(2) { opacity: 1; transform: none; transition-delay: 0.22s; }
.mobile-menu.open ul li:nth-child(3) { opacity: 1; transform: none; transition-delay: 0.29s; }
.mobile-menu.open ul li:nth-child(4) { opacity: 1; transform: none; transition-delay: 0.36s; }
.mobile-menu.open ul li:nth-child(5) { opacity: 1; transform: none; transition-delay: 0.43s; }

.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: clamp(32px, 8vw, 48px);
  font-weight: 300;
  color: var(--black);
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1.6;
  display: block;
  transition: color 0.25s;
}

.mobile-menu ul a:hover { color: var(--accent); }

.mobile-booksy {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 15px 36px;
  transition: background 0.3s;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease 0.5s, transform 0.4s ease 0.5s, background 0.3s;
}

.mobile-menu.open .mobile-booksy {
  opacity: 1;
  transform: none;
}

.mobile-booksy:hover { background: var(--accent); }

/* ═══════════════════════════════════════════════
   RESPONSIVE — 1100px
   ═══════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 900px (tablet / mobile)
   ═══════════════════════════════════════════════ */

@media (max-width: 900px) {

  /* ── Nav ── */
  nav {
    padding: 14px 20px;
    justify-content: space-between;
  }

  .nav-links,
  .nav-right { display: none; }

  .nav-logo {
    position: static;
    transform: none;
    margin: 0 auto;
  }

  .burger { display: flex; }

  /* ── Hero ── */
  .hero-content { padding: 0 28px; }
  .hero-title   { font-size: clamp(42px, 12vw, 72px); }
  .hero-ctas    { flex-direction: column; align-items: flex-start; }
  .hero-scroll  { display: none; }

  /* ── Quote ── */
  .quote-band { padding: 40px 28px; }

  /* ── Mission ── */
  .mission { grid-template-columns: 1fr; }
  .mission-image { min-height: 300px; order: -1; }
  .mission-text  { padding: 48px 28px; }
  .mission-text .section-body { max-width: 100%; }

  /* ── Zabiegi slider ── */
  .zabiegi-layout  { grid-template-columns: 1fr; }
  .zabiegi-panel   { padding: 48px 28px 36px; }
  .zabiegi-desc    { max-width: 100%; }
  .zabieg-card     { flex: 0 0 calc(78% - 8px); min-height: 420px; }
  .slider-arrows   { padding: 0 8px; }

  /* ── Stats ── */
  .experience-strip { grid-template-columns: 1fr; padding: 48px 28px; }
  .exp-item {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding: 28px 0;
  }
  .exp-item:last-child { border-bottom: none; }

  /* ── About ── */
  .about { grid-template-columns: 1fr; }
  .about-image { min-height: 300px; order: -1; }
  .about-text  { padding: 48px 28px; }

  /* ── Opinie ── */
  /* ── Opinie — slider na mobile ── */
  .opinie      { padding: 52px 22px 44px; }
  .opinie-grid {
    grid-template-columns: 100%;
    gap: 0;
    position: relative;
    overflow: hidden;
  }
  .opinia-card {
    display: none;
    animation: fadeOpinia 0.4s ease;
  }
  .opinia-card.active-slide { display: block; }

  /* Strzałki + kropki opinii */
  .opinie-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
  }
  .opinie-btn {
    width: 40px; height: 40px;
    background: var(--black);
    border: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background 0.25s;
  }
  .opinie-btn:disabled { background: var(--off-white); opacity: 0.35; cursor: default; }
  .opinie-btn svg { stroke: var(--white); }
  .opinie-btn:disabled svg { stroke: var(--black); }
  .opinie-dots { display: flex; gap: 8px; align-items: center; }
  .opinie-dot {
    width: 6px; height: 6px; border-radius: 3px;
    background: rgba(0,0,0,0.18); border: none; cursor: pointer; padding: 0;
    transition: all 0.3s;
  }
  .opinie-dot.active { width: 22px; background: var(--black); }

  /* ── Mapa — przeprojektowana na mobile ── */
  .mapa-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .mapa-info {
    padding: 36px 24px 28px;
    border-right: none;
    border-bottom: none;
    order: 1;
    background: var(--off-white);
    color: var(--black);
  }

  .mapa-info .section-tag { color: var(--mid-gray); }
  .mapa-title { color: var(--black); font-size: 28px; margin-bottom: 20px; }
  .mapa-divider { background: var(--accent); margin-bottom: 24px; }

  /* 2×2 grid zamiast listy pionowej */
  .mapa-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 16px;
    margin-bottom: 28px;
  }

  .mapa-icon { background: var(--white); }
  .mapa-detail-label { color: var(--light-gray); }
  .mapa-detail-value { color: var(--dark-gray); font-size: 12px; }
  .mapa-detail-value a { color: var(--dark-gray); }
  .mapa-detail-value a:hover { color: var(--accent); }

  .mapa-info .btn-zabiegi {
    width: 100%;
    text-align: center;
    background: var(--black);
    color: var(--white);
  }

  .mapa-info .btn-zabiegi:hover {
    background: var(--accent);
    color: var(--white);
  }

  .mapa-embed-wrap { order: 2; }
  .mapa-iframe { min-height: 260px; }
  .mapa-overlay-badge { display: none; }

  /* ── Galeria: ukryj grid, pokaż slider ── */
  .gallery-teaser      { display: none; }
  .gallery-slider-wrap { display: flex; }

  /* ── Booksy banner ── */
  .booksy-banner { flex-direction: column; padding: 52px 28px; text-align: center; }
  .btn-booksy-lg { width: 100%; text-align: center; }


  footer { padding: 40px 22px 24px; }

  /* Logo + opis + kontakt na pełną szerokość, potem 2 kolumny linków */
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  /* Brand zajmuje obie kolumny */
  .footer-brand {
    grid-column: 1 / -1;
    padding-bottom: 28px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
  }

  /* Ukryj 3. kolumnę Rezerwacje na mobile — mieści się w menu */
  .footer-col:last-child { display: none; }

  /* Widoczne 2 kolumny: Menu + Informacje */
  .footer-col { padding: 0 0 20px; }
  .footer-col:first-of-type { padding-right: 12px; }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    text-align: left;
    margin-top: 8px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.07);
  }
}

/* ═══════════════════════════════════════════════
   RESPONSIVE — 520px (small phones)
   ═══════════════════════════════════════════════ */

@media (max-width: 520px) {

  /* ── Nav logo ── */
  .nav-logo-name { font-size: 12px; }
  .nav-logo img  { width: 32px; height: 32px; }

  /* ── Hero ── */
  .hero { min-height: 100svh; }
  .hero-content { padding: 0 20px; }

  /* ── Zabiegi ── */
  .zabieg-card { flex: 0 0 calc(88% - 8px); min-height: 380px; }

  /* ── Galeria ── */
  .gallery-slide { height: 260px; }

  /* ── Modal ── */
  .modal-backdrop { padding: 0; align-items: flex-end; }

  /* ── Opinia cards ── */
  .opinia-card { padding: 28px 22px; }
}

