/* Beauty Time Studio - stilovi v5 (soft mauve) */

:root {
  --bg: #F6F2F0;
  --panel: #E7D9D8;
  --card: #FFFFFF;
  --rose: #9C7D83;
  --rose-deep: #82666C;
  --rose-pale: #D8C9C7;
  --kicker: #9A8B87;
  --deep: #8D6670;
  --deep-dark: #7B5661;
  --ink: #332D2C;
  --muted: #8E827F;
  --line: #D8C9C7;
  --r-card: 20px;
  --r-img: 14px;
  --shadow: 0 22px 44px -26px rgba(50, 45, 48, .35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
* { font-variant-numeric: lining-nums; font-feature-settings: "lnum" 1; }

body {
  margin: 0;
  font-family: 'Jost', system-ui, sans-serif;
  font-weight: 300;
  font-size: 1.03rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.15;
  color: var(--ink);
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 500; }

a { color: var(--rose-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--rose-deep);
  outline-offset: 3px;
}

::selection { background: var(--rose-pale); }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--ink); color: #fff; padding: .5rem 1rem;
}
.skip-link:focus { left: 0; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container.narrow { max-width: 840px; }
.center { text-align: center; }

/* ---------- header ---------- */

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(246, 242, 240, .72);
  backdrop-filter: blur(22px) saturate(1.5);
  -webkit-backdrop-filter: blur(22px) saturate(1.5);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  max-width: 1320px; margin: 0 auto;
  padding: .85rem clamp(1.1rem, 3vw, 2rem);
  display: flex; align-items: center; gap: 1.2rem;
}

.brand { display: flex; align-items: center; gap: .7rem; text-decoration: none; margin-right: auto; }
.brand-mark { width: 68px; height: 68px; object-fit: contain; }
.brand-wordmark { height: 76px; width: auto; }

.site-nav { display: flex; gap: clamp(.1rem, 1.2vw, .9rem); }
.site-nav a {
  font-size: .74rem; font-weight: 400; letter-spacing: .18em; text-decoration: none;
  color: var(--ink); padding: .45rem .5rem;
  transition: color .2s;
}
.site-nav a:hover { color: var(--rose-deep); }
.site-nav a.active { color: var(--rose-deep); }

.header-cta { display: flex; align-items: center; gap: .9rem; }
.header-phone { display: none; }

.nav-toggle { display: none; }
.header-social { display: none; }

/* ---------- gumbi (pill) ---------- */

.btn {
  display: inline-flex; align-items: center; gap: .6rem;
  white-space: nowrap;
  font-family: 'Jost', sans-serif; font-weight: 400; font-size: .8rem;
  letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  padding: .85rem 1.7rem;
  color: #fff; background: var(--rose);
  border: 1px solid var(--rose);
  border-radius: 6px;
  transition: background .25s, color .25s, border-color .25s, transform .2s;
}
.btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; transform: translateY(-1px); }
.btn .arr { font-size: 1.05em; line-height: 1; transition: transform .25s; }
.btn:hover .arr { transform: translateX(3px); }
.btn-solid { background: var(--rose); }
.btn-outline, .btn-ghost, .btn-call {
  background: transparent; color: var(--rose-deep); border-color: var(--rose);
}
.btn-outline:hover, .btn-ghost:hover, .btn-call:hover { background: var(--rose); color: #fff; }
.btn-light { background: #fff; color: var(--deep); border-color: #fff; }
.btn-light:hover { background: var(--rose-pale); border-color: var(--rose-pale); color: var(--ink); }
.btn-book { padding: .62rem 1.4rem; font-size: .86rem; }
.cta-row { text-align: center; margin-top: 2.6rem; }

/* ---------- hero ---------- */

.hero { position: relative; overflow: hidden; background: var(--panel); }
.hero-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: 52% 30%;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg,
    rgba(246, 242, 240, .95) 0%,
    rgba(246, 242, 240, .74) 38%,
    rgba(231, 217, 216, .22) 66%,
    rgba(231, 217, 216, .05) 100%);
}
.hero-panel {
  position: relative; z-index: 2;
  max-width: 1160px; margin: 0 auto;
  padding: clamp(3.5rem, 9vh, 6.5rem) clamp(1.25rem, 4vw, 2.5rem);
  min-height: clamp(480px, 72vh, 700px);
  display: flex; flex-direction: column; justify-content: center;
}
.hero-copy .eyebrow {
  display: inline-flex; align-items: center; gap: .8rem;
  font-size: .84rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase;
  color: var(--rose-deep);
  margin: 0 0 1.2rem;
}
.hero-copy .eyebrow::before {
  content: "";
  width: 42px; height: 1px;
  background: var(--rose);
}
.hero-copy h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.2rem);
  margin: 0 0 1.2rem;
  max-width: 15ch;
}
.hero-copy h1 em { color: var(--rose); }
.hero-lead { max-width: 34ch; margin: 0 0 2.2rem; font-size: 1.08rem; color: var(--ink); }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-link {
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
}

