/* ============================================================
   ARTEM BEAUTY — premium nail salon, Bjelovar
   ============================================================ */

:root {
  --noir:        #0b0807;
  --noir-2:      #15110e;
  --noir-3:      #1f1915;
  --cream:       #f5ede4;
  --cream-2:     #ebe0d2;
  --blush:       #f4dadc;
  --blush-2:     #f9e8e9;
  --gold:        #d4ad7a;
  --gold-2:      #e8c89a;
  --gold-deep:   #a07f53;
  --red:         #8c2230;
  --red-soft:    #b5384a;
  --line:        rgba(245, 237, 228, 0.12);
  --line-dark:   rgba(11, 8, 7, 0.12);
  --muted:       #a89a8c;
  --muted-dark:  #6e6258;

  --ease:        cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);

  --pad-x: clamp(20px, 5vw, 80px);
  --pad-y: clamp(80px, 12vw, 160px);
}

* { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }
html { scroll-behavior: smooth; }
body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--cream);
  color: var(--noir);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

/* ---------- Typography ---------- */
.font-script { font-family: "Pinyon Script", cursive; font-weight: 400; }
.font-display { font-family: "Italiana", serif; font-weight: 400; letter-spacing: 0.01em; }
.font-italic  { font-family: "Cormorant Garamond", serif; font-style: italic; font-weight: 400; }
.font-ui      { font-family: "Manrope", sans-serif; }

.eyebrow {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}

h1, h2, h3, h4 {
  font-family: "Italiana", serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.02;
}

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: .08s; }
.reveal.delay-2 { transition-delay: .16s; }
.reveal.delay-3 { transition-delay: .24s; }
.reveal.delay-4 { transition-delay: .32s; }

/* Split words for headline reveal */
.split .word { display: inline-block; overflow: hidden; vertical-align: top; }
.split .word > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease-out); }
.split.is-in .word > span { transform: translateY(0); }
.split .word:nth-child(2) > span { transition-delay: .06s; }
.split .word:nth-child(3) > span { transition-delay: .12s; }
.split .word:nth-child(4) > span { transition-delay: .18s; }
.split .word:nth-child(5) > span { transition-delay: .24s; }
.split .word:nth-child(6) > span { transition-delay: .30s; }
.split .word:nth-child(7) > span { transition-delay: .36s; }

