/* =====================================================================
   Salon Vojin — dark-luxe redesign
   Self-contained stylesheet (no Bootstrap dependency)
   ===================================================================== */

:root {
  --bg-dark: #0e0d0b;
  --bg-dark-2: #161410;
  --bg-dark-3: #1d1a15;
  --cream: #f5f1ea;
  --cream-2: #efe9df;
  --card: #ffffff;
  --gold: #c3a35b;
  --gold-2: #d8bd7e;
  --gold-soft: rgba(195, 163, 91, 0.14);
  --text-dark: #1a1a1a;
  --text-mid: #524c42;
  --text-light: #efe9df;
  --muted: #a79f92;
  --muted-dark: #8b8577;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(0, 0, 0, 0.08);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Roboto", system-ui, -apple-system, sans-serif;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.35);
  --shadow-soft: 0 12px 40px -18px rgba(0, 0, 0, 0.22);
  --radius: 14px;
  --maxw: 1240px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-dark);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: 0.2px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.1rem);
  color: var(--text-dark);
}
.section-title .italic-gold { font-style: italic; color: var(--gold); }

.lead { color: var(--text-mid); font-size: 1.02rem; max-width: 56ch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.35s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #201a0e;
  box-shadow: 0 10px 30px -12px rgba(195, 163, 91, 0.7);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -12px rgba(195, 163, 91, 0.85); }
.btn-outline { background: transparent; color: var(--text-light); border-color: rgba(255, 255, 255, 0.35); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark { background: transparent; color: var(--text-dark); border-color: rgba(0, 0, 0, 0.25); }
.btn-outline-dark:hover { border-color: var(--gold); color: var(--gold); }
.btn-dark { background: var(--bg-dark); color: var(--text-light); }
.btn-dark:hover { background: #000; transform: translateY(-2px); }

/* =====================================================================
   Header / navigation
   ===================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: all 0.4s var(--ease);
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.85), rgba(8, 7, 6, 0));
  opacity: 1;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(12, 11, 9, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.8);
}
.site-header.scrolled::before { opacity: 0; }
.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Brand */
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.35rem;
  letter-spacing: 0.32em;
  font-weight: 600;
  padding-left: 4px;
}
.brand-sub {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 5px;
}

/* Nav */
.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav > li > a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  padding: 10px 14px;
  transition: color 0.3s var(--ease);
}
.main-nav > li > a:hover,
.main-nav > li.current > a { color: var(--gold); }
.main-nav > li > a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.main-nav > li > a:hover::after,
.main-nav > li.current > a::after { transform: scaleX(1); }
.main-nav svg { width: 14px; height: 14px; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 250px;
  background: rgba(18, 16, 13, 0.97);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a {
  display: block;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.78);
  padding: 10px 14px;
  border-radius: 8px;
  text-transform: none;
}
.dropdown a:hover { background: var(--gold-soft); color: var(--gold); }

.header-cta { display: flex; align-items: center; gap: 14px; }
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 28px; height: 28px; }

/* Mobile overlay nav — reveal animation (ported from previous theme, recolored) */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  overflow: hidden;
}
/* two layered panels sweep in from top-right, un-rounding as they land */
.mobile-nav::before,
.mobile-nav::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  border-bottom-left-radius: 200%;
  transform: translateX(100%) translateY(-100%);
  transition: transform cubic-bezier(0.77, 0, 0.175, 1) 0.6s, border-radius linear 0.8s;
  z-index: -1;
}
.mobile-nav::after { background: var(--bg-dark); transition-delay: 0s; }
.mobile-nav::before { background: linear-gradient(150deg, rgba(195, 163, 91, 0.30), rgba(14, 13, 11, 0.94) 62%); transition-delay: 0.15s; }
.mobile-nav.open { pointer-events: auto; }
.mobile-nav.open::before,
.mobile-nav.open::after { transform: translateX(0) translateY(0); border-radius: 0; }
.mobile-nav.open::after { transition-delay: 0.1s; }
.mobile-nav.open::before { transition-delay: 0s; }

