
/* ============ TOKENS ============ */
:root{
  --ink:#0E0D0C;
  --ink-2:#18160F;
  --ink-3:#221F16;
  --bone:#EAE6DD;
  --bone-dim:rgba(234,230,221,0.62);
  --gold:#C9A227;
  --gold-light:#E4C55D;
  --blood:#7C2C2C;
  --steel:#8C8A83;
  --line: rgba(234,230,221,0.14);
  --radius: 2px;
  --ff-display:'Anton', sans-serif;
  --ff-body:'Inter', sans-serif;
  --ff-mono:'Space Mono', monospace;
}

*{box-sizing:border-box; margin:0; padding:0;}
html{ scroll-behavior:smooth; overflow-x:hidden; width:100%; }
@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto;}
  *{animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important;}
}
body{
  font-family:var(--ff-body);
  background:var(--ink);
  color:var(--bone);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
  width:100%;
}
img,svg{display:block; max-width:100%;}
a{color:inherit; text-decoration:none;}
button{font-family:inherit; cursor:pointer;}
ul{list-style:none;}

.wrap{max-width:1200px; margin:0 auto; padding:0 32px;}
@media (max-width:640px){ .wrap{padding:0 20px;} }

.stripe{
  display:inline-block; width:26px; height:3px;
  background:linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  flex:none;
}
.eyebrow{
  font-family:var(--ff-mono);
  font-size:12px;
  letter-spacing:0.16em;
  text-transform:uppercase;
  color:var(--gold-light);
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:20px;
}

h1,h2,h3,h4{font-family:var(--ff-display); font-weight:400; line-height:0.98; letter-spacing:0.01em; text-transform:uppercase;}
.section-title{font-size:clamp(34px,4.6vw,54px);}
.section-sub{max-width:480px; color:var(--steel); font-size:15.5px; font-family:var(--ff-body); text-transform:none;}

section{position:relative;}
.pad{padding:120px 0;}
@media (max-width:900px){ .pad{padding:78px 0;} }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:16px 32px;
  font-family:var(--ff-mono);
  font-size:13px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  border:1px solid transparent;
  border-radius:var(--radius);
  transition:transform .35s cubic-bezier(.2,.8,.2,1), background .3s, color .3s, border-color .3s;
  white-space:nowrap;
}
.btn-primary{ background:var(--gold); color:var(--ink); font-weight:700; }
.btn-primary:hover{ background:var(--gold-light); transform:translateY(-2px); }
.btn-ghost{ background:transparent; color:var(--bone); border-color:rgba(234,230,221,0.3); }
.btn-ghost:hover{ border-color:var(--gold-light); color:var(--gold-light); transform:translateY(-2px); }
button:focus-visible, a:focus-visible, input:focus-visible{ outline:2px solid var(--gold); outline-offset:3px; }

.reveal{opacity:0; transform:translateY(28px); transition:opacity .8s ease, transform .8s cubic-bezier(.2,.8,.2,1);}
.reveal.in-view{opacity:1; transform:translateY(0);}

/* ============ NAV ============ */
header{
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding:24px 0;
  transition:padding .4s ease, background .4s ease, box-shadow .4s ease;
}
header.scrolled{
  padding:14px 0;
  background:rgba(14,13,12,0.92);
  backdrop-filter:blur(10px);
  box-shadow:0 1px 0 var(--line);
}
header .wrap{display:flex; align-items:center; justify-content:space-between;}
.logo{
  font-family:var(--ff-display); font-size:24px; letter-spacing:0.04em;
  display:flex; align-items:center; gap:12px; color:var(--bone);
}
.nav-links{display:flex; gap:36px; align-items:center;}
.nav-links a{
  font-family:var(--ff-mono); font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase;
  position:relative; padding:4px 0;
}
.nav-links a::after{
  content:""; position:absolute; left:0; bottom:-4px; height:2px; width:0;
  background:var(--gold); transition:width .3s ease;
}
.nav-links a:hover::after{width:100%;}
.nav-cta{display:flex; align-items:center; gap:22px;}
.burger{display:none; flex-direction:column; gap:5px; background:none; border:none;}
.burger span{width:24px; height:1px; background:var(--bone);}

@media (max-width:900px){
  .nav-links{
    position:fixed; inset:0 0 0 auto; width:78%; max-width:340px;
    background:var(--ink-2);
    flex-direction:column; justify-content:center; align-items:flex-start;
    padding:40px; gap:30px;
    transform:translateX(100%); transition:transform .45s cubic-bezier(.2,.8,.2,1);
    border-left:1px solid var(--line);
  }
  .nav-links.open{transform:translateX(0);}
  .nav-links a{font-size:20px; font-family:var(--ff-display); text-transform:uppercase;}
  .nav-cta .btn-primary{display:none;}
  .burger{display:flex;}
}

