/* ============================================================
   BRATZ — Premium nadogradnja kose, Beograd na Vodi
   Design system v3: High-Fashion Editorial (belo + crno + pink)
   Fonts: Cormorant Garamond (display) + Inter (body)
   ============================================================ */

:root {
  /* Palette — crno + pink (v3) */
  --white: #FFFFFF;
  --ivory: #FBF8FA;
  --blush: #FBDCEA;
  --blush-soft: #FDF1F6;
  --rose: #EC4D8C;
  --rose-deep: #C9316E;
  --gold: #EC4D8C;
  --gold-soft: #F7C9DC;
  --ink: #0E0A0C;
  --stone: #575159; /* AA kontrast 4.5:1+ na belom */
  --line: #EFE6EB;

  /* Type */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Rhythm */
  --section-pad: clamp(72px, 11vw, 140px);
  --container: 1240px;
  --radius: 2px;

  --shadow-soft: 0 24px 70px rgba(36, 28, 31, 0.09);
  --transition: all .35s cubic-bezier(.25,.46,.45,.94);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blush); color: var(--ink); }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; }

/* ---------- Typography (editorial scale) ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 500; line-height: 1.05; letter-spacing: .005em; }
.display-xl { font-size: clamp(2.9rem, 6.6vw, 5.6rem); line-height: 1.02; }
.display-lg { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.08; }
.display-md { font-size: clamp(1.65rem, 3vw, 2.4rem); }
.display-sm { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
.lead { font-size: clamp(1.05rem, 1.5vw, 1.22rem); color: var(--stone); line-height: 1.8; font-weight: 400; }
em.accent { font-style: italic; color: var(--rose); font-weight: 500; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  font-size: .72rem; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--rose);
}
.eyebrow::before { content: ""; width: 44px; height: 1px; background: var(--gold); }

/* ---------- Layout ---------- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.container--narrow { max-width: 840px; }
.section { padding: var(--section-pad) 0; position: relative; }
.section--ivory { background: var(--ivory); }
.section--blush { background: var(--blush-soft); }
.section-head { max-width: 720px; margin-bottom: clamp(44px, 6vw, 72px); }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center .eyebrow::after { content: ""; width: 44px; height: 1px; background: var(--gold); }
.section-head h2 { margin: 18px 0 20px; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(36px, 5.5vw, 76px); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 36px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2.5vw, 30px); }

/* Ghost watermark word iza sekcija */
.ghost-wrap { position: relative; }
.ghost-word {
  position: absolute; top: -6px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(5rem, 14vw, 11rem); line-height: 1; color: var(--blush);
  opacity: .5; pointer-events: none; user-select: none; white-space: nowrap; z-index: 0;
}
.ghost-wrap > *:not(.ghost-word) { position: relative; z-index: 1; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  padding: 18px 42px;
  font-size: .78rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  border-radius: var(--radius); transition: var(--transition); text-align: center;
  position: relative; overflow: hidden;
}
.btn--primary { background: var(--rose); color: var(--white); }
.btn--primary:hover { background: var(--rose-deep); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(236,77,140,.42); }
.btn--outline { border: 1px solid var(--ink); color: var(--ink); background: transparent; }
.btn--outline:hover { background: var(--ink); color: var(--white); }
.btn--light { background: var(--white); color: var(--ink); }
.btn--light:hover { background: var(--blush); }
.btn--lg { padding: 21px 52px; font-size: .84rem; }
.btn .arr { transition: transform .35s ease; display: inline-block; }
.btn:hover .arr { transform: translateX(5px); }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s ease;
}
.site-header.scrolled { box-shadow: 0 10px 40px rgba(36,28,31,.07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 18px; }
.logo { font-family: var(--font-display); font-size: 1.65rem; font-weight: 600; letter-spacing: .3em; white-space: nowrap; line-height: 1; }
.logo span { color: var(--rose); }
.logo-tag { display: block; font-family: var(--font-body); font-size: .52rem; font-weight: 600; letter-spacing: .34em; text-transform: uppercase; color: var(--stone); margin-top: 3px; white-space: nowrap; }

.main-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.main-nav > li { position: relative; }
.main-nav a.nav-link {
  font-size: .74rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 29px 0; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition); white-space: nowrap; position: relative;
}
.main-nav a.nav-link::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 22px; height: 1px;
  background: var(--rose); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.main-nav a.nav-link:hover { color: var(--rose); }
