/* Bane Dubinsko — site2, pravac "Radni nalog" (design-lab pobednik, 2026-09-03).
   Ideja: obećanje brenda (transparentna cena, čovek a ne firma) izvedeno kao
   papirni artefakti — radni nalozi, priznanice, pečati, potpis. Paper, ink,
   marker. Nikad generički SaaS kartice pored ovoga.

   Tokeni su "C Sunce" (izabrano 2026-09-02): žuta kapa i akcenti, krem osnova. */

:root {
  --sun: #F2B01C;
  --bg: #FFF8E8;
  --card: #FFFDF6;
  --ink: #241E14;
  --soft: #7A6B4E;       /* sporedni tekst na krem/kartici */
  --soft-sun: #443A24;   /* sporedni tekst na žutoj */
  --orange: #F04E23;     /* pečati, rukopis, akcenti — nikad body tekst */
  --moss: #2F6B4F;       /* ušteda, potvrde */
  --line: rgba(36, 30, 20, .16);
  --wa: #25D366;
  --vi: #7360F2;

  --wrap: 1100px;
  --font-h: 'Gabarito', 'Avenir Next', system-ui, sans-serif;
  --font-b: 'Plus Jakarta Sans', system-ui, 'Segoe UI', sans-serif;
  --font-hand: 'Caveat', cursive;
  --shadow: 4px 4px 0 rgba(36, 30, 20, .28);
  --paper-shadow: drop-shadow(6px 6px 0 rgba(36, 30, 20, .16));
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-b);
  font-size: clamp(16px, .4vw + 15px, 17px);
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  background-image: radial-gradient(rgba(36, 30, 20, .05) 1px, transparent 1px);
  background-size: 22px 22px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--ink); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2.5px; }

h1, h2, h3 { font-family: var(--font-h); line-height: 1.06; letter-spacing: -.02em; margin: 0 0 .45em; }
h1 { font-weight: 900; font-size: clamp(34px, 4.4vw, 52px); }
h2 { font-weight: 900; font-size: clamp(27px, 3.2vw, 38px); }
h3 { font-weight: 800; font-size: clamp(18px, 1.7vw, 22px); }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 20px; }
.wrap--narrow { max-width: 760px; }
.center { text-align: center; }
.muted { color: var(--soft); font-size: .93em; }
.lede { font-size: clamp(16.5px, 1.5vw, 19px); color: var(--soft-sun); max-width: 56ch; }
.num { font-family: var(--font-h); font-variant-numeric: tabular-nums; font-weight: 700; white-space: nowrap; }
.prose > * { max-width: 66ch; }
.eyebrow { font-family: var(--font-h); font-weight: 800; font-size: 13px; letter-spacing: .18em; text-transform: uppercase; color: var(--orange); margin: 0 0 10px; }
.hl { background: linear-gradient(transparent 55%, var(--sun) 55%, var(--sun) 92%, transparent 92%); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}
.skip { position: absolute; left: -9999px; top: 0; z-index: 100; background: var(--ink); color: var(--bg); padding: 12px 18px; }
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--ink); outline-offset: 2px; border-radius: 4px; }