.mobile-nav__inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  padding: 24px 32px;
  max-height: 100vh;
  overflow-y: auto;
  text-align: center;
}
.mobile-nav__list { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mobile-nav__list li {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.2s ease, transform 0.3s ease;
}
.mobile-nav.open .mobile-nav__list li {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.35s ease, transform 0.45s ease;
}
.mobile-nav.open .mobile-nav__list li:nth-child(1) { transition-delay: 0.30s; }
.mobile-nav.open .mobile-nav__list li:nth-child(2) { transition-delay: 0.37s; }
.mobile-nav.open .mobile-nav__list li:nth-child(3) { transition-delay: 0.44s; }
.mobile-nav.open .mobile-nav__list li:nth-child(4) { transition-delay: 0.51s; }
.mobile-nav.open .mobile-nav__list li:nth-child(5) { transition-delay: 0.58s; }
.mobile-nav.open .mobile-nav__list li:nth-child(6) { transition-delay: 0.65s; }
.mobile-nav.open .mobile-nav__list li:nth-child(7) { transition-delay: 0.72s; }
.mobile-nav__list a:not(.btn) {
  display: inline-block;
  font-family: var(--serif);
  font-size: clamp(1.9rem, 8vw, 2.4rem);
  line-height: 1.25;
  letter-spacing: 0.02em;
  color: var(--text-light);
  padding: 6px 4px;
  transition: color 0.25s var(--ease);
}
.mobile-nav__list a:not(.btn):hover,
.mobile-nav__list a:not(.btn):focus { color: var(--gold); }
.mobile-nav__list .mobile-cta { margin-top: 22px; }
.mobile-nav__list .mobile-cta.btn { padding: 15px 34px; }

.mobile-close {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 3;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.3s ease 0.35s;
}
.mobile-nav.open .mobile-close { opacity: 1; }
.mobile-close svg { width: 30px; height: 30px; }

/* =====================================================================
   Hero
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: -2; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.92) 0%, rgba(8, 7, 6, 0.65) 45%, rgba(8, 7, 6, 0.3) 100%),
    linear-gradient(180deg, rgba(8, 7, 6, 0.6), rgba(8, 7, 6, 0.55));
}
.hero-inner { padding: 130px 0 190px; max-width: 680px; }
.hero h1 {
  font-size: clamp(3rem, 7vw, 5.6rem);
  line-height: 1;
  margin: 14px 0 0;
}
.hero h1 .line-2 { font-style: italic; color: var(--gold); display: block; }
.hero .lead { color: rgba(239, 233, 223, 0.82); margin: 26px 0 36px; font-size: 1.1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }

/* Floating social rail */
.social-rail {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.social-rail a {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(30, 27, 22, 0.7);
  border: 1px solid var(--line);
  color: #fff;
  backdrop-filter: blur(6px);
  transition: all 0.3s var(--ease);
}
.social-rail a:hover { background: var(--gold); color: #1a1408; transform: translateY(-2px); }
.social-rail svg { width: 19px; height: 19px; }

/* =====================================================================
   Feature bar
   ===================================================================== */
.feature-bar {
  position: relative;
  z-index: 6;
  margin-top: -85px;
  background: linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.feature {
  text-align: center;
  padding: 40px 26px;
  color: var(--text-light);
  border-right: 1px solid var(--line);
}
.feature:last-child { border-right: none; }
.feature-icon {
  width: 46px;
  height: 46px;
  margin: 0 auto 18px;
  color: var(--gold);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature h3 {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.feature p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }

/* =====================================================================
   Generic section spacing
   ===================================================================== */
.section { padding: 110px 0; }
.section-head { margin-bottom: 54px; }
.section-head.center { text-align: center; }
.section-head.center .lead { margin-left: auto; margin-right: auto; }
.head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.section-dark { background: var(--bg-dark); color: var(--text-light); }
.section-dark .section-title { color: #fff; }

/* =====================================================================
   Services
   ===================================================================== */
.services { background: var(--cream); }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}
.service-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(0, 0, 0, 0.3); }
.service-media { aspect-ratio: 4 / 3; overflow: hidden; }
.service-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.service-card:hover .service-media img { transform: scale(1.06); }
.service-body { padding: 24px 24px 28px; }
.service-body h3 { font-size: 1.5rem; margin-bottom: 8px; }
.service-body p { font-size: 14px; color: var(--text-mid); margin: 0 0 18px; min-height: 42px; }
.service-price {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--gold);
  font-size: 15px;
}
.service-price span { color: var(--muted-dark); font-weight: 400; font-size: 12px; }

/* =====================================================================
   Packages
   ===================================================================== */
.packages { background: var(--cream-2); }
.package-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.package {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px 34px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--line-dark);
  position: relative;
  transition: transform 0.4s var(--ease);
}
.package.featured {
  background: linear-gradient(180deg, var(--bg-dark-2), var(--bg-dark));
  color: var(--text-light);
  border-color: var(--gold);
}
.package.featured h3 { color: #fff; }
.package.featured .package-desc { color: var(--muted); }
.package.featured .package-list li { color: rgba(239, 233, 223, 0.85); border-color: var(--line); }
.package:hover { transform: translateY(-6px); }
.package-tag {
  position: absolute;
  top: 22px;
  right: 22px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  padding: 5px 12px;
}
.package h3 { font-size: 1.7rem; margin-bottom: 6px; letter-spacing: 0.04em; }
.package-price { font-family: var(--serif); font-size: 2.4rem; color: var(--gold); margin: 6px 0 4px; }
.package-price small { font-size: 0.95rem; color: var(--muted-dark); }
.package-desc { font-size: 14px; color: var(--text-mid); margin: 0 0 22px; }
.package-list { margin: 0 0 28px; }
.package-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}
.package-list li:last-child { border-bottom: none; }
.package-list svg { width: 16px; height: 16px; color: var(--gold); flex: none; }
.package .btn { width: 100%; justify-content: center; }

/* =====================================================================
   Results / before-after
   ===================================================================== */
.results-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: start; }
.ba {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.ba-slider {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  user-select: none;
  touch-action: none;
  cursor: ew-resize;
}
.ba-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-after { clip-path: inset(0 0 0 50%); }
.ba-tag {
  position: absolute;
  bottom: 12px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10, 9, 7, 0.7);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}
.ba-tag.before { left: 12px; }
.ba-tag.after { right: 12px; }
.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 4;
  pointer-events: none;
}
.ba-knob {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: #1a1408;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px -6px rgba(0, 0, 0, 0.6);
}
.ba-knob svg { width: 22px; height: 22px; }
.ba-label {
  text-align: center;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 18px 10px;
  background: var(--bg-dark-2);
}

