/* tokeni */
:root {
  --bg: #ffffff;
  --bg-soft: #f5f7f5;

  --panel-bg: #e7efe9;
  --panel-cell: #ffffff;
  --panel-line: #cfe0d5;
  --cta-bg: #dbe9e0;
  --foot-bg: #edf1ee;
  --foot-line: #dde3dd;
  --ink: #101613;
  --ink-2: #566259;
  --ink-3: #666f69;
  --line: #e3e7e2;
  --line-soft: #eff2ee;
  --brand: #055b31;
  --brand-hover: #033f21;
  --brand-tint: #eaf3ee;
  --brand-line: #c7dfd2;
  --accent: #7fb539;
  --danger: #a3281f;

  --ff: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;

  --fs-hero: clamp(2.35rem, 1.3rem + 3.5vw, 3.9rem);
  --fs-h2: clamp(1.7rem, 1.1rem + 2vw, 2.5rem);
  --fs-h3: clamp(1.1rem, 1rem + .35vw, 1.3rem);
  --fs-lead: clamp(1.03rem, .97rem + .28vw, 1.18rem);
  --fs-sm: .875rem;
  --fs-xs: .78rem;

  --page: 1200px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
  --sec: clamp(3.75rem, 7vw, 6.5rem);
  --r: 4px;
  --r-lg: 10px;
  --head-h: 78px;

  --ease: cubic-bezier(.22, .8, .3, 1);
  --shadow: 0 1px 2px rgba(16, 22, 19, .04), 0 8px 24px rgba(16, 22, 19, .06);
  --shadow-lg: 0 24px 60px rgba(13, 23, 18, .16);
}

/* reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--head-h) + 24px);
}

body {
  font-family: var(--ff);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button, input, select, textarea { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
ul, ol { list-style: none; }
table { border-collapse: collapse; width: 100%; }

a { color: var(--brand); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--brand-hover); }

:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; border-radius: 2px; }
::selection { background: var(--brand); color: #fff; }

h1, h2, h3, h4 {
  font-weight: 650;
  line-height: 1.12;
  letter-spacing: -.022em;
  color: var(--ink);
  text-wrap: balance;
}
h1 { font-size: var(--fs-hero); letter-spacing: -.035em; }
h2 { font-size: var(--fs-h2); letter-spacing: -.028em; }
h3 { font-size: var(--fs-h3); letter-spacing: -.015em; line-height: 1.3; }
p { text-wrap: pretty; }

/* pomocne klase */
.wrap { width: 100%; max-width: var(--page); margin-inline: auto; padding-inline: var(--pad); }

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.skip {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--brand); color: #fff;
  padding: .7rem 1.1rem; border-radius: var(--r);
  font-weight: 600; text-decoration: none;
  transition: top .18s var(--ease);
}
.skip:focus { top: 1rem; color: #fff; }

.eyebrow {
  display: flex; align-items: center; gap: .6rem;
  font-size: var(--fs-xs); font-weight: 650;
  letter-spacing: .13em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 1.5rem; height: 2px; background: var(--accent); flex: none; }
.eyebrow--light { color: var(--brand); }

.lead { font-size: var(--fs-lead); color: var(--ink-2); max-width: 58ch; }

/* gumbi */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  --btn-bd: var(--brand);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .85rem 1.5rem;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1px solid var(--btn-bd); border-radius: var(--r);
  font-size: .95rem; font-weight: 600; letter-spacing: -.005em;
  text-decoration: none; white-space: nowrap;
  transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease), transform .18s var(--ease);
}
.btn:hover { --btn-bg: var(--brand-hover); --btn-bd: var(--brand-hover); color: var(--btn-fg); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn__ico { transition: transform .18s var(--ease); }
.btn:hover .btn__ico { transform: translateX(3px); }

.btn--ghost { --btn-bg: transparent; --btn-fg: var(--ink); --btn-bd: var(--line); }
.btn--ghost:hover { --btn-bg: var(--bg-soft); --btn-fg: var(--ink); --btn-bd: var(--ink-3); }
.btn--sm { padding: .6rem 1.05rem; font-size: .875rem; }

/* zaglavlje */
.site-head {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s var(--ease);
}
.site-head.is-stuck { box-shadow: 0 1px 0 var(--line), 0 6px 22px rgba(16, 22, 19, .06); }
.site-head__in { display: flex; align-items: center; gap: clamp(1rem, 3vw, 2.5rem); min-height: var(--head-h); }

.brand {
  display: inline-flex; flex-direction: column; gap: .3rem;
  text-decoration: none; flex: none;
}
.brand__logo { width: 132px; height: auto; }
.brand__sub {
  display: block; font-size: .58rem; font-weight: 600;
  letter-spacing: .17em; text-transform: uppercase;
  color: var(--ink-3); line-height: 1;
}
@media (max-width: 420px) { .brand__logo { width: 112px; } .brand__sub { font-size: .52rem; letter-spacing: .14em; } }

.mainnav { margin-right: auto; }
.mainnav__list { display: flex; align-items: center; gap: clamp(.25rem, 1.4vw, 1rem); }
.mainnav__link {
  position: relative; display: block;
  padding: .5rem .55rem;
  font-size: .935rem; font-weight: 550; letter-spacing: -.008em;
  color: var(--ink-2); text-decoration: none;
  transition: color .16s var(--ease);
}
.mainnav__link::after {
  content: ""; position: absolute;
  left: .55rem; right: .55rem; bottom: .1rem; height: 2px;
  background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.mainnav__link:hover { color: var(--ink); }
.mainnav__link:hover::after { transform: scaleX(1); }
.mainnav__link[aria-current="page"] { color: var(--ink); font-weight: 650; }
.mainnav__link[aria-current="page"]::after { transform: scaleX(1); }

.head-tel {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .935rem; font-weight: 650; letter-spacing: -.01em;
  color: var(--ink); text-decoration: none; white-space: nowrap;
}
.head-tel svg { width: 17px; height: 17px; color: var(--brand); }
.head-tel:hover { color: var(--brand); }

.burger { display: none; width: 44px; height: 44px; position: relative; margin-right: -10px; flex: none; }
.burger span, .burger::before, .burger::after {
  content: ""; position: absolute; left: 11px;
  width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform .22s var(--ease), opacity .16s var(--ease), top .22s var(--ease);
}
.burger::before { top: 15px; }
.burger span { top: 21px; }
.burger::after { top: 27px; }
body.nav-open .burger::before { top: 21px; transform: rotate(45deg); }
body.nav-open .burger span { opacity: 0; }
body.nav-open .burger::after { top: 21px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .burger { display: block; margin-left: auto; }
  .head-tel, .site-head > .wrap > .btn { display: none; }
  .mainnav {
    position: fixed; inset: var(--head-h) 0 auto 0;
    background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem var(--pad) 1.5rem;
    transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
    max-height: calc(100dvh - var(--head-h)); overflow-y: auto;
  }
  body.nav-open .mainnav { opacity: 1; visibility: visible; transform: translateY(0); }
  .mainnav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .mainnav__link { padding: .95rem .25rem; font-size: 1.05rem; border-bottom: 1px solid var(--line-soft); }
  .mainnav__link::after { display: none; }
  .mainnav__cta { display: grid; gap: .6rem; margin-top: 1.25rem; }
  .mainnav__cta .btn { width: 100%; }
}
@media (min-width: 901px) { .mainnav__cta { display: none; } }

/* hero */
.hero { padding: clamp(2.5rem, 5vw, 4.5rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__in {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__title { margin-top: 1.1rem; }
.hero__title em { font-style: normal; color: var(--brand); }
.hero__lead { margin-top: 1.35rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero__points {
  display: grid; gap: .7rem;
  margin-top: 2.25rem; padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}
.hero__points li { display: flex; align-items: flex-start; gap: .65rem; font-size: .93rem; color: var(--ink-2); }
.hero__points svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: .22rem; }

.hero__fig { position: relative; }
.hero__fig img { width: 100%; border-radius: var(--r-lg); object-fit: cover; aspect-ratio: 4 / 5; }
.hero__stamp {
  position: absolute; left: -1.5rem; bottom: 2rem;
  display: flex; align-items: center; gap: .85rem;
  max-width: 17rem; padding: 1rem 1.25rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow);
}
.hero__stamp svg { width: 26px; height: 26px; color: var(--brand); flex: none; }
.hero__stamp b { display: block; font-size: .95rem; letter-spacing: -.015em; }
.hero__stamp span { display: block; font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.4; }

@media (max-width: 980px) {
  .hero__in { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero__fig { order: -1; }
  .hero__fig img { aspect-ratio: 16 / 10; }
  .hero__stamp { left: auto; right: 1rem; bottom: -1rem; }
}
@media (max-width: 560px) {
  .hero__stamp { position: static; margin-top: 1rem; max-width: none; }
  .hero__actions .btn { flex: 1 1 100%; }
}

/* sekcije */
.section { padding-block: var(--sec); }
.section--soft { background: var(--bg-soft); border-block: 1px solid var(--line); }
.section--tight { padding-block: clamp(2.5rem, 5vw, 4rem); }

.sec-head { max-width: 60ch; margin-bottom: clamp(2.25rem, 4vw, 3.25rem); }
.sec-head h2 { margin-top: 1rem; }
.sec-head .lead { margin-top: 1rem; }
.sec-head--center { margin-inline: auto; text-align: center; }
.sec-head--center .eyebrow { justify-content: center; }
.sec-head--center .lead { margin-inline: auto; }
.sec-head--split {
  max-width: none; display: flex; flex-wrap: wrap;
  align-items: flex-end; justify-content: space-between; gap: 1.5rem 2rem;
}
.sec-head--split > div { max-width: 52ch; }

.card__more {
  margin-top: auto; padding-top: .85rem; padding-bottom: .2rem;
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; text-decoration: none; color: var(--brand);
}
.card__more svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.card__more:hover svg { transform: translateX(3px); }

/* istaknuti panel */
.panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: clamp(1.75rem, 4vw, 3.25rem);
  background: var(--panel-bg);
  color: var(--ink-2);
  border: 1px solid var(--panel-line);
  border-radius: var(--r-lg);
}
.panel h2, .panel h3 { color: var(--ink); }
.panel p { margin-top: 1rem; font-size: .97rem; }
.panel__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }
.panel__grid { display: grid; gap: 1px; background: var(--panel-line); border-radius: var(--r); overflow: hidden; }
.panel__cell { background: var(--panel-cell); padding: 1.25rem 1.35rem; }
.panel__cell b { display: block; color: var(--ink); font-size: .95rem; letter-spacing: -.015em; }
.panel__cell span { display: block; font-size: var(--fs-sm); margin-top: .3rem; }
@media (max-width: 880px) { .panel { grid-template-columns: 1fr; } }

/* dvostupcani blok */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.split--flip .split__fig { order: 2; }
.split__fig img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3 / 2; object-fit: cover; }
.split__body h2 + p, .split__body h3 + p { margin-top: 1.1rem; }
.split__body p + p { margin-top: .9rem; }
.split__body p { color: var(--ink-2); }
@media (max-width: 880px) {
  .split { grid-template-columns: 1fr; }
  .split--flip .split__fig { order: -1; }
}

.checks { display: grid; gap: .7rem; margin-top: 1.5rem; }
.checks li { display: flex; align-items: flex-start; gap: .65rem; font-size: .95rem; }
.checks svg { width: 18px; height: 18px; color: var(--brand); flex: none; margin-top: .24rem; }

.tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.tags li {
  font-size: var(--fs-sm); padding: .38rem .8rem;
  border: 1px solid var(--line); border-radius: 999px;
  color: var(--ink-2); background: var(--bg);
}
.kit { margin-top: 2rem; padding-top: 1.75rem; border-top: 1px solid var(--line); }
.kit h3 { font-size: 1rem; letter-spacing: .01em; }

/* koraci */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px; background: var(--line);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
}
@media (min-width: 620px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .steps { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 620px) { .steps--3 { grid-template-columns: repeat(3, 1fr); } }
.step { background: var(--bg); padding: clamp(1.5rem, 3vw, 2.15rem); }
.step__n {
  display: block; margin-bottom: 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  color: var(--accent); font-variant-numeric: tabular-nums;
}
.step h3 { margin-bottom: .6rem; }
.step p { font-size: .935rem; color: var(--ink-2); }

/* galerija */
.grid-gal {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
  gap: clamp(.75rem, 1.6vw, 1.15rem);
}
.gal-item { position: relative; display: block; overflow: hidden; border-radius: var(--r-lg); background: var(--bg-soft); }
.gal-item img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .4s var(--ease); }
.gal-item:hover img { transform: scale(1.04); }
.gal-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 2.5rem .95rem .8rem;
  background: linear-gradient(to top, rgba(13, 23, 18, .82), transparent);
  color: #fff; font-size: var(--fs-sm); font-weight: 600;
}