/* ---------- header ---------- */
.site-header { border-bottom: 2px solid var(--ink); background: var(--bg); position: sticky; top: 0; z-index: 40; }
.site-header__in { display: flex; align-items: center; gap: 16px; min-height: 62px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.logo__mark { width: 30px; height: 30px; flex: none; }
.logo__wm { font-family: var(--font-h); font-weight: 800; font-size: 19px; letter-spacing: -.02em; white-space: nowrap; }
.logo__wm em { font-style: normal; color: var(--orange); }
.nav { margin-left: auto; }
.nav__list { display: flex; gap: 22px; list-style: none; margin: 0; padding: 0; font-weight: 600; font-size: 15px; }
.nav__list a { text-decoration: none; }
.nav__list a:hover, .nav__list a[aria-current] { text-decoration: underline; text-decoration-thickness: 2.5px; text-underline-offset: 5px; }
.nav__toggle { display: none; }
.site-header__phone {
  font-family: var(--font-h); font-weight: 800; font-size: 17px; text-decoration: none;
  background: var(--sun); padding: 8px 14px; border: 2px solid var(--ink); border-radius: 4px;
  box-shadow: 3px 3px 0 var(--ink); white-space: nowrap;
}
.site-header__phone:active { translate: 2px 2px; box-shadow: none; }

/* ---------- buttons & CTA ---------- */
.btn {
  display: inline-block; font-family: var(--font-h); font-weight: 800; font-size: 17px;
  text-decoration: none; border: 2px solid var(--ink); border-radius: 4px;
  padding: 13px 22px; background: var(--ink); color: var(--bg); box-shadow: var(--shadow);
}
.btn:active { translate: 2px 2px; box-shadow: none; }
.btn--ghost { background: var(--card); color: var(--ink); display: inline-flex; gap: 8px; align-items: center; }
.btn--sun { background: var(--sun); color: var(--ink); border-color: var(--sun); box-shadow: 4px 4px 0 rgba(0, 0, 0, .4); }
.dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
.dot--wa { background: var(--wa); }
.dot--vi { background: var(--vi); }
.cta { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.cta__alt { margin-top: 14px; font-size: 15px; color: var(--soft); }
.cta__alt a { font-weight: 700; }

/* ---------- stamps ---------- */
.stamp-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 24px; }
.stamp {
  font-family: var(--font-h); font-weight: 800; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; border: 2px solid var(--ink); border-radius: 4px;
  padding: 5px 10px; background: var(--card);
}
.stamp--rot { transform: rotate(-2deg); border-color: var(--orange); color: var(--orange); }

/* ---------- sections ---------- */
.section { padding: 64px 0; }
.section--tight { padding: 44px 0; }
.final { background: var(--ink); color: var(--bg); padding: 72px 0; text-align: center; }
.final h2 { color: var(--bg); font-size: clamp(30px, 4vw, 44px); }
.final p { color: rgba(255, 248, 232, .7); max-width: 46ch; margin-inline: auto; }
.final .phone {
  display: block; font-family: var(--font-h); font-weight: 900; font-size: clamp(28px, 3.4vw, 38px);
  color: var(--sun); text-decoration: none; margin-top: 20px;
}

/* dotted leader — shared by nalog, pricetable, combos */
.it { display: flex; align-items: baseline; gap: 10px; min-width: 0; }
.it > span:first-child { min-width: 0; }
.it .fill { flex: 1; border-bottom: 2px dotted rgba(36, 30, 20, .32); translate: 0 -3px; min-width: 24px; }

/* ---------- radni nalog ---------- */
.orderwrap { position: relative; padding-top: 34px; }
.order { position: relative; filter: var(--paper-shadow); }
.order__paper { background: var(--card); border: 2px solid var(--ink); border-radius: 6px 6px 0 0; position: relative; }
.order__head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px;
  padding: 16px 24px; border-bottom: 2px dashed var(--line);
}
.order__head h3 { font-size: 17px; margin: 0; letter-spacing: .06em; text-transform: uppercase; }
.order__no { font-family: var(--font-h); font-weight: 700; color: var(--soft); font-size: 14px; }
.order table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
.order td { text-align: left; padding: 11px 24px; vertical-align: baseline; }
.order td:last-child { text-align: right; font-family: var(--font-h); font-weight: 700; font-variant-numeric: tabular-nums; white-space: nowrap; width: 1%; }
.order .save td { color: var(--moss); font-weight: 600; }
.order .total td { font-family: var(--font-h); font-weight: 800; font-size: 19px; border-top: 2px dashed var(--line); padding-block: 14px; }
.order__sign { display: flex; justify-content: space-between; align-items: flex-end; padding: 2px 24px 14px; gap: 10px; }
.order__sign .who { font-family: var(--font-hand); font-weight: 700; font-size: 27px; transform: rotate(-3deg); }
.order__sign .date { font-size: 13px; color: var(--soft); }
.order__stamp {
  position: absolute; left: 44%; translate: -50% 0; bottom: 54px; transform: rotate(-6deg);
  border: 3px solid var(--orange); color: var(--orange); font-family: var(--font-h);
  font-weight: 900; letter-spacing: .1em; text-transform: uppercase; font-size: 13px;
  padding: 5px 11px; border-radius: 6px; opacity: .9; white-space: nowrap;
}
.order__foot {
  background: var(--sun); border: 2px solid var(--ink); border-top: none;
  padding: 12px 24px; font-weight: 600; font-size: 14px;
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
}
.order__zig {
  height: 10px;
  background:
    linear-gradient(-45deg, var(--sun) 5px, transparent 0) 0 0 / 10px 10px repeat-x,
    linear-gradient(45deg, var(--sun) 5px, transparent 0) 5px 0 / 10px 10px repeat-x;
}
.order__note {
  position: absolute; left: 4px; top: 0; font-family: var(--font-hand); font-weight: 700;
  font-size: 21px; color: var(--orange); transform: rotate(-3deg); white-space: nowrap;
}