/* ---------- Cursor halo (desktop) ---------- */
.cursor-halo {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(212, 173, 122, 0.18), transparent 60%);
  transform: translate(-50%, -50%);
  mix-blend-mode: screen;
  transition: opacity .4s var(--ease);
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  body:not(.no-halo) .cursor-halo { opacity: 1; }
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 22px var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  transition: background .5s var(--ease), padding .4s var(--ease), backdrop-filter .4s var(--ease);
  color: var(--cream);
}
.nav.is-scrolled {
  background: rgba(11, 8, 7, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding-top: 14px; padding-bottom: 14px;
  border-bottom: 1px solid rgba(212, 173, 122, 0.12);
}
.nav.is-light:not(.is-scrolled) { color: var(--cream); }

.nav__brand {
  display: flex; align-items: baseline; gap: 10px;
  z-index: 2;
}
.nav__brand .script {
  font-family: "Pinyon Script", cursive;
  font-size: 36px;
  line-height: 1;
  color: var(--gold);
}
.nav__brand .tag {
  font-size: 9px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: currentColor;
  opacity: 0.7;
}

.nav__menu {
  display: flex; gap: 36px;
  list-style: none;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav__menu a {
  position: relative; padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav__menu a::after {
  content: ""; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right center;
  transition: transform .5s var(--ease);
}
.nav__menu a:hover::after { transform: scaleX(1); transform-origin: left center; }

.nav__cta {
  padding: 12px 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.nav__cta:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.nav__cta .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4cd07a; box-shadow: 0 0 0 0 rgba(76, 208, 122, 0.6);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(76, 208, 122, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(76, 208, 122, 0); }
  100% { box-shadow: 0 0 0 0 rgba(76, 208, 122, 0); }
}

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  z-index: 2;
}
.nav__burger span {
  display: block; width: 24px; height: 1px;
  background: currentColor;
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px;
  background: currentColor;
  transition: transform .3s var(--ease);
}
.nav__burger span::before { top: -7px; }
.nav__burger span::after { top: 7px; }
.nav__burger.is-open span { background: transparent; }
.nav__burger.is-open span::before { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-open span::after { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0;
  background: var(--noir);
  color: var(--cream);
  z-index: 99;
  padding: 110px var(--pad-x) 40px;
  transform: translateY(-100%);
  transition: transform .6s var(--ease);
  display: flex; flex-direction: column; justify-content: space-between;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu a {
  font-family: "Italiana", serif;
  font-size: 40px;
  line-height: 1.1;
  display: inline-block;
  position: relative;
}
.mobile-menu .num {
  font-family: "Manrope", sans-serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}
.mobile-menu .meta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex; flex-direction: column; gap: 8px;
}
.mobile-menu .meta strong { color: var(--gold); font-weight: 500; }

@media (max-width: 880px) {
  .nav__menu { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: inline-flex; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100svh;
  background: var(--noir);
  color: var(--cream);
  overflow: hidden;
  display: flex; align-items: flex-end;
  padding: 0 var(--pad-x) clamp(40px, 6vw, 80px);
}
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(0.85) contrast(1.05);
  transform: scale(1.05);
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(212, 173, 122, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(11,8,7,0.55) 0%, rgba(11,8,7,0.2) 30%, rgba(11,8,7,0.5) 65%, rgba(11,8,7,0.92) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.08; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.4 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}
.hero__headline {
  font-family: "Italiana", serif;
  font-size: clamp(56px, 11vw, 184px);
  line-height: 0.92;
  letter-spacing: -0.005em;
  font-weight: 400;
  text-transform: uppercase;
}
.hero__headline em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  color: var(--gold-2);
  letter-spacing: -0.01em;
}
.hero__sub {
  margin-top: 28px;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.82;
}
.hero__meta {
  display: flex; flex-direction: column; gap: 28px;
  align-items: flex-end;
  text-align: right;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__meta .row { display: flex; flex-direction: column; gap: 4px; }
.hero__meta strong { color: var(--gold); font-weight: 500; letter-spacing: 0.18em; }
.hero__meta .stars { font-size: 14px; color: var(--gold); letter-spacing: 4px; }

.hero__scroll {
  position: absolute;
  bottom: 24px; left: 50%; transform: translateX(-50%);
  z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--cream); opacity: 0.7;
}
.hero__scroll .line {
  width: 1px; height: 56px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  position: relative; overflow: hidden;
}
.hero__scroll .line::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: linear-gradient(to bottom, transparent, var(--cream));
  animation: scroll-tick 2.4s var(--ease) infinite;
}
@keyframes scroll-tick {
  0% { transform: translateY(0); }
  100% { transform: translateY(300%); }
}

@media (max-width: 720px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__meta { align-items: flex-start; text-align: left; flex-direction: row; gap: 32px; flex-wrap: wrap; }
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--noir);
  color: var(--cream);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 22px 0;
  font-family: "Italiana", serif;
  font-size: clamp(28px, 4.5vw, 56px);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.marquee__track {
  display: flex; gap: 60px;
  animation: marquee 28s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee__track span { display: inline-flex; align-items: center; gap: 60px; }
.marquee__track .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--gold);
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   FEATURED — "Novi set, nova energija"
   ============================================================ */
.featured {
  padding: var(--pad-y) var(--pad-x);
  background: linear-gradient(135deg, var(--blush) 0%, var(--blush-2) 60%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(212, 173, 122, 0.15), transparent 55%);
  pointer-events: none;
}
.featured__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  max-width: 1500px; margin: 0 auto;
}
.featured__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(140, 34, 48, 0.25);
}
.featured__image img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease);
}
.featured.is-in .featured__image img { transform: scale(1); }
.featured__image::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(140,34,48,0.1) 100%);
}
.featured__sparkle {
  position: absolute;
  font-size: 24px; color: var(--gold-deep);
  animation: sparkle 3s var(--ease) infinite;
}
.featured__sparkle.s1 { top: 8%; left: 8%; }
.featured__sparkle.s2 { top: 12%; right: 12%; font-size: 18px; animation-delay: .5s; }
.featured__sparkle.s3 { bottom: 18%; left: 12%; font-size: 14px; animation-delay: 1s; }
@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8) rotate(0deg); }
  50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