.wip {
  border: 1px dashed var(--line); border-radius: var(--r-lg);
  background: var(--bg-soft); text-align: center;
  padding: clamp(2.5rem, 6vw, 4.5rem) 1.5rem;
}
.wip svg { width: 40px; height: 40px; color: var(--ink-3); margin: 0 auto 1.15rem; }
.wip b { display: block; font-size: 1.1rem; letter-spacing: -.02em; }
.wip p { margin: .6rem auto 0; color: var(--ink-2); max-width: 46ch; font-size: .95rem; }
.wip .btn { margin-top: 1.75rem; }

/* cta traka */
.cta {
  background: var(--cta-bg); color: var(--ink-2);
  border-block: 1px solid var(--panel-line);
  padding-block: clamp(3.25rem, 6vw, 5rem); text-align: center;
}
.cta h2 { color: var(--ink); margin-top: 1.1rem; }
.cta p { margin: 1.15rem auto 0; max-width: 52ch; }
.cta .eyebrow { justify-content: center; }
.cta__actions {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .85rem 1.5rem; margin-top: 2.15rem;
}
.cta__tel {
  display: inline-flex; align-items: center; gap: .5rem; padding: .5rem .25rem;
  color: var(--ink); font-weight: 650; font-size: 1.05rem;
  text-decoration: none; letter-spacing: -.02em;
}
.cta__tel svg { width: 19px; height: 19px; color: var(--brand); }
.cta__tel:hover { color: var(--brand); }