@keyframes heroZoom { from { transform: scale(1.045); } to { transform: none; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.hero-bg { animation: heroZoom 7s cubic-bezier(.2, .6, .2, 1) both; }
.hero-copy > * { animation: fadeUp .9s ease both; }
.hero-copy > *:nth-child(1) { animation-delay: .1s; }
.hero-copy > *:nth-child(2) { animation-delay: .22s; }
.hero-copy > *:nth-child(3) { animation-delay: .34s; }
.hero-copy > *:nth-child(4) { animation-delay: .46s; }

/* ---------- sekcije ---------- */

.section { padding: clamp(3.6rem, 8vw, 6.2rem) 0; }
.section-sage, .section-ivory { background: var(--bg); }
.section-peach { background: var(--panel); }
.section-cream { background: var(--bg); }
.page-head { padding-bottom: 0; text-align: center; }
.page-head + .section { padding-top: clamp(2.2rem, 4vw, 3.2rem); }
.page-head .sec-head { margin-bottom: 0; }

.sec-head { margin-bottom: clamp(2rem, 5vw, 3rem); }
.kicker {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: .74rem; font-weight: 400;
  letter-spacing: .34em; text-transform: uppercase;
  color: var(--kicker);
  margin-bottom: .8rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  margin: 0;
}
.sec-head.centered { text-align: center; }

.quote { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; line-height: 1.5; color: var(--ink); }
.quote-author { font-style: normal; font-family: 'Jost', sans-serif; font-size: .8rem; letter-spacing: .1em; color: var(--muted); }

/* dvostupčani raspored */
.split {
  display: grid; grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split-reverse .split-media { order: 2; }
.split-media { margin: 0; }
.split-media img { width: 100%; border-radius: var(--r-card); box-shadow: var(--shadow); }

/* ---------- welcome (index) ---------- */

.welcome { padding: clamp(3.6rem, 8vw, 6.2rem) 0; background: var(--bg); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1160px; margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.welcome-media { margin: 0; }
.welcome-media img { width: 100%; height: 100%; object-fit: cover; min-height: 380px; border-radius: var(--r-card); box-shadow: var(--shadow); }
.welcome-body { padding: 1rem 0; }
.welcome-body h2 { font-size: clamp(2rem, 3.6vw, 2.8rem); margin: 0 0 1.2rem; }
.welcome-body .quote { margin: 0 0 1.2rem; }
.welcome-body p { margin: 0 0 1.2rem; max-width: 52ch; }
.welcome-sub {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.8rem, 4vw, 3.5rem);
  align-items: center;
  max-width: 1160px; margin: clamp(1.8rem, 4vw, 3.5rem) auto 0;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.welcome-sub img { width: 100%; object-fit: cover; min-height: 300px; border-radius: var(--r-card); box-shadow: var(--shadow); }
.welcome-note {
  background: rgba(232, 220, 220, .55);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; justify-content: center; gap: .6rem;
  padding: clamp(2rem, 4vw, 3rem);
  height: 100%;
}
.welcome-note h3 { font-size: 1.6rem; margin: 0; }
.welcome-note p { margin: 0; color: var(--ink); max-width: 40ch; }

/* ---------- kartice usluga ---------- */

.treatments { position: relative; padding: clamp(3.6rem, 8vw, 6.2rem) 0; background: var(--bg); overflow: hidden; }
.treatments-bg { display: none; }
.treatments::after { display: none; }
.treatments > .container { position: relative; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2rem);
}
.service-card {
  text-decoration: none; display: flex; flex-direction: column; align-items: center;
  background: rgba(255, 255, 255, .58);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: var(--r-card);
  padding: .9rem .9rem 1.6rem;
  text-align: center;
  transition: box-shadow .35s, transform .35s;
}
.service-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.sc-num { display: none; }
.sc-media {
  display: block; width: 100%;
  overflow: hidden;
  border-radius: calc(var(--r-card) - 7px);
}
.sc-media img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  transition: transform .8s cubic-bezier(.2, .6, .2, 1);
}
.service-card:hover .sc-media img { transform: scale(1.05); }
.service-card-title {
  display: block;
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 1.45rem; color: var(--ink);
  line-height: 1.2;
  margin: 1.1rem 0 .35rem;
}
.sc-desc {
  display: block;
  font-size: .9rem; color: var(--muted);
  max-width: 24ch;
  line-height: 1.55;
  margin-bottom: 1.1rem;
}
.sc-more {
  margin-top: auto;
  margin-bottom: .3rem;
  font-family: 'Jost', sans-serif;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose);
  padding-bottom: 3px;
  border-bottom: 1px solid var(--line);
  transition: color .25s, border-color .25s;
}
.service-card:hover .sc-more { color: var(--rose-deep); border-color: var(--rose-deep); }
.service-card-more { display: none; }

.service-grid .service-card:nth-child(3n+2).reveal { transition-delay: .1s; }
.service-grid .service-card:nth-child(3n+3).reveal { transition-delay: .2s; }

/* ---------- signature (naš pristup) ---------- */

.signature { background: var(--panel); padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.sig-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  margin-top: clamp(1.8rem, 4vw, 2.8rem);
}
.sig-item { display: flex; gap: 1.1rem; align-items: flex-start; }
.sig-icon {
  flex: none;
  width: 58px; height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--card);
  border: 1px solid var(--rose-pale);
  border-radius: 50%;
  color: var(--rose-deep);
}
.sig-icon svg { width: 24px; height: 24px; }
.sig-item h3 {
  font-family: 'Jost', sans-serif; font-weight: 500; font-style: normal;
  font-size: 1rem; letter-spacing: .02em;
  margin: .2rem 0 .3rem;
}
.sig-item p { margin: 0; font-size: .95rem; color: var(--muted); line-height: 1.6; }