/* ============ HERO ============ */
.hero{
  min-height:100vh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  padding-top:100px;
}
.hero-bg{
  position:absolute; inset:0; z-index:0;
}
.hero-bg img{
  width:100%; height:100%; object-fit:cover; object-position:center 25%;
  filter:grayscale(85%) contrast(1.15) brightness(0.62);
}
.hero-bg::after{
  content:""; position:absolute; inset:0;
  background:
    linear-gradient(to top, rgba(14,13,12,0.98) 5%, rgba(14,13,12,0.55) 45%, rgba(14,13,12,0.35) 100%),
    linear-gradient(90deg, rgba(14,13,12,0.55) 0%, transparent 55%);
}
.hero-grain{
  position:absolute; inset:0; z-index:1;
  background-image:radial-gradient(rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size:3px 3px;
  pointer-events:none;
  mix-blend-mode:overlay;
}
.hero .wrap{position:relative; z-index:2; padding-bottom:8vh;}
.hero-eyebrow{
  font-family:var(--ff-mono); font-size:13px; letter-spacing:0.2em; text-transform:uppercase;
  color:var(--gold-light); display:flex; align-items:center; gap:14px; margin-bottom:22px;
}
.hero-title{
  font-size:clamp(52px,9.5vw,128px);
  color:var(--bone);
  max-width:900px;
}
.hero-title .out{ -webkit-text-stroke:1.5px var(--bone); color:transparent; }
.hero-lede{
  max-width:440px; color:var(--bone-dim); font-size:16px; margin:28px 0 36px;
  font-family:var(--ff-body); text-transform:none;
}
.hero-cta{display:flex; gap:16px; flex-wrap:wrap; align-items:center;}
.hero-trust{
  display:flex; align-items:center; gap:12px; margin-top:46px;
  font-family:var(--ff-mono); font-size:12.5px; color:var(--bone-dim); letter-spacing:0.03em;
}
.hero-trust b{ color:var(--gold-light); font-family:var(--ff-body); font-weight:700; }

/* ============ MARQUEE ============ */
.marquee-strip{
  background:var(--gold); color:var(--ink);
  overflow:hidden; white-space:nowrap;
  padding:18px 0;
  border-top:1px solid var(--ink); border-bottom:1px solid var(--ink);
}
.marquee-track{
  display:inline-flex; gap:40px;
  animation:marquee 22s linear infinite;
}
.marquee-track span{
  font-family:var(--ff-display); font-size:22px; letter-spacing:0.02em; text-transform:uppercase;
  display:inline-flex; align-items:center; gap:40px;
}
@keyframes marquee{ from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ============ USLUGE / PRICING ============ */
.price-grid{
  display:grid; grid-template-columns:1fr 1fr; gap:0 64px;
}
@media (max-width:800px){ .price-grid{grid-template-columns:1fr;} }
.price-col-title{
  font-family:var(--ff-mono); font-size:12px; letter-spacing:0.12em; text-transform:uppercase;
  color:var(--gold-light); padding-bottom:14px; border-bottom:1px solid var(--line); margin-bottom:6px;
}
.price-row{
  display:flex; justify-content:space-between; align-items:baseline; gap:20px;
  padding:20px 0; border-bottom:1px solid var(--line);
}
.price-row .pname{font-family:var(--ff-body); font-weight:600; font-size:16.5px;}
.price-row .pdur{font-family:var(--ff-mono); font-size:11.5px; color:var(--steel); margin-left:10px;}
.price-row .pval{font-family:var(--ff-mono); font-size:16px; color:var(--gold-light); white-space:nowrap;}

/* ============ GALERIJA (bento) ============ */
.bento{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  grid-auto-rows:120px;
  gap:14px;
}
.bento > div{min-width:0;}
.b1{ grid-column:1/3; grid-row:1/5; }
.b2{ grid-column:3/5; grid-row:1/3; }
.b3{ grid-column:3/4; grid-row:3/5; }
.b4{ grid-column:4/5; grid-row:3/5; }
.b5{ grid-column:1/3; grid-row:5/7; }
.b6{ grid-column:3/5; grid-row:5/7; }

.bento figure{
  margin:0; width:100%; height:100%; overflow:hidden; position:relative;
  border-radius:var(--radius);
}
.bento img{
  width:100%; height:100%; object-fit:cover;
  filter:grayscale(100%) contrast(1.05);
  transition:filter .6s ease, transform .6s cubic-bezier(.2,.8,.2,1);
}
.bento figure:hover img{ filter:grayscale(0%) contrast(1.05); transform:scale(1.05); }
.bento figcaption{
  position:absolute; left:0; right:0; bottom:0; padding:16px 18px;
  background:linear-gradient(to top, rgba(14,13,12,0.85), transparent);
  font-family:var(--ff-mono); font-size:11.5px; letter-spacing:0.04em; text-transform:uppercase;
  color:var(--bone); opacity:0; transform:translateY(6px);
  transition:opacity .35s ease, transform .35s ease;
}
.bento figure:hover figcaption{ opacity:1; transform:translateY(0); }

@media (max-width:760px){
  .bento{ grid-template-columns:repeat(2,1fr); grid-auto-rows:180px; }
  .b1,.b2,.b3,.b4,.b5,.b6{ grid-column:span 1; grid-row:span 1; }
  .b1{ grid-column:1/3; grid-row:span 2; }
}

/* ============ STATS BANNER ============ */
.stats-banner{
  position:relative; overflow:hidden;
  padding:100px 0;
  color:var(--bone);
}
.stats-bg{ position:absolute; inset:0; z-index:0; }
.stats-bg img{ width:100%; height:100%; object-fit:cover; filter:grayscale(100%) brightness(0.35); }
.stats-banner .wrap{ position:relative; z-index:1; }
.stats-row{
  display:grid; grid-template-columns:repeat(4,1fr); gap:30px;
}
@media (max-width:800px){ .stats-row{grid-template-columns:repeat(2,1fr);} }
.stat-item b{
  display:block; font-family:var(--ff-display); font-size:clamp(38px,5vw,58px); color:var(--gold-light);
}
.stat-item span{ font-family:var(--ff-mono); font-size:12px; text-transform:uppercase; letter-spacing:0.05em; color:var(--bone-dim); }

/* ============ BOOKING (step wizard) ============ */
.booker{
  background:var(--ink-2);
  border:1px solid var(--line);
  border-radius:4px;
  padding:48px;
  max-width:720px;
  margin:0 auto;
}
@media (max-width:640px){ .booker{padding:26px 20px;} }

/* progress stepper */
.stepper{
  display:flex; align-items:center; justify-content:center;
  margin-bottom:44px; gap:0;
}
.step-dot{
  display:flex; flex-direction:column; align-items:center; gap:8px;
  background:none; border:none; color:var(--steel); flex:none;
}
.step-dot .circ{
  width:34px; height:34px; border-radius:50%;
  border:1px solid var(--line); background:var(--ink);
  display:flex; align-items:center; justify-content:center;
  font-family:var(--ff-mono); font-size:13px; color:var(--steel);
  transition:all .3s ease;
}
.step-dot .lbl{ font-family:var(--ff-mono); font-size:10.5px; text-transform:uppercase; letter-spacing:0.05em; }
.step-dot.done .circ{ background:var(--gold); border-color:var(--gold); color:var(--ink); }
.step-dot.active .circ{ border-color:var(--gold); color:var(--gold-light); box-shadow:0 0 0 4px rgba(201,162,39,0.12); }
.step-dot.active .lbl{ color:var(--bone); }
.step-dot.clickable{ cursor:pointer; }
.step-conn{ width:clamp(24px,6vw,56px); height:1px; background:var(--line); margin:0 6px 20px; flex:none; }
.step-conn.done{ background:var(--gold); }

/* panels */
.b-panel{ display:none; }
.b-panel.active{ display:block; animation:panelIn .4s cubic-bezier(.2,.8,.2,1); }
@keyframes panelIn{ from{opacity:0; transform:translateX(14px);} to{opacity:1; transform:translateX(0);} }
.b-panel h3{
  font-family:var(--ff-body); font-weight:800; letter-spacing:-0.015em;
  font-size:23px; margin-bottom:26px; color:var(--bone); text-transform:none;
}
.back-btn{
  background:none; border:none; color:var(--steel); font-family:var(--ff-mono); font-size:12px;
  text-transform:uppercase; letter-spacing:0.06em; display:flex; align-items:center; gap:8px;
  margin-bottom:22px; padding:4px 0;
}
.back-btn:hover{ color:var(--gold-light); }

/* step 1: service cards */
.svc-list{ display:flex; flex-direction:column; gap:12px; }
.svc-card{
  display:flex; align-items:center; justify-content:space-between; gap:16px;
  padding:18px 20px; background:var(--ink); border:1px solid var(--line); border-radius:4px;
  text-align:left; transition:all .25s ease; min-width:0; color:var(--bone);
}
.svc-card:hover{ border-color:var(--gold); }
.svc-card.active{ border-color:var(--gold); background:rgba(201,162,39,0.08); }
.svc-icon{
  width:38px; height:38px; flex:none; border-radius:50%; background:var(--ink-3);
  display:flex; align-items:center; justify-content:center; color:var(--gold-light);
}
.svc-name{ font-family:var(--ff-body); font-weight:700; font-size:15.5px; }
.svc-main{ display:flex; align-items:center; gap:14px; min-width:0; }
.svc-price{ font-family:var(--ff-mono); font-size:14.5px; color:var(--gold-light); flex:none; }

/* step 2: date + time */
.date-strip-wrap{ position:relative; margin-bottom:30px; }
.date-strip-wrap::after{
  content:""; position:absolute; top:0; right:0; bottom:10px; width:28px;
  background:linear-gradient(to right, transparent, var(--ink-2) 85%);
  pointer-events:none;
}
.date-strip{
  display:flex; gap:10px; overflow-x:auto; padding-bottom:10px; margin-bottom:0;
  scrollbar-width:none; -ms-overflow-style:none;
}
.date-strip::-webkit-scrollbar{ display:none; }
.date-chip{
  flex:none; width:60px; text-align:center; padding:12px 4px;
  border:1px solid var(--line); border-radius:4px; background:var(--ink);
  font-family:var(--ff-body); color:var(--bone);
}
.date-chip .dow{display:block; font-size:10.5px; color:var(--steel); text-transform:uppercase; font-family:var(--ff-body); font-weight:600; letter-spacing:0.03em;}
.date-chip .dnum{display:block; font-size:18px; font-family:var(--ff-body); font-weight:700; margin-top:4px;}
.date-chip.active{background:var(--gold); color:var(--ink); border-color:var(--gold);}
.date-chip.active .dow{color:var(--ink);}
.date-chip:hover:not(.active){border-color:var(--gold);}

.time-group{ margin-bottom:26px; }
.time-group h4{
  font-family:var(--ff-mono); font-size:11.5px; text-transform:uppercase; letter-spacing:0.08em;
  color:var(--steel); margin-bottom:12px; font-weight:400;
}
.slot-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:10px;}
@media (max-width:480px){ .slot-grid{grid-template-columns:repeat(3,1fr);} }
.slot{
  padding:13px 4px; text-align:center; font-family:var(--ff-body); font-size:14px; font-weight:600;
  border:1px solid var(--line); border-radius:4px; background:var(--ink); color:var(--bone);
  transition:all .2s ease; min-height:44px;
}
.slot.taken{color:var(--steel); text-decoration:line-through; opacity:0.4; cursor:not-allowed; background:transparent;}
.slot.active{background:var(--gold); border-color:var(--gold); color:var(--ink); font-weight:700;}
.slot:not(.taken):not(.active):hover{border-color:var(--gold); color:var(--gold-light);}
.slot-message{
  grid-column:1 / -1;
  padding:10px 0 2px;
  color:var(--steel);
  font-family:var(--ff-mono);
  font-size:12px;
  text-align:center;
}
.slot-loading-text{
  color:var(--gold-light);
  letter-spacing:0.03em;
}
.slot-skeleton{
  min-height:44px;
  border:1px solid var(--line);
  border-radius:4px;
  background:
    linear-gradient(90deg, transparent, rgba(228,197,93,0.16), transparent),
    rgba(234,230,221,0.05);
  background-size:220% 100%, 100% 100%;
  animation:slotSkeletonShimmer 1.25s ease-in-out infinite;
}
@keyframes slotSkeletonShimmer{
  from{background-position:120% 0, 0 0;}
  to{background-position:-120% 0, 0 0;}
}
@media (prefers-reduced-motion: reduce){
  .slot-skeleton{animation:none;}
}

/* step 3: recap + form */
.recap-strip{
  display:flex; flex-wrap:wrap; gap:8px; margin-bottom:30px;
}
.recap-chip{
  padding:8px 14px; background:var(--ink); border:1px solid var(--line); border-radius:20px;
  font-family:var(--ff-body); font-weight:600; font-size:13px; color:var(--gold-light);
}
.recap-chip.mono{ font-family:var(--ff-mono); font-weight:400; font-size:12px; }
.b-form{ display:flex; flex-direction:column; gap:14px; }
.b-form input{
  width:100%; padding:15px 16px; background:var(--ink);
  border:1px solid var(--line); border-radius:4px; color:var(--bone);
  font-family:var(--ff-body); font-size:15px;
}
.b-form input::placeholder{color:var(--steel);}
.b-submit{width:100%; justify-content:center; margin-top:6px; padding:17px 20px;}
.b-error{font-size:12.5px; color:#E29B7A; font-family:var(--ff-mono); min-height:16px;}

/* step 4: confirmation */
.confirm-panel{ text-align:center; padding:10px 0 6px; }
.confirm-panel .check{
  width:56px; height:56px; border-radius:50%; border:1px solid var(--gold-light);
  display:flex; align-items:center; justify-content:center; margin:0 auto 20px; color:var(--gold-light);
}
.notif-cards{display:flex; flex-direction:column; gap:12px; margin-top:24px; text-align:left;}
.notif-card{
  background:var(--ink); border:1px solid var(--line);
  border-radius:4px; padding:14px 16px; display:flex; gap:12px; align-items:flex-start;
}
.notif-card .dot{width:8px; height:8px; border-radius:50%; background:var(--gold-light); margin-top:6px; flex:none;}
.notif-card b{display:block; font-size:13px; font-family:var(--ff-body);}
.notif-card span{font-size:12.5px; color:var(--steel); font-family:var(--ff-body);}

/* ============ REVIEWS ============ */
.reviews-wrap{overflow:hidden; position:relative;}
.reviews-wrap::before,
.reviews-wrap::after{
  content:""; position:absolute; top:0; bottom:0; width:72px;
  pointer-events:none;
  z-index:2;
}
.reviews-wrap::before{
  left:0;
  background:linear-gradient(to right, var(--ink-2) 10%, transparent);
}
.reviews-wrap::after{
  right:0;
  background:linear-gradient(to left, var(--ink-2) 10%, transparent);
}
.reviews-track{
  display:flex;
  gap:22px;
  width:max-content;
  padding-bottom:16px;
  animation:reviewsMarquee 34s linear infinite;
  will-change:transform;
}
.reviews-wrap:hover .reviews-track{ animation-play-state:paused; }
.review-card{
  flex:none; width:340px;
  background:var(--ink-2); border:1px solid var(--line); border-radius:var(--radius); padding:28px;
}
.stars{color:var(--gold); font-size:15px; letter-spacing:2px; margin-bottom:14px;}
.review-text{font-size:14.5px; color:var(--bone-dim); margin-bottom:20px; min-height:76px; font-family:var(--ff-body);}
.review-who{display:flex; align-items:center; gap:12px; font-family:var(--ff-mono); font-size:12.5px; color:var(--steel);}
.avatar{
  width:34px;
  height:34px;
  border-radius:50%;
  object-fit:cover;
  flex:none;
  border:1px solid rgba(228,197,93,0.45);
  filter:grayscale(20%) contrast(1.04);
}
.google-badge{display:flex; align-items:center; gap:8px; margin-bottom:40px; font-family:var(--ff-mono); font-size:13px; color:var(--steel);}
.google-badge b{color:var(--bone); font-family:var(--ff-display); font-size:26px;}
@keyframes reviewsMarquee{
  from{transform:translateX(0);}
  to{transform:translateX(calc(-50% - 11px));}
}
@media (max-width:520px){
  .reviews-wrap::before,
  .reviews-wrap::after{width:34px;}
  .reviews-track{animation-duration:38s;}
  .review-card{width:286px; padding:22px;}
}

/* ============ CONTACT ============ */
.contact-wrap{display:grid; grid-template-columns:1fr 1fr; gap:1px; background:var(--line); border:1px solid var(--line);}
@media (max-width:900px){ .contact-wrap{grid-template-columns:1fr;} }
.contact-info{background:var(--ink-2); padding:52px;}
.info-block{margin-bottom:30px;}
.info-block .b-label{margin-bottom:8px;}
.info-block p{font-size:15.5px; font-family:var(--ff-body);}
.hours-row{display:flex; justify-content:space-between; font-family:var(--ff-body); font-size:14px; padding:8px 0; border-bottom:1px solid var(--line);}
.hours-row span:last-child{ font-weight:600; }
.map-frame{background:var(--ink-2); min-height:340px;}
.map-frame iframe{width:100%; height:100%; min-height:340px; border:0; filter:grayscale(1) invert(0.92) contrast(0.9);}

/* ============ FOOTER ============ */
footer{background:var(--ink-2); color:var(--steel); padding:50px 0; font-size:13px; border-top:1px solid var(--line);}
footer .wrap{display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:16px;}
footer .logo{color:var(--bone);}
.foot-links{display:flex; gap:24px; font-family:var(--ff-mono); text-transform:uppercase; font-size:12px;}
.foot-links a:hover{color:var(--gold-light);}