/* naslov podstranice */
.page-head { border-bottom: 1px solid var(--line); background: var(--bg-soft); padding-block: clamp(2.5rem, 5vw, 4rem); }
.page-head h1 { margin-top: .9rem; max-width: 24ch; }
.page-head .tag { margin-top: 1.1rem; }
.page-head .lead { margin-top: 1.25rem; }

.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; font-size: var(--fs-xs); color: var(--ink-3); }
.crumbs a { display: inline-block; padding: .2rem 0; color: var(--ink-3); text-decoration: none; }
.crumbs a:hover { color: var(--brand); text-decoration: underline; }
.crumbs li { display: flex; align-items: center; gap: .45rem; }
.crumbs li + li::before { content: "/"; color: var(--ink-3); opacity: .5; }
.crumbs [aria-current] { color: var(--ink-2); }

/* cjenik */
.price-notes {
  display: grid; gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  margin-bottom: clamp(2.25rem, 4vw, 3rem);
}
.price-note {
  display: flex; gap: 1rem;
  padding: 1.35rem 1.5rem;
  border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg);
}
.price-note--accent { background: var(--brand-tint); border-color: var(--brand-line); }
.price-note svg { width: 24px; height: 24px; color: var(--brand); flex: none; margin-top: .15rem; }
.price-note b { display: block; font-size: 1rem; letter-spacing: -.02em; }
.price-note span { display: block; font-size: var(--fs-sm); color: var(--ink-2); margin-top: .25rem; }

.price-tables { display: grid; gap: clamp(1.5rem, 3vw, 2.25rem); grid-template-columns: repeat(auto-fit, minmax(min(100%, 26rem), 1fr)); }
.price-card { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg); }
.price-card__title {
  padding: 1.05rem 1.4rem;
  background: var(--bg-soft); border-bottom: 1px solid var(--line);
  font-size: .95rem; letter-spacing: .01em;
}
.price-card table { font-size: .93rem; }
.price-card caption { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.price-card th { display: none; }
.price-card td { padding: .95rem 1.4rem; border-top: 1px solid var(--line-soft); vertical-align: top; color: var(--ink-2); }
.price-card tbody tr:first-child td { border-top: 0; }
.price-card td:last-child {
  width: 1%; text-align: right; white-space: nowrap;
  font-weight: 650; color: var(--ink); font-variant-numeric: tabular-nums;
}
.price-card .is-free td:last-child { color: var(--brand); }

.note {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
  padding: 1.4rem 1.6rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-soft);
  border-radius: 0 var(--r) var(--r) 0;
  font-size: .935rem; color: var(--ink-2);
}
.note strong { color: var(--ink); }

/* pitanja i odgovori */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1.5rem;
  padding: 1.35rem 0; cursor: pointer; list-style: none;
  font-size: 1.05rem; font-weight: 650; letter-spacing: -.02em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none;
  width: 14px; height: 14px; margin-top: .35rem;
  background: var(--brand);
  transition: transform .22s var(--ease);
  -webkit-mask: no-repeat center / 14px url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
  mask: no-repeat center / 14px url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E");
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq__body { padding-bottom: 1.45rem; color: var(--ink-2); font-size: .965rem; max-width: 70ch; }
.faq__body p + p { margin-top: .8rem; }