/* ---------- foto traka s karticom ---------- */

.photo-band { position: relative; }
.photo-band img.band-img {
  width: 100%; height: clamp(320px, 48vh, 460px);
  object-fit: cover;
}
.band-card {
  position: absolute; right: clamp(1.25rem, 6vw, 6rem); bottom: clamp(1.5rem, 5vh, 3rem);
  max-width: 320px;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-img);
  box-shadow: var(--shadow-3d);
  padding: 1.4rem 1.5rem;
  display: flex; gap: .9rem; align-items: flex-start;
}
.band-card .sig-icon { width: 44px; height: 44px; }
.band-card .sig-icon svg { width: 19px; height: 19px; }
.band-card p { margin: 0; font-size: .92rem; line-height: 1.6; color: var(--ink); }

/* ---------- instagram / kolaž ---------- */

.insta { background: var(--bg); padding: clamp(3.4rem, 7vw, 5.5rem) 0; }
.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.8rem, 1.6vw, 1.1rem);
  align-items: stretch;
}
.insta-card {
  grid-column: span 2;
  background: var(--panel);
  border-radius: var(--r-card);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  text-align: center;
  padding: clamp(2rem, 4vw, 3rem);
  text-decoration: none;
}
.insta-card .kicker { margin-bottom: .5rem; }
.insta-card strong {
  font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  color: var(--ink);
}
.insta-card strong .slash { display: none; }
.insta-card span.follow {
  margin-top: 1.2rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted);
}
.insta-card:hover span.follow { color: var(--rose-deep); }
.insta-grid a.ph { display: block; overflow: hidden; border-radius: var(--r-img); }
.insta-grid a.ph img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 1;
  transition: transform .7s cubic-bezier(.2, .6, .2, 1);
}
.insta-grid a.ph:hover img { transform: scale(1.05); }