.main-nav a.nav-link:hover::after { transform: scaleX(1); }
.nav-arrow { font-size: .55rem; transition: var(--transition); }
.has-drop:hover .nav-arrow { transform: rotate(180deg); }

.drop-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(10px);
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-soft);
  padding: 30px 34px; min-width: 300px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.has-drop:hover .drop-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.drop-panel a { display: block; padding: 9px 0; font-size: .92rem; color: var(--stone); transition: var(--transition); white-space: nowrap; }
.drop-panel a:hover { color: var(--rose); padding-left: 6px; }
.drop-panel a strong { color: var(--ink); font-weight: 600; }
.drop-panel a:hover strong { color: var(--rose); }
.drop-label { font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); margin: 14px 0 6px; }
.drop-label:first-child { margin-top: 0; }
.drop-badge { display: inline-block; font-size: .58rem; font-weight: 700; letter-spacing: .08em; background: var(--blush); color: var(--rose-deep); padding: 2px 8px; border-radius: 20px; margin-left: 8px; vertical-align: middle; }

.header-cta { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.header-phone { font-size: .85rem; font-weight: 600; letter-spacing: .04em; white-space: nowrap; }
.header-phone:hover { color: var(--rose); }
.header-cta .btn { padding: 13px 24px; font-size: .68rem; white-space: nowrap; }

/* Mobile nav */
.nav-toggle { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; width: 40px; height: 40px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transform-origin: center; transition: transform .3s cubic-bezier(.22,.61,.36,1), opacity .2s ease; }
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 78px 0 0 0; z-index: 96;
  background: var(--white); padding: 26px 24px calc(26px + env(safe-area-inset-bottom));
  overflow-y: auto; -webkit-overflow-scrolling: touch;
  opacity: 0; visibility: hidden; transform: translateY(-10px); pointer-events: none;
  transition: opacity .28s ease, transform .34s cubic-bezier(.22,.61,.36,1), visibility .34s;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
.mobile-menu a { display: block; padding: 15px 0; font-size: 1.1rem; font-family: var(--font-display); border-bottom: 1px solid var(--line); }
.mobile-menu details { border-bottom: 1px solid var(--line); }
.mobile-menu details summary { padding: 15px 0; font-size: 1.1rem; font-family: var(--font-display); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
.mobile-menu details summary::-webkit-details-marker { display: none; }
.mobile-menu details summary::after { content: "+"; font-size: 1.3rem; color: var(--rose); transition: transform .3s ease; }
.mobile-menu details[open] summary::after { content: "−"; }
.mobile-menu details a { padding: 10px 0 10px 18px; font-size: .95rem; font-family: var(--font-body); color: var(--stone); border-bottom: none; }
.mobile-menu details[open] a { animation: mm-fade .3s ease both; }
@keyframes mm-fade { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.mobile-menu .btn { margin-top: 24px; width: 100%; }
body.menu-open { overflow: hidden; }
@media (min-width: 1081px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: clamp(600px, 92vh, 860px); display: flex; align-items: center; overflow: hidden; background: var(--ivory); }
.hero .container { width: 100%; }
.hero-media { position: absolute; inset: -6% 0; will-change: transform; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: 78% 28%; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(92deg,
    rgba(251,247,244,.99) 0%,
    rgba(251,247,244,.95) 30%,
    rgba(251,247,244,.78) 48%,
    rgba(251,247,244,.25) 72%,
    rgba(251,247,244,.05) 100%);
}
.hero-content { position: relative; z-index: 2; max-width: 640px; padding: 90px 0; }
.hero-content h1 { margin: 26px 0 26px; text-wrap: balance; }
.hero-content .lead { margin-bottom: 40px; max-width: 470px; color: #6E6062; }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 30px; font-size: .84rem; color: var(--stone); }
.hero-note svg { flex-shrink: 0; }
.hero-scroll {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 2;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--stone);
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-scroll::after { content: ""; width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scrollPulse 2.2s ease-in-out infinite; }
@keyframes scrollPulse { 0%,100% { opacity: .35; } 50% { opacity: 1; } }

/* ---------- Marquee strip ---------- */
.marquee { overflow: hidden; border-top: 1px solid var(--gold-soft); border-bottom: 1px solid var(--gold-soft); background: var(--white); padding: 20px 0; }
.marquee-track { display: flex; width: max-content; animation: marquee 38s linear infinite; }
.marquee span {
  font-family: var(--font-display); font-size: 1.15rem; font-style: italic; color: var(--ink);
  padding: 0 28px; white-space: nowrap; letter-spacing: .06em;
}
.marquee span i { font-style: normal; color: var(--gold); padding-right: 56px; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ---------- Trust bar ---------- */
.trust-bar { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--white); }
.trust-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 34px 20px; text-align: center; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item strong { display: block; font-family: var(--font-display); font-size: 2rem; color: var(--rose); line-height: 1.1; }
.trust-item span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--stone); }

/* ---------- Editorial framed image ---------- */
.frame-img { position: relative; }
.frame-img img { position: relative; z-index: 1; box-shadow: var(--shadow-soft); }
.frame-img::before {
  content: ""; position: absolute; inset: 22px -22px -22px 22px;
  border: 1px solid var(--gold-soft); z-index: 0;
}
.frame-img--left::before { inset: 22px 22px -22px -22px; }
.frame-img figcaption, .img-caption {
  margin-top: 30px; font-family: var(--font-display); font-style: italic;
  font-size: 1.02rem; color: var(--stone);
}

/* ---------- Cards: methods ---------- */
.method-card {
  background: var(--white); border: 1px solid var(--line);
  transition: var(--transition); display: flex; flex-direction: column;
}
.method-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-6px); border-color: var(--gold-soft); }
.card-media { position: relative; overflow: hidden; }
.method-card img { aspect-ratio: 4/3; object-fit: cover; transition: transform .8s cubic-bezier(.25,.46,.45,.94), filter .8s ease; }
.method-card:hover img { transform: scale(1.05); }
.method-body { padding: 30px 28px; flex: 1; display: flex; flex-direction: column; }
.method-num { font-family: var(--font-display); font-style: italic; font-size: .95rem; color: var(--gold); display: block; margin-bottom: 8px; }
.method-body h3 { font-size: 1.5rem; margin-bottom: 10px; }
.method-body p { font-size: .92rem; color: var(--stone); flex: 1; }
.method-meta { display: flex; gap: 18px; margin: 18px 0; font-size: .72rem; color: var(--gold); letter-spacing: .1em; text-transform: uppercase; }
.method-link { font-size: .74rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--rose); display: inline-flex; align-items: center; gap: 8px; }
.method-link::after { content: "→"; transition: var(--transition); }
.method-link:hover::after { transform: translateX(6px); }

