/* ═══════════════════════════════════════════════════════
   SALON FRYZJERSKI KRZYSZTOF — style.css
   Dark luxury × cream color-blocking
   ═══════════════════════════════════════════════════════ */

:root {
  --bg: #1a1714;
  --bg2: #1f1b16;
  --bg3: #29241d;
  --text: #f5ede0;
  --text-muted: #a89880;
  --gold: #c9a55a;
  --gold-light: #dfc07a;
  --border: rgba(201,165,90,0.18);

  /* light band */
  --cream: #f7f4ed;
  --cream-2: #efe9dc;
  --cream-card: #faf6ee;
  --ink: #221d16;
  --ink-muted: #6e6353;
  --gold-deep: #9a7a35;
  --shadow-soft: 0 30px 80px -20px rgba(80,62,30,0.25), 0 8px 24px -8px rgba(80,62,30,0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.65, 0, 0.35, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: #16130f; }

/* screen-reader only (SEO h1) */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ─── NOISE OVERLAY ─── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.5;
  mix-blend-mode: overlay;
}

/* ═══ CUSTOM CURSOR ═══ */
@media (pointer: fine) {
  body.cursor-active, body.cursor-active a, body.cursor-active button { cursor: none; }
}
@media (pointer: coarse) { .cursor-dot, .cursor-ring { display: none !important; } }

.cursor-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out);
}

.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(201,165,90,0.55);
  border-radius: 50%;
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.35s var(--ease-out), height 0.35s var(--ease-out),
              border-color 0.35s, background 0.35s, opacity 0.3s;
}

.cursor-ring.is-hover {
  width: 58px; height: 58px;
  border-color: rgba(201,165,90,0.9);
  background: rgba(201,165,90,0.06);
}
.cursor-dot.is-hover { width: 3px; height: 3px; }
.cursor-ring.is-down { width: 28px; height: 28px; }

/* ═══ NAV ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9000;
  padding: 24px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translateZ(0);
  transition: background 0.5s var(--ease-out), padding 0.5s var(--ease-out),
              box-shadow 0.5s;
}

nav.is-scrolled {
  padding: 12px 40px;
  background: rgba(26,23,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(201,165,90,0.12);
}

/* while the overlay is open the bar must not paint over it */
nav.menu-open {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

.nav-logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 0 12px rgba(201,165,90,0.25));
  transition: filter 0.4s var(--ease-out);
}

.nav-logo:hover img {
  filter: drop-shadow(0 0 18px rgba(201,165,90,0.45));
}

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

.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
  transition: color 0.35s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

/* ─── BURGER ─── */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: none;
  border: none;
  position: relative;
  z-index: 300;
}

.nav-burger span {
  position: absolute;
  left: 8px;
  width: 28px; height: 1.5px;
  background: var(--gold);
  transition: transform 0.5s var(--ease-out), top 0.5s var(--ease-out), width 0.4s var(--ease-out);
}

.nav-burger span:nth-child(1) { top: 18px; }
.nav-burger span:nth-child(2) { top: 26px; width: 20px; }

.nav-burger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { top: 22px; width: 28px; transform: rotate(-45deg); }

/* ═══ MOBILE MENU OVERLAY ═══ */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 8900;
  pointer-events: none;
  visibility: hidden;
  transition: visibility 0s 0.9s;
}

.mobile-menu.is-open {
  pointer-events: auto;
  visibility: visible;
  transition: visibility 0s 0s;
}

.mobile-menu-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% 0%, rgba(201,165,90,0.08), transparent 65%),
    #131009;
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition: clip-path 0.85s var(--ease-smooth);
}

.mobile-menu.is-open .mobile-menu-bg {
  clip-path: circle(150% at calc(100% - 42px) 42px);
}

.mobile-menu-inner {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 36px 48px;
}

.mobile-menu-eyebrow {
  font-size: 0.62rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.mobile-menu-links {
  list-style: none;
}

.mobile-menu-links li {
  overflow: hidden;
  padding: 4px 0;
}

.mobile-menu-links a {
  display: inline-block;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 9vw, 3.2rem);
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  line-height: 1.25;
  transform: translateY(110%);
  transition: transform 0.8s var(--ease-out), color 0.3s;
  transition-delay: 0s;
}

.mobile-menu-links a:active { color: var(--gold); }

.mobile-menu.is-open .mobile-menu-links a {
  transform: translateY(0);
  transition-delay: calc(0.15s + var(--i) * 0.07s);
}