/* ---------- kontakt ---------- */

.section-contact { background: var(--panel); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.15fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: start;
}
.contact-info .sec-head { margin-bottom: 1.4rem; }
.contact-phone {
  font-family: 'Jost', sans-serif;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem); font-weight: 400;
  letter-spacing: .05em;
  color: var(--ink);
  text-decoration: none;
}
.contact-phone:hover { color: var(--rose-deep); }
.contact-info address { font-style: normal; margin: .8rem 0 1.6rem; color: var(--muted); }
.contact-hours { border-top: 1px solid var(--line); padding-top: 1.3rem; margin-top: 1.8rem; }
.contact-hours h3 {
  font-family: 'Jost', sans-serif; font-weight: 400; font-style: normal;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  margin: 0 0 .5rem; color: var(--muted);
}
.contact-hours p { margin: 0; color: var(--muted); }

.contact-form {
  background: rgba(255, 255, 255, .55);
  backdrop-filter: blur(18px) saturate(1.35);
  -webkit-backdrop-filter: blur(18px) saturate(1.35);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-3d);
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
}
.contact-form label {
  display: block; margin-bottom: 1.3rem;
  font-size: .68rem; letter-spacing: .22em; text-transform: uppercase; color: var(--muted);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%; margin-top: .45rem;
  font-family: 'Jost', sans-serif; font-weight: 300; font-size: 1rem; color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: .65rem .9rem;
  transition: border-color .25s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--rose); outline: none; }
.contact-form textarea { resize: vertical; }
.hp { position: absolute; left: -5000px; }
.gdpr {
  display: flex; gap: .7rem; align-items: flex-start;
  font-size: .85rem !important; letter-spacing: .02em !important; text-transform: none !important;
  color: var(--ink) !important;
}
.gdpr input { margin-top: .3rem; accent-color: var(--rose-deep); }
.contact-form .btn { margin-top: 1.1rem; }
.form-status { min-height: 1.5em; margin-top: 1rem; font-size: .92rem; }
.form-status.ok { color: #5F7052; }
.form-status.err { color: #A64848; }

.section-map { padding: 0; line-height: 0; }
.section-map .container { max-width: none; padding: 0; }
.section-map iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.7) sepia(.05); }

/* ---------- cjenik ---------- */