/* kontakt */
.contact { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(0, .75fr); gap: clamp(2rem, 4vw, 3.5rem); align-items: start; }
@media (max-width: 900px) { .contact { grid-template-columns: 1fr; } }

.form { display: grid; gap: 1.15rem; }
.form__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.15rem; }
.field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form__grid { grid-template-columns: 1fr; } }

.field label { display: block; margin-bottom: .45rem; font-size: var(--fs-sm); font-weight: 600; color: var(--ink); }
.field .req { color: var(--danger); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem .95rem;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg); font-size: .95rem;
  transition: border-color .16s var(--ease), box-shadow .16s var(--ease);
}
.field textarea { min-height: 9.5rem; resize: vertical; }
.field select {
  appearance: none; padding-right: 2.5rem; cursor: pointer;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23566259' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center; background-size: 17px;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(5, 91, 49, .14);
}
.field input[type="file"] { padding: .6rem .7rem; font-size: .875rem; cursor: pointer; }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-3); }
.field__hint { margin-top: .4rem; font-size: var(--fs-xs); color: var(--ink-3); }
.field__err { display: none; margin-top: .4rem; font-size: var(--fs-xs); font-weight: 550; color: var(--danger); }
.field.is-bad input, .field.is-bad select, .field.is-bad textarea { border-color: var(--danger); }
.field.is-bad .field__err { display: block; }

.consent { display: grid; grid-template-columns: auto 1fr; gap: .7rem; align-items: start; }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: .28rem; accent-color: var(--brand); }
.consent label { margin: 0; font-size: .88rem; font-weight: 400; color: var(--ink-2); }
.consent .field__err { grid-column: 2; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.files { display: grid; gap: .4rem; margin-top: .6rem; }
.files li {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .4rem .65rem; border-radius: var(--r);
  font-size: var(--fs-xs); color: var(--ink-2); background: var(--bg-soft);
}

.form__status { display: none; padding: .95rem 1.15rem; border-radius: var(--r); font-size: .92rem; font-weight: 550; }
.form__status.is-on { display: block; }
.form__status.is-ok { background: var(--brand-tint); color: var(--brand); border: 1px solid var(--brand-line); }
.form__status.is-err { background: #fdf0ef; color: var(--danger); border: 1px solid #f2d3d0; }

.contact-card { padding: clamp(1.35rem, 3vw, 1.85rem); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); }
.contact-card + .contact-card { margin-top: 1rem; }
.contact-card h2 { margin-bottom: 1.25rem; font-size: 1.1rem; letter-spacing: -.02em; }
.contact-card ul { display: grid; gap: 1.15rem; }
.contact-card li { display: flex; gap: .85rem; }
.contact-card li svg { width: 19px; height: 19px; color: var(--brand); flex: none; margin-top: .2rem; }
.contact-card a { font-weight: 600; text-decoration: none; letter-spacing: -.01em; }
.contact-card a:hover { text-decoration: underline; }
.contact-card small { display: block; margin-top: .15rem; font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.5; }
.contact-card--soft { background: var(--brand-tint); border-color: var(--brand-line); font-size: .93rem; color: var(--ink-2); }
.contact-card--soft strong { color: var(--ink); }

/* tekstualne stranice */
.prose { max-width: 74ch; }
.prose h2 { margin-top: 2.75rem; font-size: clamp(1.35rem, 1.1rem + .8vw, 1.7rem); }
.prose h3 { margin-top: 1.85rem; }
.prose > :first-child { margin-top: 0; }
.prose p, .prose ul, .prose ol { margin-top: 1rem; color: var(--ink-2); }
.prose ul, .prose ol { padding-left: 1.35rem; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-top: .4rem; }
.prose li::marker { color: var(--accent); }
.prose strong { color: var(--ink); font-weight: 650; }
.prose a { font-weight: 550; }
.prose table { margin-top: 1.25rem; font-size: .93rem; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.prose th, .prose td { padding: .8rem 1rem; text-align: left; border-bottom: 1px solid var(--line-soft); }
.prose th { background: var(--bg-soft); font-size: var(--fs-sm); font-weight: 650; color: var(--ink); }
.prose tr:last-child td { border-bottom: 0; }
.prose__meta { margin-bottom: 2rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--line); font-size: var(--fs-sm); color: var(--ink-3); }
.table-scroll { overflow-x: auto; }

/* podnozje */
.site-foot { background: var(--foot-bg); color: var(--ink-2); border-top: 1px solid var(--foot-line); padding-top: clamp(3rem, 5vw, 4.5rem); }
.site-foot__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: clamp(1.75rem, 4vw, 3rem); }
@media (max-width: 900px) { .site-foot__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .site-foot__grid { grid-template-columns: 1fr; } }
.site-foot .brand__sub { color: var(--ink-3); }
.site-foot__about p { margin-top: 1rem; font-size: .92rem; max-width: 32ch; }
.site-foot h2 { margin-bottom: 1.1rem; font-size: .78rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-2); }
.site-foot li + li { margin-top: .1rem; }
.site-foot a:not(.brand) { display: inline-block; padding: .4rem 0; color: var(--ink-2); text-decoration: none; font-size: .92rem; }
.site-foot a:not(.brand):hover { color: var(--brand); text-decoration: underline; }
.foot-contact li { display: flex; gap: .7rem; padding: .45rem 0; font-size: .92rem; line-height: 1.55; }
.site-foot .foot-contact a { display: inline; padding: 0; }
.foot-contact svg { width: 17px; height: 17px; color: var(--brand); flex: none; margin-top: .28rem; }
.site-foot__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: .85rem 1.5rem; margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-block: 1.5rem; border-top: 1px solid var(--foot-line);
  font-size: var(--fs-xs);
}
.site-foot__legal { display: flex; flex-wrap: wrap; gap: .5rem 1.35rem; }
.site-foot__legal li + li { margin-top: 0; }
.site-foot__legal a { font-size: var(--fs-xs); }
.site-foot__legal button { padding: .4rem 0; color: var(--ink-2); font-size: var(--fs-xs); text-decoration: underline; text-underline-offset: .2em; }
.site-foot__legal button:hover { color: var(--brand); }