.card-badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.94); color: var(--rose-deep); backdrop-filter: blur(4px);
  font-size: .6rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 15px; border-radius: 20px;
}

/* ---------- Before / After slider ---------- */
.ba-slider {
  position: relative; overflow: hidden; user-select: none;
  aspect-ratio: 3/4; background: var(--blush-soft);
  cursor: ew-resize; touch-action: none;
}
.ba-slider img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.ba-after { z-index: 1; }
.ba-before { z-index: 2; clip-path: inset(0 calc(100% - var(--ba, 50%)) 0 0); }
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: var(--ba, 50%); z-index: 3;
  width: 2px; background: var(--white); transform: translateX(-1px);
  box-shadow: 0 0 14px rgba(0,0,0,.28);
}
.ba-handle::after {
  content: "◂ ▸"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--white); color: var(--ink); font-size: .68rem; letter-spacing: 2px;
  width: 54px; height: 54px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,.2);
}
.ba-tag { position: absolute; bottom: 14px; z-index: 4; font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; padding: 7px 13px; background: rgba(255,255,255,.94); border-radius: 20px; pointer-events: none; }
.ba-tag--before { left: 14px; }
.ba-tag--after { right: 14px; }
.ba-card figcaption { padding: 22px 6px; }
.ba-card figcaption strong { display: block; font-family: var(--font-display); font-size: 1.3rem; font-weight: 500; }
.ba-card figcaption span { font-size: .82rem; color: var(--stone); }