.mobile-menu.is-open .mobile-menu-eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.mobile-menu-footer {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.mobile-menu.is-open .mobile-menu-footer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.55s;
}

.mobile-menu-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
}

/* ═══ BUTTONS ═══ */
.btn-primary {
  display: inline-block;
  padding: 15px 38px;
  background: linear-gradient(120deg, var(--gold) 0%, var(--gold-light) 55%, var(--gold) 100%);
  background-size: 200% 100%;
  color: #1a1a1a;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-shadow: 0 8px 28px -8px rgba(201,165,90,0.45);
  transition: background-position 0.6s var(--ease-out), box-shadow 0.4s var(--ease-out);
  will-change: transform;
}

.btn-primary:hover {
  background-position: 100% 0;
  box-shadow: 0 14px 36px -8px rgba(201,165,90,0.6);
}

.btn-secondary {
  display: inline-block;
  padding: 14px 38px;
  border: 1px solid var(--border);
  color: var(--text-muted);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 2px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, color 0.4s;
  will-change: transform;
}

.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201,165,90,0.08);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}

.btn-secondary:hover { border-color: var(--gold); color: var(--gold); }
.btn-secondary:hover::before { transform: scaleX(1); }

/* ═══ SECTION SYSTEM ═══ */
section { position: relative; }

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 70px 40px;
}

.section-label {
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 560px;
  margin-bottom: 60px;
}

/* ═══ HERO ═══ */
#hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 120px 40px 80px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 50% at 50% 110%, rgba(201,165,90,0.05), transparent 60%),
    var(--bg);
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 55% at 50% 38%, rgba(201,165,90,0.09) 0%, transparent 65%),
    radial-gradient(ellipse 30% 30% at 18% 75%, rgba(223,192,122,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.eyebrow-mobile { display: none; }
.eyebrow-desktop { display: inline; }

@media (max-width: 480px) {
  .eyebrow-mobile { display: inline; }
  .eyebrow-desktop { display: none; }
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}

.hero-logo {
  max-width: min(700px, 90vw);
  width: 100%;
  height: auto;
  margin-bottom: 40px;
  opacity: 0;
  animation: heroLogoIn 1.4s var(--ease-out) 0.4s forwards;
  filter: drop-shadow(0 0 50px rgba(184,151,74,0.2));
  will-change: transform, opacity;
}

.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-bottom: 56px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.7s forwards;
}

.hero-tagline span { color: var(--gold-light); font-style: normal; }

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 0; right: 0;
  margin: 0 auto;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.3s forwards;
}

.hero-scroll span {
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

/* ═══ REZERWACJA (dark) ═══ */
#rezerwacja {
  background:
    radial-gradient(ellipse 45% 45% at 82% 20%, rgba(201,165,90,0.06), transparent 65%),
    var(--bg);
}

.rezerwacja-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.rez-panel {
  background: linear-gradient(160deg, var(--bg3) 0%, var(--bg2) 70%);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(201,165,90,0.08);
  border-radius: 3px;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.4s;
}

.rez-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(201,165,90,0.22);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}

.rez-panel.gold-accent {
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(201,165,90,0.12), transparent 60%),
    linear-gradient(160deg, #2c2620 0%, var(--bg2) 75%);
  border-top: 2px solid var(--gold);
}

.rez-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.rez-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 16px;
}

.rez-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 40px;
  flex-grow: 1;
  line-height: 1.8;
}

.rez-details {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.rez-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.rez-detail::before {
  content: '';
  width: 20px; height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.rez-legal {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-top: 14px;
  line-height: 1.6;
  opacity: 0.75;
}

.rez-legal a { color: var(--gold); text-decoration: underline; }

/* ═══ LIGHT BAND — color blocking ═══ */
.light-band {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(ellipse 60% 40% at 85% 10%, rgba(255,255,255,0.5), transparent 60%),
    linear-gradient(175deg, var(--cream) 0%, var(--cream-2) 100%);
  color: var(--ink);
  margin-top: -48px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -30px 60px -30px rgba(0,0,0,0.5);
  z-index: 2;
}

.light-band::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, rgba(34,29,22,0.06));
  pointer-events: none;
}

.section-light .section-title { color: var(--ink); }
.section-light .section-label { color: var(--gold-deep); }
.section-light .section-subtitle { color: var(--ink-muted); }