.featured__content { padding: 20px 0; }
.featured__title {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1;
  color: var(--noir);
  margin: 24px 0 16px;
}
.featured__title em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--red);
}
.featured__lead {
  font-size: 17px; line-height: 1.7;
  color: var(--noir-3);
  margin-bottom: 36px; max-width: 460px;
}

.price-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.price-card {
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  padding: 22px 24px;
  border-radius: 14px;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  position: relative;
  overflow: hidden;
}
.price-card::before {
  content: ""; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
  transition: left .8s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -15px rgba(140, 34, 48, 0.2); }
.price-card:hover::before { left: 100%; }
.price-card__label {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
  color: var(--noir-3);
}
.price-card__price {
  font-family: "Italiana", serif;
  font-size: 44px;
  line-height: 1;
  color: var(--red);
  margin-top: 6px;
}
.price-card__price .euro { font-size: 28px; vertical-align: top; }

.featured__cta {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase;
  font-weight: 600;
  color: var(--noir);
  padding: 18px 32px;
  border: 1px solid var(--noir);
  border-radius: 999px;
  transition: background .4s var(--ease), color .4s var(--ease), gap .4s var(--ease);
}
.featured__cta:hover { background: var(--noir); color: var(--cream); gap: 18px; }
.featured__cta svg { width: 16px; height: 16px; }

@media (max-width: 820px) {
  .featured__grid { grid-template-columns: 1fr; gap: 40px; }
  .featured__image { max-width: 480px; margin: 0 auto; }
}
@media (max-width: 420px) {
  .price-cards { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
}
.section-head {
  max-width: 1400px; margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 30px;
}
.section-head__left { display: flex; flex-direction: column; gap: 20px; }
.section-head h2 {
  font-size: clamp(44px, 6.5vw, 96px);
  color: var(--noir);
  text-transform: uppercase;
}
.section-head h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-deep);
  text-transform: none;
}
.section-head__right {
  font-size: 14px; line-height: 1.7;
  max-width: 320px;
  color: var(--muted-dark);
}

.services__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-dark);
}
.service {
  position: relative;
  padding: 36px 28px 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  overflow: hidden;
  transition: background .5s var(--ease), box-shadow .6s var(--ease), transform .6s var(--ease);
  cursor: pointer;
  min-height: 420px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.service:nth-child(4n) { border-right: 0; }
.service__num {
  font-size: 11px; letter-spacing: 0.32em;
  color: var(--gold-deep);
  font-weight: 500;
}
.service__title {
  font-family: "Italiana", serif;
  font-size: 36px;
  line-height: 1.05;
  color: var(--noir);
  text-transform: uppercase;
  margin-top: 18px;
  transition: transform .5s var(--ease), color .5s var(--ease);
}
.service__desc {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-dark);
  max-width: 280px;
}
.service__price {
  margin-top: 28px;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--noir);
  display: flex; align-items: baseline; gap: 8px;
}
.service__price .from { color: var(--muted-dark); }
.service__price .v {
  font-family: "Italiana", serif;
  font-size: 28px;
  color: var(--gold-deep);
  letter-spacing: 0;
}
.service__bg {
  position: absolute; inset: 0;
  z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transition: opacity .8s var(--ease);
  pointer-events: none;
}
.service > * { position: relative; z-index: 1; }