/* ---------- Pull band (full-bleed slika + citat) ---------- */
.pull-band { position: relative; min-height: 480px; display: flex; align-items: center; overflow: hidden; }
.pull-band > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pull-band::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(36,28,31,.32), rgba(36,28,31,.42)); }
.pull-band .container { position: relative; z-index: 2; text-align: center; }
.pull-band blockquote {
  font-family: var(--font-display); font-style: italic; font-weight: 500;
  font-size: clamp(1.7rem, 4vw, 3rem); line-height: 1.25; color: var(--white);
  max-width: 820px; margin: 0 auto;
}
.pull-band cite { display: block; margin-top: 26px; font-family: var(--font-body); font-style: normal; font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold-soft); }

/* ---------- Pricing ---------- */
.price-tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(22px, 3vw, 34px); align-items: stretch; }
.tier {
  background: var(--white); border: 1px solid var(--line); padding: 48px 38px;
  display: flex; flex-direction: column; text-align: center; transition: var(--transition); position: relative;
}
.tier:hover { box-shadow: var(--shadow-soft); transform: translateY(-4px); }
.tier--featured { border-color: var(--rose); border-width: 2px; }
.tier-flag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--rose); color: var(--white); white-space: nowrap;
  font-size: .62rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  padding: 8px 20px; border-radius: 20px;
}
.tier h3 { font-size: 1.6rem; }
.tier-sub { font-size: .82rem; color: var(--stone); margin: 8px 0 24px; }
.tier-price { font-family: var(--font-display); font-size: 2.5rem; color: var(--rose); line-height: 1; }
.tier-price small { font-size: .95rem; color: var(--stone); font-family: var(--font-body); }
.tier ul { margin: 28px 0; text-align: left; flex: 1; }
.tier ul li { padding: 10px 0 10px 30px; font-size: .9rem; border-bottom: 1px solid var(--line); position: relative; }
.tier ul li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.tier ul li:last-child { border-bottom: none; }
.price-note { text-align: center; margin-top: 40px; font-size: .88rem; color: var(--stone); }
.price-note a { color: var(--rose); font-weight: 600; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); }
.price-table th { font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--stone); text-align: left; padding: 16px 20px; border-bottom: 2px solid var(--ink); }
.price-table td { padding: 19px 20px; border-bottom: 1px solid var(--line); font-size: .95rem; }
.price-table td:last-child, .price-table th:last-child { text-align: right; white-space: nowrap; }
.price-table .pt-price { font-weight: 600; color: var(--rose-deep); }
.price-table tr:hover td { background: var(--blush-soft); }
.pt-hl td { background: var(--blush-soft); }
.pt-hl td:first-child { border-left: 3px solid var(--rose); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 28px 4px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 500;
  transition: var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.6rem; color: var(--rose); flex-shrink: 0; transition: var(--transition); font-family: var(--font-body); font-weight: 300; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--rose-deep); }
.faq-body { padding: 0 4px 30px; color: var(--stone); max-width: 680px; }

/* ---------- Testimonials ---------- */
.review-card { background: var(--white); border: 1px solid var(--line); padding: 38px 34px; display: flex; flex-direction: column; }
.review-stars { color: var(--gold); font-size: 1rem; letter-spacing: 4px; margin-bottom: 16px; }
.review-card blockquote { font-family: var(--font-display); font-size: 1.2rem; font-style: italic; line-height: 1.55; flex: 1; }
.review-who { margin-top: 24px; display: flex; align-items: center; gap: 14px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--blush); display: flex; align-items: center; justify-content: center; font-weight: 600; color: var(--rose-deep); }
.review-who strong { display: block; font-size: .9rem; }
.review-who span { font-size: .78rem; color: var(--stone); }