/* ---------- hero ---------- */
.hero { padding: 56px 0 64px; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero h1 { font-size: clamp(38px, 5.2vw, 62px); line-height: 1.02; max-width: 13ch; }
.hero .lede { max-width: 46ch; }
.hero .cta { margin-top: 24px; }

/* page head (unutrašnje strane) */
.pagehead { padding: 52px 0 8px; }
.pagehead h1 { max-width: 22ch; }

/* ---------- checklist ---------- */
.check { list-style: none; margin: 0; padding: 0; display: grid; gap: 18px; }
.check li { display: flex; gap: 14px; align-items: flex-start; }
.tick { flex: none; width: 26px; height: 26px; border: 2px solid var(--ink); border-radius: 4px; background: var(--card); position: relative; margin-top: 2px; }
.tick::after { content: "✓"; position: absolute; inset: -6px 0 0 2px; font-family: var(--font-hand); font-weight: 700; font-size: 26px; color: var(--orange); }
.check strong { font-family: var(--font-h); font-weight: 800; font-size: 18px; display: block; }
.check span { color: var(--soft); font-size: 15.5px; }
.why { display: grid; grid-template-columns: 1.4fr 1fr; gap: 52px; align-items: start; margin-top: 30px; }

/* ---------- hero photo polaroid ---------- */
.photocard {
  margin: 0; background: var(--card); border: 2px solid var(--ink); border-radius: 8px;
  padding: 14px; max-width: 380px; justify-self: center; transform: rotate(1.2deg);
  filter: var(--paper-shadow);
}
.photocard__ph {
  aspect-ratio: 4 / 5; border: 2px solid var(--ink); border-radius: 6px;
  background: var(--sun); display: grid; place-items: center;
}
.photocard__ph svg { width: 88px; height: 88px; }
.photocard__ph img { width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.photocard figcaption { display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 12px 4px 0; }
.photocard__meta { font-size: 13.5px; color: var(--soft); text-align: right; }

/* proof — pre/posle photo cards */
.proof { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: start; margin-top: 26px; }
.photocard--wide { max-width: none; justify-self: stretch; transform: rotate(.7deg); }
.photocard--wide:nth-child(2) { transform: rotate(-.7deg); }
.photocard__ph--land { aspect-ratio: 6 / 5; position: relative; }
.photocard__ph--land img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 4px; }
.photocard__cap { font-size: 14px; color: var(--soft); padding: 10px 4px 0; }

/* hero quick facts */
.ticks { list-style: none; margin: 0 0 22px; padding: 0; display: grid; gap: 10px; }
.ticks li { display: flex; gap: 12px; align-items: flex-start; font-size: 16px; }
.ticks li::before {
  content: "✓"; flex: none; font-family: var(--font-hand); font-weight: 700;
  font-size: 22px; line-height: 1; color: var(--orange); margin-top: 1px;
}

/* ---------- legitimacija ---------- */
.idcard {
  background: var(--card); border: 2px solid var(--ink); border-radius: 8px; padding: 20px;
  box-shadow: 5px 5px 0 rgba(36, 30, 20, .16); transform: rotate(1.6deg);
  max-width: 300px; justify-self: center;
}
.idcard__head {
  font-family: var(--font-h); font-weight: 800; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--soft); border-bottom: 2px dashed var(--line);
  padding-bottom: 10px; margin-bottom: 14px; display: flex; justify-content: space-between; gap: 8px;
}
.idcard__photo { width: 104px; height: 120px; border: 2px solid var(--ink); border-radius: 6px; background: var(--sun); display: grid; place-items: center; margin-bottom: 12px; overflow: hidden; }
.idcard__photo svg { width: 56px; height: 56px; }
.idcard__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.idcard strong { font-family: var(--font-h); font-weight: 900; font-size: 22px; display: block; }
.idcard p { color: var(--soft); font-size: 14px; margin: 2px 0 0; }
.sig { font-family: var(--font-hand); font-weight: 700; font-size: 27px; transform: rotate(-2deg); display: inline-block; }
.idcard .sig { margin-top: 10px; }