/* ─── JAK TO DZIAŁA (light, bento) ─── */
.kroki-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.krok {
  background: var(--cream-card);
  padding: 44px 36px;
  position: relative;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.krok-raised { transform: translateY(-22px); }

.krok:hover {
  transform: translateY(-10px);
  box-shadow: 0 44px 90px -20px rgba(80,62,30,0.32), 0 10px 28px -8px rgba(80,62,30,0.14);
}
.krok-raised:hover { transform: translateY(-32px); }

.krok-numer {
  font-family: "Cormorant Garamond", serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(154,122,53,0.28);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.4s var(--ease-out);
}

.krok:hover .krok-numer { color: var(--gold-deep); }

.krok-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 10px;
  color: var(--ink);
}

.krok-desc {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.7;
}

/* ─── O SALONIE (light) ─── */
#o-salonie .container { padding-top: 32px; }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.about-text p {
  color: var(--ink-muted);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

.about-stat {
  display: flex;
  gap: 56px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-deep);
  line-height: 1;
  display: inline-block;
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.about-right { position: relative; }

.torywrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.tor {
  padding: 34px 36px;
  background: var(--cream-card);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  border-left: 2px solid rgba(154,122,53,0.3);
  transition: transform 0.6s var(--ease-out), border-color 0.4s, box-shadow 0.6s var(--ease-out);
}

.tor:hover { border-left-color: var(--gold-deep); transform: translateX(8px); }

/* dark card inside light section — layering accent */
.tor-dark {
  background: linear-gradient(150deg, var(--bg3), var(--bg2));
  border-left: 2px solid var(--gold);
  margin-right: -24px;
  box-shadow: 0 30px 70px -18px rgba(34,29,22,0.5);
}

.tor-dark .tor-name { color: var(--text); }
.tor-dark .tor-desc { color: var(--text-muted); }

.tor-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--ink);
}

.tor-desc {
  font-size: 0.8rem;
  color: var(--ink-muted);
  letter-spacing: 0.05em;
}

/* ─── OPINIE (light) ─── */
#opinie .container { padding-top: 32px; padding-bottom: 140px; }

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

.opinia {
  background: var(--cream-card);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out);
}

.opinia-raised { transform: translateY(26px); }

.opinia:hover {
  transform: translateY(-8px);
  box-shadow: 0 44px 90px -20px rgba(80,62,30,0.3), 0 10px 28px -8px rgba(80,62,30,0.14);
}
.opinia-raised:hover { transform: translateY(16px); }

.opinia-tekst {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink-muted);
  line-height: 1.7;
  flex-grow: 1;
}

.opinia-tekst::before {
  content: "\201C";
  color: var(--gold-deep);
  font-size: 1.5rem;
  line-height: 0;
  vertical-align: -0.3em;
  margin-right: 4px;
}

.opinia-autor {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.opinia-gwiazdki {
  color: var(--gold-deep);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* CTA under reviews */
.opinie-cta {
  margin: 48px auto 0;
  display: block;
  width: fit-content;
}

/* btn-secondary variant on light background */
.section-light .btn-secondary {
  border-color: rgba(154,122,53,0.4);
  color: var(--ink-muted);
}

.section-light .btn-secondary:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

.section-light .btn-secondary::before {
  background: rgba(154,122,53,0.08);
}

/* ═══ CENNIK (dark, overlaps light band) ═══ */
#cennik {
  background:
    radial-gradient(ellipse 50% 40% at 15% 10%, rgba(201,165,90,0.07), transparent 60%),
    radial-gradient(ellipse 40% 35% at 90% 80%, rgba(201,165,90,0.05), transparent 65%),
    var(--bg);
  margin-top: -80px;
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -30px 70px -25px rgba(0,0,0,0.6);
  position: relative;
  z-index: 3;
  isolation: isolate;
  overflow: hidden;
}

.cennik-glow {
  position: absolute;
  top: -120px; left: 50%;
  width: 700px; height: 380px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(201,165,90,0.08), transparent 70%);
  pointer-events: none;
}

.cennik-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cennik-panel {
  background: linear-gradient(165deg, var(--bg3) 0%, var(--bg2) 80%);
  padding: 48px 40px;
  border: 1px solid rgba(201,165,90,0.08);
  border-radius: 4px;
  transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.4s;
}

.cennik-panel:hover {
  transform: translateY(-6px);
  border-color: rgba(201,165,90,0.24);
  box-shadow: 0 26px 60px -18px rgba(0,0,0,0.5);
}

.cennik-panel.full-width { grid-column: 1 / -1; }

.price-columns {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0 40px;
}