/* ---------- Steps ---------- */
.steps { counter-reset: step; }
.step { display: grid; grid-template-columns: 96px 1fr; gap: 30px; padding: 38px 0; border-bottom: 1px solid var(--line); align-items: start; }
.step:last-child { border-bottom: none; }
.step::before {
  counter-increment: step; content: "0" counter(step);
  font-family: var(--font-display); font-style: italic; font-size: 3.4rem; color: var(--gold-soft); font-weight: 500; line-height: .9;
}
.step h3 { font-size: 1.45rem; margin-bottom: 10px; }
.step p { color: var(--stone); font-size: .95rem; max-width: 580px; }

/* ---------- Blog cards ---------- */
.blog-card { background: var(--white); border: 1px solid var(--line); transition: var(--transition); display: flex; flex-direction: column; }
.blog-card:hover { box-shadow: var(--shadow-soft); transform: translateY(-5px); }
.blog-card .card-media img { aspect-ratio: 16/10; object-fit: cover; transition: transform .8s ease; }
.blog-card:hover .card-media img { transform: scale(1.04); }
.blog-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.blog-kicker { font-size: .64rem; font-weight: 700; letter-spacing: .24em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.blog-body h3 { font-size: 1.4rem; line-height: 1.2; margin-bottom: 12px; }
.blog-body h3 a:hover { color: var(--rose-deep); }
.blog-body p { font-size: .9rem; color: var(--stone); flex: 1; }
.blog-meta { margin-top: 18px; font-size: .76rem; color: var(--stone); display: flex; gap: 14px; }

/* Blog article */
.article-body { max-width: 760px; margin: 0 auto; }
.article-body h2 { font-size: clamp(1.6rem, 2.8vw, 2.1rem); margin: 48px 0 18px; }
.article-body p { margin-bottom: 18px; color: #4A3F42; }
.article-body ul, .article-body ol { margin: 0 0 18px 22px; color: #4A3F42; }
.article-body ul li { list-style: disc; padding: 4px 0; }
.article-body ol li { list-style: decimal; padding: 4px 0; }
.article-body a { color: var(--rose-deep); font-weight: 500; border-bottom: 1px solid var(--gold-soft); }
.article-body a:hover { color: var(--rose); }
.article-body table { margin-bottom: 18px; }
.article-hero { max-width: 860px; margin: 0 auto clamp(36px, 5vw, 56px); }
.article-hero img { aspect-ratio: 16/8; object-fit: cover; box-shadow: var(--shadow-soft); }
.article-cta {
  background: var(--blush-soft); border: 1px solid var(--gold-soft); padding: 36px;
  text-align: center; margin: 52px 0 0;
}
.article-cta h3 { font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: var(--stone); margin-bottom: 22px; }

/* ---------- CTA band ---------- */
.cta-band { background: var(--blush); text-align: center; position: relative; overflow: hidden; }
.cta-band::before {
  content: "BRATZ"; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  font-family: var(--font-display); font-weight: 600; font-size: clamp(10rem, 30vw, 24rem);
  color: rgba(255,255,255,.35); letter-spacing: .1em; pointer-events: none; user-select: none;
}
.cta-band > .container { position: relative; z-index: 1; }
.cta-band h2 { max-width: 680px; margin: 18px auto 22px; }
.cta-band .lead { max-width: 540px; margin: 0 auto 38px; }
.cta-tel { display: block; font-family: var(--font-display); font-size: clamp(2rem, 4.4vw, 3rem); margin-top: 30px; color: var(--rose-deep); font-style: italic; }
.cta-tel:hover { color: var(--ink); }

/* ---------- Media split ---------- */
.media-split .content h2 { margin: 18px 0 22px; }
.media-split .content p { color: var(--stone); margin-bottom: 16px; }
.check-list li { padding: 11px 0 11px 34px; position: relative; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 11px; color: var(--rose); font-weight: 700; }

/* ---------- Forms ---------- */
.form-card { background: var(--white); border: 1px solid var(--line); padding: clamp(30px, 4vw, 52px); box-shadow: var(--shadow-soft); }
.form-grid { display: grid; gap: 18px; }
.form-field label { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--stone); margin-bottom: 8px; }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 16px 17px; font: inherit; font-size: .95rem;
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--ivory);
  transition: var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--rose); background: var(--white);
}
.form-note { font-size: .78rem; color: var(--stone); margin-top: 14px; }
.form-success { display: none; text-align: center; padding: 44px 20px; }
.form-success h3 { color: var(--rose-deep); margin-bottom: 10px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding: 84px 0 0; position: relative; overflow: hidden; }
.footer-word {
  position: absolute; bottom: -6%; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 600; letter-spacing: .12em;
  font-size: clamp(7rem, 22vw, 19rem); line-height: .8; color: rgba(255,255,255,.045);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: clamp(28px, 3.5vw, 48px); padding-bottom: 64px; position: relative; z-index: 1; }