/* Static photo / video result cards (share the .ba wrapper) */
.result-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-dark-2);
}
.result-media img,
.result-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.result-media video { pointer-events: none; }
/* Show the whole image (its natural square ratio) — no cropping */
.result-media--full { aspect-ratio: 1 / 1; }
.result-media--full img { object-fit: contain; }
.result-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(10, 9, 7, 0.7);
  color: #fff;
  padding: 5px 11px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

/* =====================================================================
   Why / Testimonials / Instagram (3-col)
   ===================================================================== */
.trio { background: var(--cream); }
.trio-grid { display: grid; grid-template-columns: 1fr 1fr 1.05fr; gap: 48px; }
.trio h3.block-title {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
}

/* why list */
.why-list li { display: flex; align-items: center; gap: 12px; padding: 11px 0; font-size: 15px; color: var(--text-dark); }
.why-list svg { width: 20px; height: 20px; color: var(--gold); flex: none; }

/* testimonial */
.testimonial { position: relative; }
.testimonial .quote-icon { width: 40px; height: 40px; color: var(--gold); opacity: 0.6; margin-bottom: 14px; }
.testi-item { display: none; }
.testi-item.active { display: block; animation: fade 0.5s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.testi-text { font-family: var(--serif); font-size: 1.35rem; line-height: 1.5; color: var(--text-dark); font-style: italic; }
.testi-stars { display: flex; gap: 4px; margin: 18px 0 10px; color: var(--gold); }
.testi-stars svg { width: 18px; height: 18px; }
.testi-name { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; }
.testi-dots { display: flex; gap: 8px; margin-top: 20px; }
.testi-dots button {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: rgba(0, 0, 0, 0.18); cursor: pointer; padding: 0;
  transition: all 0.3s var(--ease);
}
.testi-dots button.active { background: var(--gold); width: 22px; border-radius: 999px; }

/* instagram grid */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 20px; }
.ig-grid a { aspect-ratio: 1; overflow: hidden; border-radius: 8px; position: relative; }
.ig-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.ig-grid a::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(14, 13, 11, 0);
  transition: background 0.3s var(--ease);
}
.ig-grid a:hover::after { background: rgba(14, 13, 11, 0.28); }
.ig-grid a:hover img { transform: scale(1.08); }
.ig-handle {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; letter-spacing: 0.08em; font-weight: 500;
  background: var(--bg-dark); color: #fff;
  padding: 12px 22px; border-radius: 999px;
  transition: all 0.3s var(--ease);
}
.ig-handle:hover { background: var(--gold); color: #1a1408; }
.ig-handle svg { width: 17px; height: 17px; }

/* =====================================================================
   CTA band
   ===================================================================== */
.cta-band { position: relative; color: #fff; overflow: hidden; }
.cta-band .cta-bg { position: absolute; inset: 0; z-index: -2; }
.cta-band .cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(90deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.55));
}
.cta-inner { padding: 84px 0; display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.cta-inner h2 { font-size: clamp(2rem, 4vw, 3rem); }
.cta-inner h2 .italic-gold { font-style: italic; color: var(--gold); }
.cta-sub { color: rgba(239, 233, 223, 0.8); margin: 14px 0 0; }
.cta-right { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.cta-chips { display: flex; flex-wrap: wrap; gap: 26px; }
.cta-chip { display: flex; align-items: center; gap: 12px; }
.cta-chip svg { width: 22px; height: 22px; color: var(--gold); flex: none; }
.cta-chip .c-label { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.cta-chip .c-value { font-size: 15px; color: #fff; }

/* =====================================================================
   Footer
   ===================================================================== */
.site-footer { background: var(--bg-dark); color: var(--text-light); padding: 72px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 18px; }
.footer-brand p { color: var(--muted); font-size: 14px; max-width: 34ch; }
.footer-col h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-col ul li { padding: 7px 0; }
.footer-col a, .footer-col li { font-size: 14px; color: rgba(239, 233, 223, 0.75); }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 3px; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a {
  width: 40px; height: 40px; display: grid; place-items: center;
  border: 1px solid var(--line); border-radius: 10px; color: #fff;
  transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: #1a1408; border-color: var(--gold); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 26px; font-size: 12.5px; color: var(--muted-dark); }
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--gold); }

/* =====================================================================
   Floating WhatsApp
   ===================================================================== */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -8px rgba(37, 211, 102, 0.6);
  transition: transform 0.3s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }

/* =====================================================================
   Page hero (sub pages: cenovnik / kontakt)
   ===================================================================== */
.page-hero {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 190px 0 90px;
  overflow: hidden;
}
.page-hero .ph-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero .ph-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.86), rgba(8, 7, 6, 0.7));
}
.page-hero h1 { font-size: clamp(2.6rem, 5vw, 4rem); }
.page-hero .breadcrumb { margin-top: 14px; font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.page-hero .breadcrumb a:hover { color: var(--gold); }

/* =====================================================================
   Cenovnik (price list)
   ===================================================================== */
.pricelist { background: var(--cream); padding: 90px 0 110px; }
.price-cat { margin-bottom: 56px; }
.price-cat > h2 {
  font-size: 2rem;
  color: var(--text-dark);
  padding-bottom: 14px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--gold);
  display: flex;
  align-items: center;
  gap: 14px;
}
.price-cat > h2::before {
  content: "";
  width: 26px; height: 1px; background: var(--gold);
}
.price-rows li {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 15px 4px;
  border-bottom: 1px solid var(--line-dark);
}
.price-rows .naziv-usluge { flex: 1; font-size: 15px; color: var(--text-dark); }
.price-rows .dots { flex: 1; border-bottom: 1px dotted rgba(0, 0, 0, 0.2); transform: translateY(-4px); min-width: 20px; }
.price-rows .cena-usluge {
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--gold);
  white-space: nowrap;
}
.price-rows .cena-usluge::after { content: " rsd"; font-size: 11px; color: var(--muted-dark); font-weight: 400; }
.price-note { text-align: center; color: var(--text-mid); font-size: 14px; margin-top: 10px; }