/* Subtle hover: gold glow + slight lift, text stays readable */
.service:hover {
  background: linear-gradient(180deg, rgba(212, 173, 122, 0.06) 0%, rgba(212, 173, 122, 0.02) 100%);
  box-shadow: inset 0 0 0 1px rgba(212, 173, 122, 0.18),
              0 20px 40px -20px rgba(212, 173, 122, 0.25);
  transform: translateY(-2px);
}
.service:hover .service__title { transform: translateX(6px); color: var(--gold-deep); }

@media (max-width: 1100px) {
  .services__grid { grid-template-columns: repeat(2, 1fr); }
  .service:nth-child(4n) { border-right: 1px solid var(--line-dark); }
  .service:nth-child(2n) { border-right: 0; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service { border-right: 0 !important; min-height: 320px; }
  .section-head { grid-template-columns: 1fr; }
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: var(--pad-y) var(--pad-x);
  background: var(--noir);
  color: var(--cream);
}
.gallery .section-head h2 { color: var(--cream); }
.gallery .section-head h2 em { color: var(--gold); }
.gallery .section-head__right { color: var(--muted); }

.gallery__filter {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-bottom: 36px;
  max-width: 1400px; margin-left: auto; margin-right: auto;
}
.gallery__filter button {
  padding: 10px 20px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  transition: all .4s var(--ease);
}
.gallery__filter button:hover { border-color: var(--gold); }
.gallery__filter button.is-active { background: var(--gold); color: var(--noir); border-color: var(--gold); }

.gallery__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.gallery__item {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  transition: transform .8s var(--ease), opacity .5s var(--ease), grid-column .6s var(--ease);
}
.gallery__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item.is-hidden { opacity: 0; pointer-events: none; transform: scale(0.95); position: absolute; }

.gallery__item.size-tall   { grid-column: span 4; aspect-ratio: 3/4; }
.gallery__item.size-wide   { grid-column: span 8; aspect-ratio: 4/3; }
.gallery__item.size-square { grid-column: span 4; aspect-ratio: 1/1; }
.gallery__item.size-big    { grid-column: span 6; aspect-ratio: 4/5; }

.gallery__item .caption {
  position: absolute; left: 18px; bottom: 18px; right: 18px;
  display: flex; justify-content: space-between; align-items: flex-end;
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
}
.gallery__item:hover .caption { opacity: 1; transform: none; }
.gallery__item .caption .name { color: var(--cream); }
.gallery__item .caption .tag { color: var(--gold); }
.gallery__item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(11,8,7,0.7) 100%);
  opacity: 0; transition: opacity .5s var(--ease);
}
.gallery__item:hover::after { opacity: 1; }

@media (max-width: 900px) {
  .gallery__grid { grid-template-columns: repeat(6, 1fr); }
  .gallery__item.size-tall   { grid-column: span 3; }
  .gallery__item.size-wide   { grid-column: span 6; }
  .gallery__item.size-square { grid-column: span 3; }
  .gallery__item.size-big    { grid-column: span 6; }
}
@media (max-width: 540px) {
  .gallery__grid { grid-template-columns: 1fr 1fr; }
  .gallery__item.size-tall, .gallery__item.size-wide,
  .gallery__item.size-square, .gallery__item.size-big { grid-column: span 1; aspect-ratio: 3/4; }
  .gallery__item.size-wide { grid-column: span 2; aspect-ratio: 4/3; }
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(11, 8, 7, 0.96);
  backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 60px 80px;
  opacity: 0; pointer-events: none;
  transition: opacity .5s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox img {
  max-width: 90vw; max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  transform: scale(0.96);
  transition: transform .6s var(--ease);
}
.lightbox.is-open img { transform: scale(1); }
.lightbox__close, .lightbox__nav {
  position: absolute;
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: background .4s var(--ease), color .4s var(--ease);
}
.lightbox__close { top: 24px; right: 24px; }
.lightbox__nav.prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__nav.next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox__close:hover, .lightbox__nav:hover { background: var(--gold); color: var(--noir); }
.lightbox__counter {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  font-size: 12px; letter-spacing: 0.3em; color: var(--gold);
}

/* ============================================================
   PRICING (interactive cjenik)
   ============================================================ */
.pricing {
  padding: var(--pad-y) var(--pad-x);
  background: var(--noir);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 173, 122, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 173, 122, 0.04), transparent 60%);
  pointer-events: none;
}
.pricing__inner {
  max-width: 1400px; margin: 0 auto;
  position: relative;
}
.pricing .section-head h2 { color: var(--cream); }
.pricing .section-head h2 em { color: var(--gold); }
.pricing .section-head__right { color: var(--muted); }