.panel-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 32px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.panel-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  color: var(--border);
  line-height: 1;
}

.panel-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
}

.cennik-note {
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  gap: 16px;
  transition: padding-left 0.3s var(--ease-out);
}

.price-row:last-child { border-bottom: none; }
.price-row:hover { padding-left: 10px; }
.price-row:hover .price-value { color: var(--gold-light); }

.price-name {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 300;
}

.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  transition: color 0.3s;
}

.price-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 16px;
  font-style: italic;
}

/* ═══ KONTAKT (dark) ═══ */
#kontakt {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

#kontakt .container { padding-bottom: 60px; }

.mapa-wrap {
  margin-top: 48px;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(201,165,90,0.1);
  filter: grayscale(0.4) sepia(0.12);
  transition: filter 0.6s var(--ease-out);
}

.mapa-wrap:hover { filter: grayscale(0) sepia(0); }

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
}

.kontakt-block {
  background: linear-gradient(165deg, var(--bg3), var(--bg2));
  padding: 40px 32px;
  border: 1px solid rgba(201,165,90,0.08);
  border-radius: 4px;
  transition: border-color 0.4s, transform 0.6s var(--ease-out);
}

.kontakt-block:hover {
  border-color: rgba(201,165,90,0.22);
  transform: translateY(-4px);
}

.kontakt-label {
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.kontakt-label-spaced { margin-top: 24px; }

.kontakt-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  line-height: 1.6;
}

.kontakt-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}

.kontakt-value a:hover { color: var(--gold); }

.godziny-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 4px;
}

.godziny-day { color: var(--text); }

/* ═══ FOOTER ═══ */
footer {
  max-width: 1140px;
  margin: 0 auto;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
}

footer p {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.legal-footer-links {
  text-align: center;
  padding: 12px 20px;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  color: rgba(154,154,154,0.5);
  background: var(--bg);
}

.legal-footer-links a {
  color: rgba(184,151,74,0.5);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s;
}

.legal-footer-links a:hover { color: var(--gold); }

.credit-bar {
  background: var(--bg);
  border-top: 1px solid rgba(201,165,90,0.08);
  padding: 16px 40px;
  text-align: center;
}

.credit-bar a {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201,165,90,0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.credit-bar a:hover { color: var(--gold); }

/* ═══ REVEAL SYSTEM ═══ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  transition-delay: calc(var(--d, 0) * 0.12s);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* raised cards keep their offset after reveal */
.krok-raised.reveal.visible { transform: translateY(-22px); }
.opinia-raised.reveal.visible { transform: translateY(26px); }

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

@keyframes heroLogoIn {
  from { opacity: 0; transform: translateY(30px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-left, .reveal-right { opacity: 1; transform: none; }
}

/* ═══ MOBILE ═══ */
@media (max-width: 900px) {
  .kroki-grid, .opinie-grid { grid-template-columns: 1fr; }
  .krok-raised, .opinia-raised { transform: none; }
  .krok-raised.reveal.visible, .opinia-raised.reveal.visible { transform: translateY(0); }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .tor-dark { margin-right: 0; }
}

@media (max-width: 768px) {
  nav { padding: 16px 20px; }
  nav.is-scrolled { padding: 12px 20px; }
  .nav-logo img { height: 32px; }
  .nav-links { display: none; }
  .nav-burger { display: block; }

  .container { padding: 50px 20px; }
  #hero { padding: 100px 20px 60px; }

  .rezerwacja-grid,
  .cennik-grid,
  .kontakt-grid { grid-template-columns: 1fr; }

  .cennik-panel.full-width { grid-column: 1; }

  .rez-panel { padding: 40px 28px; }
  .rez-title { font-size: 1.6rem; }

  .btn-secondary {
    font-size: 0.68rem;
    padding: 13px 20px;
    letter-spacing: 0.15em;
  }

  footer { flex-direction: column; gap: 12px; text-align: center; }

  .hero-cta { flex-direction: column; align-items: center; width: 100%; }
  .hero-cta .btn-primary, .hero-cta .btn-secondary {
    width: 100%; max-width: 300px; text-align: center;
  }

  .hero-scroll { display: none; }

  .light-band { margin-top: -32px; border-radius: 20px 20px 0 0; }
  #cennik { margin-top: -48px; border-radius: 20px 20px 0 0; }
  #opinie .container { padding-bottom: 100px; }
  #o-salonie .container, #opinie .container { padding-top: 20px; }
  .opinie-cta { margin-top: 36px; }
}