.price-group { margin-bottom: 3rem; }
.price-group-title {
  font-size: 1.7rem; margin: 0 0 1.2rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-list li {
  display: flex; align-items: baseline; gap: .7rem;
  padding: .72rem 0;
}
.price-list li + li { border-top: 1px dashed rgba(63, 57, 55, .12); }
.price-name { max-width: 72%; font-weight: 400; }
.price-name small { display: block; font-weight: 300; color: var(--muted); font-size: .85rem; line-height: 1.6; margin-top: .1rem; }
.price-dots { flex: 1; }
.price-amount {
  font-family: 'Cormorant Garamond', serif; font-weight: 600;
  font-size: 1.2rem;
  color: var(--rose-deep); white-space: nowrap;
}
.back-link { margin-top: 2.4rem; font-size: .82rem; letter-spacing: .08em; }

.price-nav {
  display: flex; flex-wrap: wrap; gap: .5rem .6rem;
  justify-content: center;
  margin-bottom: clamp(2.4rem, 5vw, 3.4rem);
}
.price-nav a {
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; color: var(--ink);
  padding: .5rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: all .2s;
}
.price-nav a:hover { border-color: var(--rose); color: var(--rose-deep); }
.price-nav a.active { background: var(--rose); border-color: var(--rose); color: #fff; }

/* ---------- detalji tretmana ---------- */

.treatment {
  display: grid; grid-template-columns: 2fr 3fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
  padding: clamp(2.4rem, 5vw, 3.8rem) 0;
}
.treatment + .treatment { border-top: 1px solid var(--line); }
.treatment-alt .treatment-media { order: 2; }
.treatment-media { margin: 0; position: sticky; top: 6rem; }
.treatment-media img { width: 100%; border-radius: var(--r-card); box-shadow: var(--shadow); }
.treatment-body h2 { margin-top: 0; font-size: clamp(1.7rem, 2.8vw, 2.2rem); }
.treatment-body h3 {
  font-family: 'Jost', sans-serif; font-weight: 400; font-style: normal;
  font-size: .72rem; letter-spacing: .28em; text-transform: uppercase;
  color: var(--kicker);
  margin: 1.7rem 0 .5rem;
}
.treatment-body ul { padding-left: 1.1rem; }
.treatment-body li { margin-bottom: .4rem; }
.treatment-body li::marker { color: var(--rose); }

/* brandovi */
.brand-strip { padding-bottom: 0; }
.brands {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: clamp(1.8rem, 5vw, 4rem);
  padding: 1.6rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.brands img {
  max-height: 34px; width: auto;
  opacity: .85;
  transition: opacity .3s;
}
.brands img:hover { opacity: 1; }
.brands img[src*="vtech"] { max-height: 64px; }
.brands img[src*="schrammek"] { max-height: 50px; }
.brands img[src*="skeyndor"] { max-height: 48px; }
.brands-note { text-align: center; color: var(--muted); margin-top: 1.2rem; font-size: .9rem; }
.brand-strip-home { padding: clamp(1.6rem, 3.5vw, 2.4rem) 0; background: var(--bg); }
.brand-strip-home .brands { border: none; padding: 0; }

/* galerija */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 1rem;
}
.gallery img {
  width: 100%; aspect-ratio: 1; object-fit: cover;
  border-radius: var(--r-img);
  transition: transform .6s cubic-bezier(.2, .6, .2, 1);
}
.gallery img:hover { transform: scale(1.03); }

/* accordion */
.page-figure { margin: 0 0 2.4rem; }
.page-figure img { border-radius: var(--r-card); box-shadow: var(--shadow); }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-item summary {
  cursor: pointer; list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.25rem .2rem;
}
.acc-item summary::-webkit-details-marker { display: none; }
.acc-item summary::after {
  content: "+";
  font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 400;
  color: var(--rose-deep); line-height: 1;
  transition: transform .3s;
}
.acc-item[open] summary::after { transform: rotate(45deg); }
.acc-item summary h2 { margin: 0; font-size: 1.4rem; font-weight: 700; transition: color .2s; }
.acc-item summary:hover h2 { color: var(--rose-deep); }
.acc-body { padding: 0 .2rem 1.5rem; max-width: 64ch; }

/* liste */
.check-list { list-style: none; padding: 0; }
.check-list li { padding-left: 1.5rem; position: relative; margin-bottom: .5rem; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: .68em;
  width: .55rem; height: .55rem;
  border-radius: 50%;
  background: var(--rose-pale);
  border: 1px solid var(--rose);
}
.check-list.big li { font-size: 1.08rem; margin-bottom: .85rem; }

.prose h2 { font-size: 1.5rem; margin-top: 2.2rem; }
.prose { max-width: 66ch; }

/* ---------- CTA band ---------- */

.cta-band {
  background: var(--panel);
  padding: clamp(3.4rem, 7vw, 5.2rem) 0;
  text-align: center;
}
.cta-band .kicker { color: var(--kicker); }
.cta-band h2 {
  color: var(--ink);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  margin: 0 0 .5rem;
}
.cta-band h2 em { font-style: italic; color: var(--rose-deep); }
.cta-band p { color: var(--muted); margin: 0 0 2rem; }
.cta-band-actions { display: flex; gap: .9rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-light { background: #fff; color: var(--ink); border-color: #fff; }
.cta-band .btn-light:hover { background: var(--rose); color: #fff; border-color: var(--rose); }
.cta-band .btn-ghost { color: var(--ink); border-color: rgba(63, 57, 55, .3); background: transparent; }
.cta-band .btn-ghost:hover { background: var(--rose); color: #fff; border-color: var(--rose); }

/* ---------- footer (Vaša ljepota. Naš potpis.) ---------- */

.site-footer { background: var(--deep); color: rgba(246, 242, 240, .92); }
.footer-inner {
  max-width: 1160px; margin: 0 auto;
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 2.5rem) 2.4rem;
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.footer-sig h2 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: #F6F2F0;
  margin: 0;
  line-height: 1.12;
}
.footer-sig h2 em { font-style: italic; color: var(--rose-pale); }
.footer-info { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.footer-line { display: flex; gap: .8rem; align-items: flex-start; margin: 0; }
.footer-line svg { width: 18px; height: 18px; flex: none; margin-top: .25rem; color: var(--rose-pale); }
.footer-line a { color: #F6F2F0; text-decoration: none; }
.footer-line a:hover { text-decoration: underline; }
.footer-hours { font-size: .92rem; color: rgba(246, 242, 240, .78); margin: 0; }
.footer-info .btn { margin-top: .8rem; }
.footer-info .btn:hover { background: var(--rose-deep); border-color: var(--rose-deep); color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: .4rem; }
.footer-social a { color: rgba(246, 242, 240, .85); transition: color .2s; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 18px; height: 18px; }
.footer-copy {
  text-align: center; margin: 0;
  padding: 1.1rem 1.5rem; font-size: .78rem; letter-spacing: .1em;
  color: rgba(246, 242, 240, .68);
  border-top: 1px solid rgba(246, 242, 240, .18);
}
.footer-copy a { color: rgba(246, 242, 240, .82); }

/* ---------- ujednačavanje fotografija ---------- */

.hero-bg, .sc-media img, .band-img, .welcome-media img, .welcome-sub img,
.split-media img, .treatment-media img, .page-figure img,
.gallery img, .insta-grid a.ph img, .about-photo img {
  filter: saturate(.82) contrast(.94) brightness(1.04) sepia(.06);
}

/* ---------- scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2, .6, .2, 1);
}
.reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- mobilno ---------- */

@media (max-width: 900px) {
  .welcome-grid, .welcome-sub { grid-template-columns: 1fr; }
  .sig-grid { grid-template-columns: 1fr; gap: 1.4rem; }
  .band-card { position: static; max-width: none; margin: -2.5rem 1.25rem 0; position: relative; }
}

@media (max-width: 860px) {
  .split, .treatment, .contact-grid { grid-template-columns: 1fr; }
  .split-reverse .split-media, .treatment-alt .treatment-media { order: 0; }
  .treatment-media { position: static; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 760px) {
  .site-nav { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 44px; height: 44px; padding: 11px;
    background: transparent; border: none; cursor: pointer;
  }
  .nav-toggle span { display: block; height: 1.6px; background: var(--ink); border-radius: 2px; }

  .site-nav {
    position: absolute; left: 0; right: 0; top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    padding: .5rem 0 1rem;
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .85rem 1.5rem; text-align: center; }
  .site-nav a.active { background: var(--panel); }

  .brand-mark { width: 38px; height: 38px; flex: 0 0 auto; }
  .brand-wordmark { height: auto; max-height: 42px; width: auto; max-width: 100%; min-width: 0; }
  .brand { gap: .45rem; min-width: 0; flex-shrink: 1; }
  .btn-book { padding: .5rem .75rem; font-size: .68rem; letter-spacing: .08em; white-space: nowrap; }
  .header-inner { gap: .5rem; }
}

@media (max-width: 640px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); gap: .9rem; }
  .service-card { padding: .6rem .6rem 1.2rem; }
  .service-card-title { font-size: 1.2rem; margin-top: .8rem; }
  .sc-desc { font-size: .82rem; }
  .sc-more { margin-top: .9rem; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .price-name { max-width: 62%; }
  .hero-panel { min-height: 68vh; justify-content: flex-end; padding-bottom: 3rem; }
  .hero::after {
    background: linear-gradient(to top,
      rgba(246, 242, 240, .96) 0%,
      rgba(246, 242, 240, .74) 45%,
      rgba(231, 217, 216, .25) 75%,
      rgba(231, 217, 216, .1) 100%);
  }
  .insta-grid { grid-template-columns: 1fr 1fr; }
  .insta-card { grid-column: span 2; }
}

/* ---------- 3D dubina ---------- */
.service-grid { perspective: 1100px; }
.service-card { transform-style: preserve-3d; }
.service-grid .service-card.tilt.reveal {
  transition: transform .14s ease-out, box-shadow .35s ease;
  transition-delay: 0s;
  will-change: transform;
  box-shadow: 0 24px 46px rgba(51, 45, 44, .14);
}
.sc-media, .service-card-title, .sc-desc, .sc-more { transition: transform .35s ease; }
.service-card.tilt .sc-media { transform: translateZ(30px); }
.service-card.tilt .service-card-title { transform: translateZ(20px); }
.service-card.tilt .sc-desc { transform: translateZ(12px); }
.service-card.tilt .sc-more { transform: translateZ(18px); }
.hero-bg, .welcome-media img, .split-media img, .welcome-sub > img { will-change: transform; }

/* ---------- 3D sjene i shading na slikama ---------- */
:root {
  --shadow-3d:
    0 1px 2px rgba(50, 45, 48, .10),
    0 10px 20px -8px rgba(50, 45, 48, .16),
    0 32px 64px -24px rgba(50, 45, 48, .32);
}
.split-media img,
.welcome-media img,
.welcome-sub img,
.treatment-media img,
.page-figure img,
.gallery img,
.about-photo img { box-shadow: var(--shadow-3d); }

.sc-media {
  box-shadow: var(--shadow-3d);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .10), rgba(50, 45, 48, .06)) border-box;
}

.insta-grid a.ph {
  box-shadow: var(--shadow-3d);
  transition: transform .35s cubic-bezier(.2, .6, .2, 1), box-shadow .35s ease;
}
.insta-grid a.ph:hover {
  transform: translateY(-6px);
  box-shadow:
    0 2px 4px rgba(50, 45, 48, .10),
    0 18px 32px -10px rgba(50, 45, 48, .20),
    0 44px 80px -26px rgba(50, 45, 48, .38);
}

/* blago unutarnje sjencanje da slika djeluje zaobljeno */
.sc-media::after,
.insta-grid a.ph::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, .10) 0%, rgba(255, 255, 255, 0) 22%, rgba(50, 45, 48, 0) 62%, rgba(50, 45, 48, .14) 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .28), inset 0 -1px 2px rgba(50, 45, 48, .10);
}
.sc-media { position: relative; }
.insta-grid a.ph { position: relative; }

.welcome-media.tilt, .split-media.tilt {
  transition: transform .14s ease-out;
  transition-delay: 0s;
  will-change: transform;
}
.welcome-media, .split-media { transform-style: preserve-3d; }

.welcome-sub-media { margin: 0; height: 100%; transform-style: preserve-3d; }
.welcome-sub-media img { height: 100%; }
.welcome-sub-media.tilt {
  transition: transform .14s ease-out;
  will-change: transform;
}

.acc-section { margin-bottom: 2.5rem; }
.acc-brand {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 0 0 .4rem;
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--rose-pale);
}

h1, h2 { color: var(--rose-deep); }
.hero-copy h1 em { color: var(--rose); }

/* ---------- kolačići ---------- */
.cookie-bar {
  position: fixed; left: 50%; bottom: 1.1rem; transform: translateX(-50%);
  z-index: 200;
  width: min(680px, calc(100vw - 2rem));
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 1.3rem;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 14px;
  box-shadow: var(--shadow-3d);
}
.cookie-bar p { margin: 0; font-size: .86rem; line-height: 1.5; }
.cookie-actions { display: flex; align-items: center; gap: .9rem; flex-shrink: 0; }
.cookie-actions .btn { padding: .55rem 1rem; font-size: .7rem; }
.cookie-decline {
  background: none; border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: .7rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); text-decoration: underline; text-underline-offset: 3px;
  white-space: nowrap;
}
.cookie-decline:hover { color: var(--ink); }
@media (max-width: 640px) {
  .cookie-bar { flex-direction: column; align-items: stretch; text-align: center; gap: .8rem; }
  .cookie-actions { justify-content: center; }
}

/* karta iza pristanka */
.map-consent {
  min-height: 320px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
  background: var(--panel);
  border-radius: var(--r-card);
  text-align: center; padding: 2rem;
}
.map-consent p { margin: 0; color: var(--muted); max-width: 44ch; }
.map-consent .map-addr { color: var(--ink); font-size: .95rem; }