/* ---------- services strip ---------- */
.svc { border-block: 2px solid var(--ink); background: var(--card); }
.svc__grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.svc article { padding: 32px 26px; border-left: 2px solid var(--line); display: flex; flex-direction: column; gap: 6px; position: relative; }
.margin-note {
  position: absolute; top: 12px; right: 18px; font-family: var(--font-hand);
  font-weight: 700; font-size: 20px; color: var(--orange); transform: rotate(-4deg);
}
.svc article:first-child { border-left: none; }
.svc h3 { margin: 0; }
.svc p { color: var(--soft); font-size: 15.5px; margin: 0; flex: 1; }
.svc .price { font-family: var(--font-h); font-weight: 800; font-size: 16.5px; background: linear-gradient(transparent 55%, var(--sun) 55%, var(--sun) 92%, transparent 92%); align-self: flex-start; margin-top: 8px; }
.svc a { font-weight: 700; font-size: 15px; margin-top: 4px; }

/* ---------- receipt testimonial ---------- */
.receipt { max-width: 640px; margin-inline: auto; filter: drop-shadow(5px 5px 0 rgba(36, 30, 20, .14)); position: relative; }
/* a shallow stack — "there's a pile of these" */
.receipt::before, .receipt::after {
  content: ""; position: absolute; inset: 0; background: var(--card);
  border: 2px solid var(--ink); border-radius: 6px;
}
.receipt::before { transform: rotate(1.6deg) translate(6px, 4px); }
.receipt::after { transform: rotate(-2.2deg) translate(-5px, 2px); }
.receipt__paper { background: var(--card); border: 2px solid var(--ink); border-radius: 6px; padding: 26px 30px; transform: rotate(-.8deg); position: relative; z-index: 1; }
.receipt__head {
  display: flex; justify-content: space-between; gap: 8px; flex-wrap: wrap;
  font-family: var(--font-h); font-weight: 800; font-size: 12.5px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--soft); border-bottom: 2px dashed var(--line);
  padding-bottom: 12px; margin-bottom: 16px;
}
.receipt blockquote { font-size: 18.5px; line-height: 1.55; margin: 0 0 14px; font-weight: 500; }
.receipt__row { display: flex; justify-content: space-between; align-items: flex-end; gap: 10px; flex-wrap: wrap; }
.receipt__job { font-size: 13.5px; color: var(--soft); }

/* ---------- steps (kako to izgleda) ---------- */
.steps { list-style: none; counter-reset: s; margin: 30px 0 0; padding: 0; display: grid; gap: 0; max-width: 720px; }
.steps li { counter-increment: s; display: flex; gap: 18px; padding: 20px 0; border-bottom: 2px dashed var(--line); }
.steps li:last-child { border-bottom: none; }
.steps li::before {
  content: counter(s, decimal-leading-zero); flex: none;
  font-family: var(--font-h); font-weight: 900; font-size: 15px;
  background: var(--sun); border: 2px solid var(--ink); border-radius: 4px;
  padding: 3px 9px; height: fit-content; margin-top: 2px;
}
.steps strong { font-family: var(--font-h); font-weight: 800; font-size: 18px; display: block; }
.steps span { color: var(--soft); font-size: 15.5px; }

/* ---------- note box (okvir) ---------- */
.note {
  background: var(--card); border: 2px solid var(--ink); border-radius: 6px;
  padding: 18px 22px; max-width: 660px; box-shadow: 4px 4px 0 rgba(36, 30, 20, .12);
}
.note--sun { background: var(--sun); }
.note--sun .muted { color: var(--soft-sun); }
.note strong { font-family: var(--font-h); }

/* ---------- price table ---------- */
.pricegroup { max-width: 720px; }
.pricegroup + .pricegroup { margin-top: 36px; }
.pricetable { width: 100%; border-collapse: collapse; }
.pricetable th[scope="row"] { font-weight: 500; text-align: left; padding: 12px 0; }
.pricetable td { padding: 12px 0 12px 16px; text-align: right; vertical-align: baseline; }
.pricetable tr + tr { border-top: 1px solid var(--line); }
.pricetable .unit { display: block; font-style: normal; font-size: 13px; color: var(--soft); font-family: var(--font-b); font-weight: 500; }
.pricetable .hint { display: block; font-size: 13.5px; color: var(--soft); max-width: 44ch; }
.pricetable .num { font-size: 17px; }