/* natrag na vrh */
.to-top {
  position: fixed; z-index: 90;
  right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: 44px; height: 44px; display: grid; place-items: center;
  background: var(--brand); color: #fff;
  border-radius: var(--r); box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: opacity .22s var(--ease), transform .22s var(--ease), visibility .22s, background .18s var(--ease);
}
.to-top.is-on { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top svg { width: 18px; height: 18px; }
.to-top:hover { background: var(--brand-hover); }

/* kolacici */
.cookie {
  position: fixed; z-index: 120; display: none;
  left: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem);
  width: min(28rem, calc(100vw - 2rem));
  padding: 1.35rem 1.5rem;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--shadow-lg);
}
.cookie.is-on { display: block; }
.cookie h2 { font-size: 1.02rem; letter-spacing: -.02em; }
.cookie p { margin-top: .6rem; font-size: .86rem; color: var(--ink-2); }
.cookie__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.15rem; }
.cookie__actions .btn { flex: 1 1 9rem; }

/* stranica greske */
.err { min-height: 68vh; display: grid; place-items: center; text-align: center; padding-block: clamp(3rem, 8vw, 6rem); }
.err__code { font-size: clamp(4.5rem, 14vw, 9rem); font-weight: 700; letter-spacing: -.06em; line-height: .9; color: var(--line); }
.err h1 { margin-top: 1rem; }
.err p { margin: 1.1rem auto 2rem; color: var(--ink-2); max-width: 44ch; }
.err__links { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* pojavljivanje */
.reveal.is-armed {
  opacity: 0; transform: translateY(14px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
  transition-delay: var(--d, 0ms);
}
.reveal.is-armed.is-in { opacity: 1; transform: none; }

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

@media print {
  .site-head, .site-foot, .cta, .to-top, .cookie, .skip { display: none !important; }
  body { color: #000; background: #fff; }
  a { text-decoration: underline; }
}

/* svjetlosni okvir */
body.lb-open { overflow: hidden; }
.lb {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
  background: rgba(13, 23, 18, .92);
}
.lb img { max-width: 100%; max-height: 88vh; border-radius: var(--r-lg); }
.lb__x {
  position: absolute; top: clamp(.75rem, 2vw, 1.5rem); right: clamp(.75rem, 2vw, 1.5rem);
  width: 44px; height: 44px; display: grid; place-items: center;
  font-size: 1.9rem; line-height: 1; color: #fff;
  background: rgba(255, 255, 255, .12); border-radius: var(--r);
}
.lb__x:hover { background: rgba(255, 255, 255, .22); }

/* oznaka kategorije */
.tag {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .32rem .8rem;
  font-size: var(--fs-xs); font-weight: 650;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand); background: var(--brand-tint);
  border-radius: 999px;
}
.tag svg { width: 14px; height: 14px; }
.tag--clean { color: #1f5c7a; background: #eaf2f6; }

/* popis usluga na naslovnici */
.svc-group + .svc-group { margin-top: clamp(2.5rem, 5vw, 3.5rem); }
.svc-group__head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-bottom: .9rem; margin-bottom: .25rem;
  border-bottom: 2px solid var(--ink);
}
.svc-group__head h3 { font-size: clamp(1.15rem, 1rem + .5vw, 1.4rem); }
.svc-group__head span { font-size: var(--fs-sm); color: var(--ink-3); }

.svc-list li { border-bottom: 1px solid var(--line); }
.svc-list a {
  display: grid;
  grid-template-columns: minmax(0, 15rem) minmax(0, 1fr) auto 16px;
  gap: .35rem 1.5rem;
  align-items: baseline;
  padding: 1.1rem .5rem 1.1rem 0;
  text-decoration: none; color: inherit;
  transition: padding-left .2s var(--ease), background .2s var(--ease);
}
.svc-list a:hover { background: var(--bg-soft); padding-left: .75rem; }
.svc-list b { font-size: 1.02rem; font-weight: 650; letter-spacing: -.02em; color: var(--ink); }
.svc-list span { font-size: .925rem; color: var(--ink-2); }
.svc-list em {
  font-style: normal; font-size: .875rem; font-weight: 650;
  color: var(--brand); font-variant-numeric: tabular-nums; white-space: nowrap;
}
.svc-list svg { width: 16px; height: 16px; color: var(--brand); align-self: center; transition: transform .18s var(--ease); }
.svc-list a:hover svg { transform: translateX(4px); }
@media (max-width: 860px) {
  .svc-list a { grid-template-columns: 1fr auto; gap: .3rem 1rem; }
  .svc-list b { grid-column: 1; grid-row: 1; }
  .svc-list svg { grid-column: 2; grid-row: 1; align-self: start; margin-top: .2rem; }
  .svc-list span { grid-column: 1 / -1; grid-row: 2; }
  .svc-list em { grid-column: 1 / -1; grid-row: 3; margin-top: .15rem; }
}

/* kazalo clanaka */
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 20rem), 1fr));
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.post {
  position: relative;
  display: flex; flex-direction: column;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; background: var(--bg);
  transition: border-color .2s var(--ease), transform .2s var(--ease);
}
.post__body h3 a::after { content: ""; position: absolute; inset: 0; }
.post:focus-within { border-color: var(--brand); outline: 2px solid var(--brand); outline-offset: 3px; }
.post__body h3 a:focus-visible { outline: none; }
.post:hover { border-color: var(--ink-3); transform: translateY(-2px); }
.post__fig { margin: 0; background: var(--bg-soft); }
.post__fig img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.post__body { display: flex; flex-direction: column; gap: .7rem; padding: 1.35rem 1.5rem 1.5rem; flex: 1; }
.post__body h3 { font-size: 1.12rem; }
.post__body h3 a { color: var(--ink); text-decoration: none; }
.post__body h3 a:hover { color: var(--brand); }
.post__body p { font-size: .93rem; color: var(--ink-2); }
.post__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; margin-top: auto; padding-top: .9rem;
  border-top: 1px solid var(--line-soft);
}
.post__price { font-size: .875rem; font-weight: 650; color: var(--ink); font-variant-numeric: tabular-nums; }
.post__price small { display: block; font-size: var(--fs-xs); font-weight: 400; color: var(--ink-3); }
.post__go { display: inline-flex; align-items: center; gap: .4rem; font-size: .875rem; font-weight: 600; color: var(--brand); text-decoration: none; }
.post__go svg { width: 15px; height: 15px; transition: transform .18s var(--ease); }
.post:hover .post__go svg { transform: translateX(3px); }