/* Category chips filter */
.cat-nav {
  position: sticky;
  top: 74px;
  z-index: 20;
  background: rgba(245, 241, 234, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  padding: 16px 0;
  margin-bottom: 40px;
}
.cat-nav-inner { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.cat-nav a { flex: 0 0 auto; white-space: nowrap; }
.cat-nav a {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 999px;
  color: var(--text-mid);
  transition: all 0.3s var(--ease);
}
.cat-nav a:hover { border-color: var(--gold); color: var(--gold); }

/* =====================================================================
   Kontakt
   ===================================================================== */
.contact-section { background: var(--cream); padding: 90px 0 110px; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.contact-cards { display: grid; gap: 18px; margin-bottom: 34px; }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--card);
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: var(--shadow-soft);
}
.contact-card .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--gold-soft); color: var(--gold);
  display: grid; place-items: center; flex: none;
}
.contact-card .ic svg { width: 22px; height: 22px; }
.contact-card h4 { font-family: var(--sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 5px; }
.contact-card p, .contact-card a { font-size: 16px; color: var(--text-dark); }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--card);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow-soft);
}
.contact-form h2 { font-size: 2rem; margin-bottom: 8px; }
.contact-form .form-sub { color: var(--text-mid); font-size: 14px; margin-bottom: 26px; }
.contact-form label { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dark); margin-bottom: 8px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  border-radius: 10px;
  background: #fbfaf7;
  margin-bottom: 18px;
  transition: border-color 0.3s var(--ease);
  color: var(--text-dark);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .btn { width: 100%; justify-content: center; border: none; }
.map-wrap { margin-top: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-soft); }
.map-wrap iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(0.2); }

/* =====================================================================
   Responsive
   ===================================================================== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature:nth-child(2) { border-right: none; }
  .feature:nth-child(1), .feature:nth-child(2) { border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .trio-grid { grid-template-columns: 1fr; gap: 54px; }
  .cta-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .main-nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .package-grid, .results-grid { grid-template-columns: 1fr; }
  .package.featured { order: -1; }
}

/* Cenovnik category chips: scroll horizontally on mobile, contained (no page overflow) */
@media (max-width: 760px) {
  .cat-nav-inner {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 2px;
  }
  .cat-nav-inner::-webkit-scrollbar { display: none; }
}

@media (max-width: 620px) {
  .section { padding: 76px 0; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature { border-right: none; border-bottom: 1px solid var(--line); }
  .service-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .social-rail { display: none; }
  .hero-inner { padding: 120px 0 150px; }
  .cta-chips { flex-direction: column; gap: 16px; }
  .contact-form { padding: 28px 22px; }
  .brand-name { font-size: 1.15rem; letter-spacing: 0.26em; }
  .price-rows .dots { display: none; }
}