.pricing__layout {
  display: grid;
  grid-template-columns: 280px 1fr 340px;
  gap: 48px;
  align-items: start;
}

/* Tab list */
.pricing__tabs { display: flex; flex-direction: column; gap: 2px; border-left: 1px solid var(--line); }
.pricing__tab {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 18px 20px;
  text-align: left;
  font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase;
  font-weight: 500;
  color: var(--muted);
  border-left: 1px solid transparent;
  margin-left: -1px;
  position: relative;
  transition: color .4s var(--ease), border-color .4s var(--ease);
}
.pricing__tab .arrow {
  opacity: 0; transform: translateX(-4px);
  transition: opacity .4s var(--ease), transform .4s var(--ease);
  color: var(--gold);
}
.pricing__tab:hover { color: var(--cream); }
.pricing__tab.is-active {
  color: var(--gold);
  border-left-color: var(--gold);
}
.pricing__tab.is-active .arrow { opacity: 1; transform: none; }

/* Tab panel */
.pricing__panel {
  min-height: 480px;
  position: relative;
}
.pricing__panel-inner { animation: fadeUp .6s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}
.pricing__cat {
  font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pricing__name {
  font-family: "Italiana", serif;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1;
  margin-bottom: 32px;
  text-transform: uppercase;
}
.pricing__name em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  text-transform: none;
  color: var(--gold);
}

.pricing__items { display: flex; flex-direction: column; }
.price-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  position: relative;
  transition: padding .4s var(--ease);
}
.price-row:hover { padding-left: 12px; }
.price-row::before {
  content: ""; position: absolute; left: 0; top: 50%; width: 0; height: 1px;
  background: var(--gold);
  transition: width .4s var(--ease);
  transform: translateY(-50%);
}
.price-row:hover::before { width: 6px; }
.price-row__label {
  display: flex; flex-direction: column; gap: 4px;
}
.price-row__label .t {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  line-height: 1.1;
}
.price-row__label .d {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
}
.price-row__val {
  font-family: "Italiana", serif;
  font-size: 32px;
  color: var(--gold);
  letter-spacing: 0;
  line-height: 1;
}
.price-row__val .euro { font-size: 20px; vertical-align: top; margin-left: 2px; }
.price-row__add {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  transition: background .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease), transform .4s var(--ease);
  flex-shrink: 0;
}
.price-row__add svg { width: 14px; height: 14px; transition: transform .4s var(--ease); }
.price-row__add:hover { background: var(--gold); color: var(--noir); border-color: var(--gold); }
.price-row.is-added .price-row__add {
  background: var(--gold); color: var(--noir); border-color: var(--gold);
}
.price-row.is-added .price-row__add svg { transform: rotate(45deg); }

.pricing__notes {
  margin-top: 28px;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(245, 237, 228, 0.03);
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
}
.pricing__notes strong { color: var(--gold); font-weight: 500; }