/* clanak */
.article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 20rem;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (max-width: 940px) { .article { grid-template-columns: 1fr; } }

.article__fig { margin: 0 0 clamp(1.75rem, 3vw, 2.5rem); }
.article__fig img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 3 / 2; object-fit: cover; }
.article__fig figcaption { margin-top: .6rem; font-size: var(--fs-xs); color: var(--ink-3); }

.article__aside { position: sticky; top: calc(var(--head-h) + 1.5rem); display: grid; gap: 1rem; }
@media (max-width: 940px) {
  .article__aside { position: static; order: -1; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
  .article__fig { margin-top: 0; }
}

.price-box { padding: 1.5rem 1.6rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg); }
.price-box h2 { font-size: .78rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1rem; }
.price-box dl { display: grid; gap: .8rem; }
.price-box dt { font-size: .875rem; color: var(--ink-2); }
.price-box dd { font-size: 1.35rem; font-weight: 700; letter-spacing: -.03em; color: var(--ink); font-variant-numeric: tabular-nums; }
.price-box dd small { display: block; font-size: var(--fs-xs); font-weight: 400; letter-spacing: 0; color: var(--ink-3); margin-top: .2rem; }
.price-box .btn { width: 100%; margin-top: 1.35rem; }
.price-box p { margin-top: .85rem; font-size: var(--fs-xs); color: var(--ink-3); text-align: center; }