/* ---------- combos ---------- */
.combos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 30px; }
.combo { background: var(--card); border: 2px solid var(--ink); border-radius: 6px; padding: 20px 22px; box-shadow: 4px 4px 0 rgba(36, 30, 20, .14); }
.combo__head { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; border-bottom: 2px dashed var(--line); padding-bottom: 10px; margin-bottom: 10px; }
.combo__head h3 { margin: 0; font-size: 18px; }
.combo__desc { color: var(--soft); font-size: 14.5px; margin: 0 0 10px; }
.combo__lines { list-style: none; margin: 0; padding: 0; font-size: 15px; }
.combo__lines li { display: flex; justify-content: space-between; gap: 10px; padding: 6px 0; }
.combo__lines li .it { flex: 1; }
.combo__lines .save { color: var(--moss); font-weight: 600; }
.combo__total { display: flex; justify-content: space-between; font-family: var(--font-h); font-weight: 800; font-size: 18px; border-top: 2px dashed var(--line); padding-top: 10px; margin: 8px 0 0; }

/* ---------- FAQ ---------- */
.faq__list { display: grid; gap: 12px; margin-top: 26px; }
.faq__item { background: var(--card); border: 2px solid var(--ink); border-radius: 6px; }
.faq__item summary {
  cursor: pointer; padding: 16px 20px; font-family: var(--font-h); font-weight: 700; font-size: 16.5px;
  list-style: none; position: relative; padding-right: 48px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "+"; position: absolute; right: 18px; top: 50%; translate: 0 -50%;
  font-family: var(--font-h); font-weight: 800; font-size: 22px; color: var(--orange);
}
.faq__item[open] summary::after { content: "−"; }
.faq__item[open] summary { border-bottom: 2px dashed var(--line); }
.faq__a { padding: 14px 20px 6px; color: var(--soft-sun); font-size: 15.5px; }

/* ---------- calculator ---------- */
.calc { display: grid; grid-template-columns: 1.15fr .85fr; gap: 28px; align-items: start; margin-top: 30px; }
.calc__picker { display: grid; gap: 22px; }
.calc__group { border: 2px solid var(--ink); border-radius: 6px; background: var(--card); margin: 0; padding: 6px 20px 14px; box-shadow: 4px 4px 0 rgba(36, 30, 20, .12); }
.calc__group legend { font-family: var(--font-h); font-weight: 800; font-size: 15px; letter-spacing: .08em; text-transform: uppercase; padding: 0 8px; background: var(--sun); border: 2px solid var(--ink); border-radius: 4px; }
.calc__row { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 10px 0; }
.calc__row + .calc__row { border-top: 1px solid var(--line); }
.calc__row.is-active .calc__name { font-weight: 700; }
.calc__name { display: block; font-size: 15.5px; }
.calc__meta { display: block; font-size: 13px; color: var(--soft); }
.calc__stepper { display: flex; align-items: center; gap: 2px; flex: none; }
.calc__stepper button {
  width: 38px; height: 38px; font-size: 20px; font-family: var(--font-h); font-weight: 800;
  border: 2px solid var(--ink); border-radius: 4px; background: var(--card); cursor: pointer; color: var(--ink);
}
.calc__stepper button:disabled { opacity: .35; cursor: default; }
.calc__stepper button:not(:disabled):active { background: var(--sun); }
.calc__stepper output { min-width: 34px; text-align: center; font-family: var(--font-h); font-weight: 800; font-size: 17px; }
.calc__note { font-size: 14px; color: var(--soft); margin: 0; }