/* Cart */
.pricing__cart {
  position: sticky; top: 100px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px;
  background: rgba(31, 25, 21, 0.5);
  backdrop-filter: blur(10px);
}
.cart__title {
  font-family: "Italiana", serif;
  font-size: 22px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.cart__sub {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.cart__list {
  display: flex; flex-direction: column;
  min-height: 100px;
  max-height: 280px;
  overflow-y: auto;
  margin-bottom: 18px;
}
.cart__list::-webkit-scrollbar { width: 4px; }
.cart__list::-webkit-scrollbar-thumb { background: var(--gold-deep); border-radius: 2px; }
.cart__empty {
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  padding: 40px 0;
  font-family: "Cormorant Garamond", serif;
}
.cart__item {
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  animation: slideIn .4s var(--ease);
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(8px); }
  to { opacity: 1; transform: none; }
}
.cart__item-name {
  flex: 1;
  font-size: 13px;
  line-height: 1.3;
}
.cart__item-name .d { display: block; font-size: 11px; color: var(--muted); }
.cart__item-price {
  font-family: "Italiana", serif;
  font-size: 18px;
  color: var(--gold);
}
.cart__item-remove {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  font-size: 14px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.cart__item-remove:hover { color: var(--cream); background: rgba(245,237,228,0.08); }

.cart__total {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--gold);
  margin-bottom: 18px;
}
.cart__total .l { font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted); }
.cart__total .v {
  font-family: "Italiana", serif;
  font-size: 44px;
  color: var(--gold);
}
.cart__total .v .euro { font-size: 26px; vertical-align: top; }

.cart__cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 999px;
  background: var(--gold);
  color: var(--noir);
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 600;
  transition: background .4s var(--ease), gap .4s var(--ease);
}
.cart__cta:hover { background: var(--cream); gap: 16px; }
.cart__cta:disabled { opacity: 0.4; cursor: not-allowed; }
.cart__hint {
  font-size: 11px; color: var(--muted); text-align: center;
  margin-top: 12px; line-height: 1.5;
}

@media (max-width: 1100px) {
  .pricing__layout { grid-template-columns: 220px 1fr; }
  .pricing__cart { grid-column: 1 / -1; position: relative; top: 0; margin-top: 32px; }
}
@media (max-width: 720px) {
  .pricing__layout { grid-template-columns: 1fr; gap: 28px; }
  .pricing__tabs {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    border-left: 0; border-bottom: 1px solid var(--line);
    padding-bottom: 0;
    gap: 4px;
  }
  .pricing__tab {
    border-left: 0; border-bottom: 1px solid transparent;
    white-space: nowrap; padding: 14px 16px;
    margin-left: 0; margin-bottom: -1px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  .pricing__tab.is-active { border-left-color: transparent; border-bottom-color: var(--gold); }
  .pricing__tab .arrow { display: none; }
  .price-row { grid-template-columns: 1fr auto; gap: 12px; padding: 16px 0; }
  .price-row__val { grid-column: 2; }
  .price-row__add { grid-column: 2; grid-row: 1; justify-self: end; align-self: start; }
}

/* ============================================================
   SALON / ABOUT
   ============================================================ */
.salon {
  padding: var(--pad-y) var(--pad-x);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.salon__inner {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.salon__image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 8px;
  overflow: hidden;
}
.salon__image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s linear;
}
.salon.is-in .salon__image img { transform: scale(1.08); }
.salon__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(11, 8, 7, 0.85);
  backdrop-filter: blur(10px);
  color: var(--cream);
  padding: 16px 22px;
  border-radius: 8px;
  display: flex; flex-direction: column; gap: 4px;
  border: 1px solid var(--gold);
}
.salon__badge .l { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.salon__badge .t { font-family: "Italiana", serif; font-size: 22px; }

.salon__content h2 {
  font-size: clamp(48px, 7vw, 96px);
  text-transform: uppercase;
  color: var(--noir);
  margin: 20px 0 24px;
}
.salon__content h2 em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold-deep);
  text-transform: none;
}
.salon__content p {
  font-size: 16px; line-height: 1.75;
  color: var(--noir-3);
  max-width: 480px;
  margin-bottom: 20px;
}
.salon__sign {
  font-family: "Pinyon Script", cursive;
  font-size: 48px;
  color: var(--gold-deep);
  line-height: 1;
  margin-top: 12px;
}
.salon__role {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--muted-dark); margin-top: 8px;
}