.fact-box { padding: 1.35rem 1.5rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--bg-soft); }
.fact-box h2 { font-size: .78rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: .9rem; }
.fact-box ul { display: grid; gap: .6rem; }
.fact-box li { display: flex; gap: .6rem; font-size: .89rem; color: var(--ink-2); }
.fact-box svg { width: 16px; height: 16px; color: var(--brand); flex: none; margin-top: .2rem; }

/* povezane usluge */
.rel { border-top: 1px solid var(--line); margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: clamp(1.75rem, 3vw, 2.5rem); }
.rel h2 { font-size: 1.1rem; margin-bottom: 1.15rem; }
.rel ul { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr)); gap: .75rem; }
.rel a {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line); border-radius: var(--r);
  font-size: .92rem; font-weight: 600; color: var(--ink); text-decoration: none;
  transition: border-color .18s var(--ease), background .18s var(--ease);
}
.rel a:hover { border-color: var(--brand); background: var(--brand-tint); color: var(--brand); }
.rel svg { width: 15px; height: 15px; color: var(--brand); flex: none; }

/* kartica bez fotografije */
.post__fig--ico {
  display: grid; place-items: center;
  aspect-ratio: 16 / 10;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.post__fig--ico svg { width: 52px; height: 52px; color: var(--ink-3); }
.post__price { min-width: 0; }
.post__price small { line-height: 1.35; }
.price-box dl > div + div { padding-top: .8rem; border-top: 1px solid var(--line-soft); }
.article__fig, .rel { max-width: 74ch; }

/* podrucje rada */
.coverage { border-block: 1px solid var(--line); background: var(--bg-soft); padding-block: clamp(2rem, 4vw, 3rem); }
.coverage__in {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}
@media (max-width: 820px) { .coverage__in { grid-template-columns: 1fr; } }

.coverage h2 { font-size: .78rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); }
.coverage__towns { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; }
.coverage__towns li {
  font-size: 1rem; font-weight: 650; letter-spacing: -.015em;
  color: var(--ink); background: var(--bg);
  border: 1px solid var(--line); border-radius: 999px;
  padding: .42rem 1rem;
}
.coverage__towns .is-more { font-weight: 400; color: var(--ink-2); background: transparent; border-style: dashed; }
.coverage__note { margin-top: 1.1rem; font-size: .9rem; color: var(--ink-2); max-width: 52ch; }

.coverage__facts { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.coverage__facts > div { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: .35rem 1rem; background: var(--bg); padding: .85rem 1.15rem; }
.coverage__facts dt { font-size: .875rem; color: var(--ink-2); }
.coverage__facts dd { font-size: .95rem; font-weight: 650; color: var(--ink); letter-spacing: -.015em; font-variant-numeric: tabular-nums; }
.coverage__facts .is-free dd { color: var(--brand); }

/* o nama */

.about-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
@media (min-width: 820px) { .about-grid { grid-template-columns: repeat(2, 1fr); } }
.about-card { background: var(--bg); padding: clamp(1.4rem, 3vw, 2rem); }
.about-card h3 { font-size: .78rem; font-weight: 650; letter-spacing: .13em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 1.1rem; }
.about-card .checks { margin-top: 0; }
.about-card .tags { margin-top: 0; }
.about-card .tags li { background: var(--bg-soft); }
.about-card__note { margin-top: 1rem; font-size: var(--fs-xs); color: var(--ink-3); line-height: 1.55; }

/* ljepljivi naslovi grupa */
.svc-group__head {
  position: sticky;
  top: var(--head-h);
  z-index: 3;
  background: var(--bg);
  padding-top: .9rem;
}