/* summary = a radni nalog that fills itself in */
.calc__summary { position: sticky; top: 82px; background: var(--card); border: 2px solid var(--ink); border-radius: 6px; filter: var(--paper-shadow); }
.calc__summary h3 { font-size: 16px; letter-spacing: .06em; text-transform: uppercase; margin: 0; padding: 14px 20px; border-bottom: 2px dashed var(--line); display: flex; justify-content: space-between; }
.calc__summary h3::after { content: "№ ----"; font-family: var(--font-h); font-weight: 700; color: var(--soft); font-size: 13px; }
.calc__empty { color: var(--soft); font-size: 15px; padding: 18px 20px; margin: 0; }
.calc__lines { padding: 8px 20px 0; }
.calc__line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: 15px; }
.calc__line--save { color: var(--moss); font-weight: 600; }
.calc__total { display: flex; justify-content: space-between; font-family: var(--font-h); font-weight: 800; font-size: 20px; border-top: 2px dashed var(--line); margin: 8px 20px 0; padding: 12px 0; }
.calc__nudge { margin: 0 20px 4px; font-size: 14px; font-weight: 600; color: var(--moss); }
.calc__disclaimer { font-size: 13px; color: var(--soft); margin: 6px 20px 14px; }
.calc__actions { display: grid; gap: 10px; padding: 0 20px 18px; }
.calc__actions .btn { text-align: center; justify-content: center; box-shadow: none; }
.calc__actions-note { font-size: 13px; color: var(--soft); margin: 0; text-align: center; }

/* mobile pinned running total (rendered by calculator.js, shown ≤880px) */
.calc__mini { display: none; }
@media (max-width: 880px) {
  .calc__mini {
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
    position: fixed; left: 10px; right: 10px; bottom: 62px; z-index: 49;
    background: var(--ink); color: var(--bg); text-decoration: none;
    font-family: var(--font-h); font-weight: 800; font-size: 16px;
    padding: 11px 16px; border-radius: 6px; border: 2px solid var(--ink);
  }
  .calc__mini .num { color: var(--sun); }
  .calc__mini[hidden] { display: none; }
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--bg); margin-top: 0; }
.site-footer a { color: var(--bg); }
.site-footer__in { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 36px; padding-block: 48px 28px; }
.site-footer__brand { font-family: var(--font-h); font-weight: 800; font-size: 19px; margin-bottom: 6px; }
.site-footer .muted { color: rgba(255, 248, 232, .6); }
.site-footer__links { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
.site-footer__legal { border-top: 1px solid rgba(255, 248, 232, .18); padding-block: 16px; }

/* ---------- sticky mobile bar ---------- */
.stickybar { display: none; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .hero { padding: 40px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 44px; }
  .hero .cta .btn--ghost { display: none; }
  .why { grid-template-columns: 1fr; gap: 40px; }
  .proof { grid-template-columns: 1fr; }
  .svc__grid { grid-template-columns: 1fr; }
  .svc article { border-left: none; border-top: 2px solid var(--line); }
  .svc article:first-child { border-top: none; }
  .combos { grid-template-columns: 1fr; }
  .calc { grid-template-columns: 1fr; }
  .calc__summary { position: static; }
  .order__head, .order__sign { padding-inline: 16px; }
  .order td { padding-inline: 16px; }
  .order__foot { padding-inline: 16px; }
  .site-footer__in { grid-template-columns: 1fr; gap: 26px; }

  .nav__toggle {
    display: block; background: none; border: 2px solid var(--ink); border-radius: 4px;
    font-size: 18px; padding: 4px 10px; cursor: pointer; color: var(--ink);
  }
  .nav__list {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg); border-bottom: 2px solid var(--ink);
    flex-direction: column; gap: 0; padding: 8px 20px 16px;
  }
  .nav__list.is-open { display: flex; }
  .nav__list li { padding: 10px 0; }
  .site-header__phone { margin-left: auto; }
  .nav { margin-left: 0; order: 3; }

  body { padding-bottom: 64px; }
  .stickybar { display: grid; grid-template-columns: 1fr 1fr 1fr; position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; border-top: 2px solid var(--ink); }
  .stickybar a { font-family: var(--font-h); font-weight: 800; text-align: center; padding: 16px 4px; text-decoration: none; font-size: 15px; }
  .stickybar a:nth-child(1) { background: var(--sun); color: var(--ink); }
  .stickybar a:nth-child(2) { background: var(--wa); color: #fff; }
  .stickybar a:nth-child(3) { background: var(--vi); color: #fff; }
}

@media (max-width: 480px) {
  /* the stamp leaves the total row — no collision with "Zajedno" */
  .order__stamp { position: static; display: inline-block; translate: none; margin: 2px 16px 10px; transform: rotate(-3deg); font-size: 12px; }
  .order__foot { flex-direction: column; gap: 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