.salon__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-dark);
}
.salon__stat .n {
  font-family: "Italiana", serif;
  font-size: 56px;
  color: var(--noir);
  line-height: 1;
}
.salon__stat .l {
  font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--muted-dark);
  margin-top: 8px;
}

@media (max-width: 880px) {
  .salon__inner { grid-template-columns: 1fr; gap: 50px; }
}

/* ============================================================
   CONTACT / FOOTER
   ============================================================ */
.footer {
  background: var(--noir);
  color: var(--cream);
  padding: var(--pad-y) var(--pad-x) 40px;
  position: relative;
  overflow: hidden;
}
.footer__big {
  font-family: "Italiana", serif;
  font-size: clamp(80px, 18vw, 280px);
  line-height: 0.9;
  letter-spacing: -0.005em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}
.footer__big em {
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  color: var(--gold);
  text-transform: none;
}

.footer__grid {
  max-width: 1400px; margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
  border-top: 1px solid var(--line);
}
.footer__col h4 {
  font-size: 11px; letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}
.footer__col p, .footer__col a {
  font-size: 14px;
  line-height: 1.8;
  color: var(--cream);
  opacity: 0.85;
}
.footer__col a:hover { color: var(--gold); opacity: 1; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 6px; }

.footer__brand .logo {
  font-family: "Pinyon Script", cursive;
  font-size: 56px;
  color: var(--gold);
  line-height: 1;
}
.footer__brand .sub {
  font-size: 10px; letter-spacing: 0.45em; text-transform: uppercase;
  color: var(--cream); opacity: 0.7;
  margin-top: -8px; margin-bottom: 20px;
}
.footer__brand p { max-width: 280px; opacity: 0.7; }

.footer__bottom {
  max-width: 1400px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__bottom a { color: var(--muted); }
.footer__bottom a:hover { color: var(--gold); }

@media (max-width: 880px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; gap: 14px; text-align: center; }
}
@media (max-width: 500px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   WhatsApp summary modal
   ============================================================ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(11, 8, 7, 0.85);
  backdrop-filter: blur(12px);
  opacity: 0; pointer-events: none;
  transition: opacity .4s var(--ease);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
}
.modal-overlay.is-open { opacity: 1; pointer-events: auto; }
.modal {
  background: var(--cream);
  color: var(--noir);
  border-radius: 12px;
  padding: 40px;
  max-width: 480px; width: 100%;
  transform: scale(0.96);
  transition: transform .5s var(--ease);
}
.modal-overlay.is-open .modal { transform: scale(1); }
.modal h3 {
  font-family: "Italiana", serif;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.modal h3 em { font-family: "Cormorant Garamond", serif; font-style: italic; color: var(--gold-deep); text-transform: none; }
.modal p { color: var(--muted-dark); margin-bottom: 24px; font-size: 14px; line-height: 1.6; }
.modal__summary {
  background: var(--noir);
  color: var(--cream);
  padding: 20px;
  border-radius: 8px;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 12px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-height: 200px;
  overflow-y: auto;
}
.modal__actions { display: flex; gap: 10px; flex-direction: column; }
.modal__actions a, .modal__actions button {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 600;
  text-align: center;
  border: 1px solid var(--noir);
  transition: background .4s var(--ease), color .4s var(--ease);
}
.modal__actions .wa { background: #25d366; color: white; border-color: #25d366; }
.modal__actions .wa:hover { background: #1ebe5a; }
.modal__actions .secondary:hover { background: var(--noir); color: var(--cream); }