.footer-brand .logo { color: var(--white); }
.footer-brand p { font-size: .88rem; margin-top: 20px; max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; }
.footer-col a { display: block; padding: 6px 0; font-size: .9rem; transition: var(--transition); }
.footer-col a:hover { color: var(--white); padding-left: 5px; }
.footer-contact p { font-size: .9rem; padding: 6px 0; }
.footer-contact a { color: var(--white); font-weight: 500; }
.footer-social { display: flex; gap: 14px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: var(--transition); padding: 0; }
.footer-social a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: .76rem; color: rgba(255,255,255,.4); position: relative; z-index: 1; }

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 90;
  background: var(--white); border-top: 1px solid var(--line);
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  grid-template-columns: 1fr 1fr; gap: 10px;
  box-shadow: 0 -8px 24px rgba(36,28,31,.08);
}
.sticky-cta .btn { padding: 14px 10px; font-size: .7rem; }

/* ---------- Breadcrumbs ---------- */
.crumbs { padding: 20px 0; font-size: .76rem; color: var(--stone); letter-spacing: .04em; }
.crumbs a:hover { color: var(--rose); }
.crumbs span { margin: 0 9px; color: var(--gold-soft); }

/* ---------- Page hero ---------- */
.page-hero { background: var(--ivory); padding: clamp(52px, 8vw, 100px) 0; position: relative; overflow: hidden; }
.page-hero h1 { margin: 20px 0 18px; max-width: 820px; text-wrap: balance; }
.page-hero .lead { max-width: 640px; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.5vw, 30px); }
.gallery-grid--2 { grid-template-columns: repeat(2, 1fr); }
.gallery-grid figure { overflow: hidden; }
.gallery-grid figure img { transition: transform .8s ease; }
.gallery-grid figure:hover img { transform: scale(1.04); }
.gallery-note { text-align: center; font-size: .8rem; color: var(--stone); margin-top: 36px; font-style: italic; }

/* ---------- Utility ---------- */
.mt-0 { margin-top: 0; } .mb-24 { margin-bottom: 24px; } .mb-36 { margin-bottom: 36px; }
.tc { text-align: center; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; } .reveal-d2 { transition-delay: .24s; } .reveal-d3 { transition-delay: .36s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .hero-media { transform: none !important; }
  .mobile-menu, .nav-toggle span, .mobile-menu details[open] a { transition: none; animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1240px) {
  .header-phone { display: none; }
  .main-nav { gap: 18px; }
  .main-nav a.nav-link { font-size: .7rem; letter-spacing: .1em; }
}
@media (max-width: 1080px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  /* bez parallax promocije na dodir — glatkiji scroll */
  .hero-media { will-change: auto; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .price-tiers, .gallery-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .sticky-cta { display: grid; }
  body { padding-bottom: 70px; }
  .step { grid-template-columns: 60px 1fr; gap: 18px; }
  .hero { min-height: 88vh; }
  .hero-media img { object-position: 70% 20%; }
  .hero-media::after { background: linear-gradient(180deg, rgba(251,247,244,.97) 0%, rgba(251,247,244,.88) 42%, rgba(251,247,244,.55) 70%, rgba(251,247,244,.25) 100%); }
  .header-cta .btn { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .frame-img::before { display: none; }
  .hero-scroll { display: none; }
  .pull-band { min-height: 380px; }
}
