/* =========================================================================
   Selitve-odvozi.si — design system
   Concept: a logistics "manifest" — labeled cardboard, packing tape, order.
   Ink + warm kraft paper + hi-vis safety amber. Archivo / Hanken / Plex Mono.
   Execution: soft & warm — gently rounded panels, light borders, subtle depth.
   Identity comes from the mono labels + hi-vis amber, not from hard edges.
   ========================================================================= */

:root {
  /* color */
  --ink:        #14181F;   /* near-black, primary text + dark sections */
  --ink-2:      #1E242D;   /* secondary surfaces on dark */
  --paper:      #FBF8F2;   /* warm off-white background */
  --kraft:      #F4EEE2;   /* cardboard surface tone */
  --kraft-2:    #E7DCC9;   /* deeper kraft / borders */
  --card:       #FFFFFF;
  --amber:      #F2A413;   /* hi-vis accent / CTA fill */
  --amber-deep: #9A6307;   /* amber for text on light (>=4.5:1 contrast) */
  --amber-soft: #FBEACB;   /* amber wash */

  --t-strong:   #14181F;
  --t-body:     #3C4450;   /* body text on light */
  --t-muted:    #5C6470;
  --t-faint:    #6A707C;
  --t-on-dark:  #EEF1F4;
  --t-on-dark-soft: #A9B2BE;

  --line:       rgba(20,24,31,.12);
  --line-soft:  rgba(20,24,31,.08);
  --line-dark:  rgba(255,255,255,.14);

  /* type */
  --f-display: "Archivo", system-ui, sans-serif;
  --f-body:    "Hanken Grotesk", system-ui, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, monospace;

  /* layout — soft, friendly rounding (not bubbly, not harsh) */
  --wrap: 1200px;
  --gut: clamp(18px, 5vw, 40px);
  --radius: 16px;
  --radius-sm: 11px;

  /* gentle depth — soft, never glowy */
  --shadow-sm: 0 1px 2px rgba(20,24,31,.04), 0 6px 18px rgba(20,24,31,.05);
  --shadow:    0 10px 30px rgba(20,24,31,.08);
  --shadow-lg: 0 18px 44px rgba(20,24,31,.12);

  --ease: cubic-bezier(.2,.7,.2,1);
  --header-h: 70px;
}

/* ------------------------------- reset ------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--t-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
/* the hidden attribute must always win over class-based display rules */
[hidden] { display: none !important; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; padding: 0; }
input, select, textarea, button { font: inherit; color: inherit; }
:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
  border-radius: 6px;
}

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s var(--ease);
}
.skip:focus { top: 12px; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }

/* ----------------------------- typography ---------------------------- */
.h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.7rem, 1rem + 3vw, 2.85rem);
  line-height: 1.07;
  letter-spacing: -.022em;
  color: var(--t-strong);
}
.lead {
  font-size: clamp(1.05rem, .98rem + .5vw, 1.22rem);
  line-height: 1.6;
  color: var(--t-muted);
  max-width: 60ch;
}
.note { color: var(--t-muted); max-width: 56ch; }
.note + .note { margin-top: 1em; }
.faint { color: var(--t-faint); font-weight: 400; }

/* manifest "tag" eyebrow — a flat mono label led by a soft hi-vis bar.
   The signature device: a printed label, not a glossy chip. */
.tag {
  display: inline-flex; align-items: center; gap: 11px;
  font-family: var(--f-mono);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-deep);
  margin-bottom: 20px;
}
.tag::before {
  content: ""; width: 24px; height: 3px; border-radius: 2px; background: var(--amber); flex: none;
}
.tag span { opacity: .45; }
.tag--light { color: var(--amber); }

/* ------------------------------ buttons ------------------------------ */
.btn {
  --bh: 50px;
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  min-height: var(--bh);
  padding: 0 24px;
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -.005em;
  text-align: center;
  transition: background .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease), transform .15s var(--ease);
}
.btn .ic { width: 18px; height: 18px; }
.btn--sm { --bh: 42px; padding: 0 18px; font-size: .94rem; }
.btn--lg { --bh: 54px; padding: 0 28px; font-size: 1.05rem; }

/* solid hi-vis; warms (deepens) on hover, gentle press — no glow */
.btn--primary { background: var(--amber); color: var(--ink); }
.btn--primary:hover { background: #E5980C; transform: translateY(-2px); }
.btn--primary:active { transform: translateY(0); }

.btn--line { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--line:hover { border-color: var(--ink); background: rgba(20,24,31,.04); }

/* hero secondary: soft outline on the photo, fills white on hover (no glass blur) */
.btn--glass { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.55); }
.btn--glass:hover { background: #fff; color: var(--ink); border-color: #fff; }

.btn--wa { background: #25D366; color: #06301a; }
.btn--wa:hover { background: #20bd5a; }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }
.btn-row--center { justify-content: center; }

/* icon base */
.ic {
  width: 22px; height: 22px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  flex: none;
}

/* ------------------------------ header ------------------------------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  height: var(--header-h);
  display: flex; align-items: center;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header[data-state="top"] { background: transparent; color: #fff; }
.header[data-state="scrolled"] {
  background: rgba(251,248,242,.92);
  backdrop-filter: saturate(180%) blur(12px);
  color: var(--ink);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; width: 100%; }

.brand { display: inline-flex; align-items: center; gap: 11px; color: inherit; }
.brand__mark { width: 40px; height: 25px; display: inline-flex; color: var(--amber); }
.brand__mark svg { width: 100%; height: 100%; }
.brand__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: currentColor;
}
.brand__tld { color: var(--amber); }
.header[data-state="top"] .brand__name { color: #fff; }

.nav { display: none; flex: 1; align-items: center; gap: 28px; }
.nav__links { display: flex; flex: 1; justify-content: center; align-items: center; gap: 26px; }
.nav__links a {
  font-weight: 500; font-size: .98rem; position: relative; padding: 4px 0;
  color: currentColor; opacity: .92;
  transition: opacity .2s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px;
  background: var(--amber); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__phone {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--f-mono); font-weight: 600; font-size: .9rem; letter-spacing: .01em;
}
.nav__phone .ic { width: 16px; height: 16px; }
.nav__phone:hover { color: var(--amber); }
.header[data-state="top"] .nav__phone:hover { color: var(--amber); }
/* call button in header — adapts to header color (white over hero, ink when scrolled) */
.nav__call {
  display: inline-flex; align-items: center; gap: 8px;
  min-height: 42px; padding: 0 16px;
  border: 1.5px solid currentColor; border-radius: 12px;
  font-family: var(--f-display); font-weight: 700; font-size: .94rem;
  color: currentColor;
  transition: background .18s var(--ease), color .18s var(--ease), border-color .18s var(--ease);
}
.nav__call .ic { width: 16px; height: 16px; }
.nav__call:hover { background: var(--amber); border-color: var(--amber); color: var(--ink); }

.burger {
  width: 46px; height: 46px; border: 1.5px solid currentColor; border-radius: 12px;
  background: transparent; color: inherit;
  display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.burger span { width: 20px; height: 2px; background: currentColor; border-radius: 2px; }
.header[data-state="top"] .burger { border-color: rgba(255,255,255,.5); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 150;
  background: var(--ink); color: var(--t-on-dark);
  padding: 18px 0 40px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}
.mobile-menu.open { transform: none; }
.mobile-menu__top { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .brand__name { color: #fff; }
.mobile-menu__close { background: none; border: none; color: #fff; font-size: 2.2rem; line-height: 1; width: 44px; height: 44px; }
.mobile-menu__nav { display: flex; flex-direction: column; margin-top: 22px; }
.mobile-menu__nav a {
  font-family: var(--f-display); font-weight: 700; font-size: 1.5rem; letter-spacing: -.02em;
  color: #fff; padding: 15px 0; border-bottom: 1px solid var(--line-dark);
}
.mobile-menu__nav a:hover { color: var(--amber); }
.mobile-menu__cta { display: grid; gap: 12px; margin-top: 28px; }
.mobile-menu__cta .btn--line { color: #fff; border-color: rgba(255,255,255,.5); }
.mobile-menu__cta .btn--line:hover { background: rgba(255,255,255,.12); border-color: #fff; }

/* ------------------------------- hero -------------------------------- */
.hero {
  position: relative;
  min-height: clamp(560px, 92vh, 820px);
  display: flex; align-items: center;
  padding-top: var(--header-h);
  overflow: hidden;
  color: #fff;
}
.hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; z-index: 0;
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(15,18,24,.92) 0%, rgba(15,18,24,.78) 36%, rgba(15,18,24,.32) 64%, rgba(15,18,24,.12) 100%),
    linear-gradient(to top, rgba(15,18,24,.55), transparent 40%);
}
.hero__inner { position: relative; z-index: 2; padding-block: 60px; }
.hero__content { max-width: 660px; }
.hero__title {
  font-family: var(--f-display); font-weight: 900;
  font-size: clamp(2.4rem, 1.2rem + 5.4vw, 4.7rem);
  line-height: .99; letter-spacing: -.03em;
  color: #fff;
  text-wrap: balance;
}
.hero__lead {
  margin-top: 20px; max-width: 50ch;
  font-size: clamp(1.05rem, .98rem + .6vw, 1.3rem);
  color: rgba(255,255,255,.9); line-height: 1.55;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero__chips {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 32px;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.2);
}
.hero__chips li {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 500; font-size: .95rem; color: rgba(255,255,255,.92);
}
.hero__chips .ic { width: 16px; height: 16px; color: var(--amber); stroke-width: 3; }

/* ----------------------------- proof strip --------------------------- */
.proof { background: var(--kraft); color: var(--t-strong); border-bottom: 1px solid var(--line-soft); overflow: hidden; }
.ticker { display: flex; }
.ticker__track {
  display: flex; flex-wrap: nowrap; align-items: center;
  width: max-content; padding-block: 15px; margin: 0; list-style: none;
  animation: ticker-scroll 34s linear infinite;
}
.ticker:hover .ticker__track { animation-play-state: paused; }
.ticker__item {
  display: inline-flex; align-items: center; gap: 9px; white-space: nowrap;
  font-family: var(--f-mono); font-weight: 600; font-size: .8rem;
  letter-spacing: .04em; text-transform: uppercase; color: var(--t-strong);
  padding: 0 26px; border-right: 1px solid var(--line-soft);
}
.ticker__item .ic { width: 16px; height: 16px; color: var(--amber-deep); stroke-width: 3; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .ticker__track { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; padding-inline: var(--gut); }
  .ticker__item[aria-hidden="true"] { display: none; }
  .ticker__item { border-right: 0; padding: 6px 16px; }
}

/* ------------------------------ sections ----------------------------- */
.section { padding-block: clamp(48px, 6.5vw, 92px); }
.section--paper { background: var(--paper); }
.section--kraft { background: var(--kraft); }
.section--ink { background: var(--ink); color: var(--t-on-dark); position: relative; overflow: hidden; }
.section--ink::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(55% 55% at 88% -8%, rgba(242,164,19,.15), transparent 60%),
    radial-gradient(45% 50% at -8% 108%, rgba(242,164,19,.08), transparent 60%),
    radial-gradient(rgba(255,255,255,.07) 1.1px, transparent 1.4px);
  background-size: auto, auto, 24px 24px;
}
.section--ink > .wrap { position: relative; z-index: 1; }
.section--ink .h2 { color: #fff; }
.section--ink .lead, .section--ink .note { color: var(--t-on-dark-soft); }

.s-head { max-width: 720px; margin-bottom: clamp(34px, 5vw, 56px); }
.s-head .lead { margin-top: 16px; }
.s-head--center { margin-inline: auto; text-align: center; }
.s-head--center .lead { margin-inline: auto; }
.s-head--center .tag { justify-content: center; }

/* services intro: heading + bonus CTA card */
.s-head-row { display: grid; grid-template-columns: 1fr; gap: clamp(26px, 4vw, 44px); margin-bottom: clamp(34px, 5vw, 56px); }
.s-head-row .s-head { margin-bottom: 0; max-width: 640px; }
@media (min-width: 900px) { .s-head-row { grid-template-columns: 1.5fr .92fr; align-items: center; } }
.s-aside__card {
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
}
.s-aside__title { font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; color: var(--t-strong); letter-spacing: -.01em; margin-bottom: 8px; }
.s-aside__card p { color: var(--t-muted); font-size: .96rem; margin-bottom: 18px; }
.s-aside__card .btn { width: 100%; }
.s-aside__tel { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-family: var(--f-display); font-weight: 700; color: var(--ink); }
.s-aside__tel .ic { width: 17px; height: 17px; color: var(--amber-deep); }
.s-aside__tel:hover { color: var(--amber-deep); }

/* split layout */
.split {
  display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

/* media frame — soft rounded, gentle depth */
.frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); background: var(--kraft);
  aspect-ratio: 16 / 11;
}
.frame img { width: 100%; height: 100%; object-fit: cover; }

/* tick lists */
.ticks { display: grid; gap: 12px; margin-top: 22px; }
.ticks li {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  font-weight: 500; color: var(--t-body);
}
.ticks .ic { width: 22px; height: 22px; color: var(--amber-deep); stroke-width: 2.5; margin-top: 1px; }
.section--ink .ticks .ic { color: var(--amber); }
.ticks--grid { grid-template-columns: 1fr; }

/* --------------------------- services grid ---------------------------
   Soft rounded panels with a light border and gentle lift on hover. */
.svc-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.svc {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--line-soft);
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--line); }
.svc__media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--kraft); }
.svc__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.svc:hover .svc__media img { transform: scale(1.04); }
.svc__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.svc__title {
  font-family: var(--f-display); font-weight: 700; font-size: 1.42rem; letter-spacing: -.02em;
  color: var(--t-strong); margin-bottom: 8px;
}
.svc__body > p { color: var(--t-muted); }
.svc .ticks { margin-top: 18px; margin-bottom: 22px; }
.svc .ticks li { font-size: .96rem; }
.go {
  margin-top: auto; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-weight: 700; color: var(--ink); align-self: flex-start;
}
.go .ic { width: 18px; height: 18px; transition: transform .2s var(--ease); }
.go:hover { color: var(--amber-deep); }
.go:hover .ic { transform: translateX(4px); }

/* ----------------------------- image band ---------------------------- */
.band { position: relative; min-height: 320px; display: flex; align-items: flex-end; overflow: hidden; }
.band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,18,24,.92) 0%, rgba(15,18,24,.72) 35%, rgba(15,18,24,.25) 65%, rgba(15,18,24,.05) 90%); }
.band__cap { position: relative; z-index: 2; padding-block: 36px; color: #fff; }
.band__text { font-family: var(--f-display); font-weight: 600; font-size: clamp(1.1rem, .9rem + 1vw, 1.5rem); max-width: 40ch; letter-spacing: -.01em; }

/* ------------------------------ promise ------------------------------ */
.promise { display: grid; grid-template-columns: 1fr; gap: 18px; }
.promise__item {
  background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.015));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius); padding: 28px 24px;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.promise__item:hover { transform: translateY(-5px); border-color: rgba(242,164,19,.6); box-shadow: 0 20px 44px rgba(0,0,0,.42); }
.promise__ic {
  width: 50px; height: 50px; border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(242,164,19,.14); color: var(--amber); margin-bottom: 16px;
}
.promise__ic .ic { width: 26px; height: 26px; }
.promise__item h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.18rem; color: #fff; margin-bottom: 6px; letter-spacing: -.01em; }
.promise__item p { color: var(--t-on-dark-soft); font-size: .97rem; }

/* ------------------------------ steps --------------------------------
   Soft cards; the big mono number stays as the signature, gently set. */
.steps { display: grid; grid-template-columns: 1fr; gap: 18px; }
.step {
  position: relative; background: var(--card);
  border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 26px 24px 24px; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.step__n {
  font-family: var(--f-mono); font-weight: 600; font-size: 1.7rem;
  color: var(--amber-deep); letter-spacing: -.02em; line-height: 1;
  display: block; margin-bottom: 14px;
}
.step__t { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; letter-spacing: -.01em; color: var(--t-strong); margin-bottom: 7px; }
.step p { color: var(--t-muted); font-size: .98rem; }

/* --------------------------- price factors ---------------------------
   Soft cards (reverted from the stark divider grid). */
.factors { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.factor {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 24px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.factor:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.factor__ic {
  width: 48px; height: 48px; border-radius: 13px; margin-bottom: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-soft); color: var(--amber-deep);
}
.factor__ic .ic { width: 24px; height: 24px; }
.factor strong { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--t-strong); margin-bottom: 4px; }
.factor span:last-child { color: var(--t-muted); font-size: .92rem; line-height: 1.5; }

/* ---------------------------- testimonials --------------------------- */
.reviews { display: grid; grid-template-columns: 1fr; gap: 20px; }
.review {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
}
.review__stars { display: inline-flex; gap: 3px; color: var(--amber); margin-bottom: 16px; }
.review__stars .ic { width: 19px; height: 19px; fill: var(--amber); stroke: none; }
.review blockquote { font-size: 1.05rem; color: var(--t-strong); line-height: 1.55; }
.review__who { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-soft); }
.review__av {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--ink); color: var(--amber);
  font-family: var(--f-mono); font-weight: 600; font-size: .9rem;
}
.review__who strong { display: block; font-family: var(--f-display); font-weight: 700; color: var(--t-strong); }
.review__loc { font-size: .88rem; color: var(--t-faint); }

/* ------------------------------- tips -------------------------------- */
.tips { display: grid; grid-template-columns: 1fr; gap: 30px 44px; }
.tip { display: grid; grid-template-columns: 46px 1fr; gap: 16px; align-items: start; }
.tip__ic {
  width: 46px; height: 46px; flex: none;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--amber-deep); background: var(--amber-soft); border-radius: 12px;
}
.tip__ic .ic { width: 24px; height: 24px; }
.tip__t { font-family: var(--f-display); font-weight: 700; font-size: 1.1rem; color: var(--t-strong); letter-spacing: -.01em; margin-bottom: 5px; }
.tip p { color: var(--t-muted); font-size: .96rem; }
/* tips on the dark section */
.section--ink .tip__t { color: #fff; }
.section--ink .tip p { color: var(--t-on-dark-soft); }
.section--ink .tip__ic { background: rgba(242,164,19,.16); color: var(--amber); }
.section--ink .tips { gap: 18px; }
.section--ink .tip {
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.012));
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--radius); padding: 22px 20px;
  transition: transform .2s var(--ease), border-color .2s var(--ease), background .2s var(--ease);
}
.section--ink .tip:hover {
  transform: translateY(-3px); border-color: rgba(242,164,19,.5);
  background: linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.02));
}
@media (min-width: 640px) { .tips { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .tips { grid-template-columns: repeat(3, 1fr); } }

/* ----------------------------- coverage ------------------------------
   Soft kraft panel for the stats; soft cards for the areas. */
.cstats { display: grid; gap: 0; margin-top: 28px; background: var(--kraft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 6px 22px; }
.cstat { padding: 16px 0; display: flex; flex-direction: column; }
.cstat + .cstat { border-top: 1px solid var(--line-soft); }
.cstat__n { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--t-strong); letter-spacing: -.01em; }
.cstat__l { color: var(--t-muted); font-size: .95rem; }

.areas { display: grid; grid-template-columns: 1fr; gap: 16px; margin-top: clamp(34px, 5vw, 52px); }
.area {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 6px;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.area:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.area__r { display: inline-flex; align-items: center; gap: 9px; font-family: var(--f-display); font-weight: 700; color: var(--t-strong); letter-spacing: -.01em; }
.area__r .ic { width: 18px; height: 18px; color: var(--amber-deep); }
.area__c { color: var(--t-muted); font-size: .94rem; padding-left: 27px; }

/* ------------------------------- form -------------------------------- */
.form-layout { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.form-intro .lead { margin-top: 14px; }
.contact-rows { display: grid; gap: 12px; margin-top: 30px; }
.crow {
  display: flex; align-items: center; gap: 14px;
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  padding: 14px 16px; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease), box-shadow .2s var(--ease);
}
.crow:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.crow__ic { width: 44px; height: 44px; border-radius: 12px; flex: none; display: inline-flex; align-items: center; justify-content: center; background: var(--amber-soft); color: var(--amber-deep); }
.crow__k { display: block; font-family: var(--f-mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--t-faint); }
.crow__v { display: block; font-family: var(--f-display); font-weight: 700; color: var(--t-strong); }

.form-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
}
.form-card__head { padding: 22px 26px; background: var(--ink); color: #fff; }
.form-card__head strong { display: block; font-family: var(--f-display); font-weight: 800; font-size: 1.3rem; letter-spacing: -.02em; }
.form-card__head span { font-family: var(--f-mono); font-size: .78rem; letter-spacing: .04em; color: var(--amber); }
.form-card form { padding: 24px 26px 28px; }

.honey { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.progress { display: flex; flex-direction: column; gap: 8px; margin-bottom: 22px; }
.progress span:first-child { font-family: var(--f-mono); font-size: .76rem; letter-spacing: .06em; text-transform: uppercase; color: var(--t-muted); }
.progress__track { height: 6px; border-radius: 99px; background: var(--kraft-2); overflow: hidden; }
.progress__fill { display: block; height: 100%; width: 50%; background: var(--amber); border-radius: 99px; transition: width .35s var(--ease); }

.fld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.fld-row { display: grid; grid-template-columns: 1fr; gap: 14px; }
@media (min-width: 560px) { .fld-row { grid-template-columns: 1fr 1fr; } }
.fld label { font-weight: 600; font-size: .92rem; color: var(--t-strong); }
.fld input, .fld select, .fld textarea {
  width: 100%; padding: 12px 14px; border-radius: var(--radius-sm);
  border: 1.5px solid var(--line); background: var(--paper);
  font-size: 1rem; transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.fld textarea { resize: vertical; min-height: 90px; }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: none; border-color: var(--amber); background: #fff;
  box-shadow: 0 0 0 3px rgba(242,164,19,.18);
}
.fld input[type="file"] { padding: 10px 12px; background: var(--kraft); cursor: pointer; }
.fld .hint { font-size: .84rem; color: var(--t-faint); }

/* izbrane fotografije — seznam */
.file-list { list-style: none; margin: 2px 0 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.file-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 10px 8px 12px; border-radius: var(--radius-sm);
  border: 1px solid var(--line-soft); background: var(--kraft);
}
.file-item__name { flex: 1; min-width: 0; font-size: .9rem; color: var(--t-strong); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.file-item__size { flex: none; font-size: .8rem; color: var(--t-faint); }
.file-item__rm {
  flex: none; width: 24px; height: 24px; display: grid; place-items: center;
  border: none; border-radius: 50%; background: rgba(20,24,31,.07);
  color: var(--t-muted); font-size: 1.1rem; line-height: 1; cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.file-item__rm:hover { background: #D9534F; color: #fff; }
.file-count { font-size: .84rem; font-weight: 600; color: var(--t-strong); margin: 2px 0 0; }

.err { font-size: .82rem; color: #B3261E; display: none; }
.fld.invalid input, .fld.invalid select { border-color: #D9534F; background: #FDF4F3; }
.fld.invalid .err { display: block; }
.err--block { display: block; margin: -6px 0 12px; }

.consent { display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start; font-size: .92rem; color: var(--t-muted); margin-bottom: 6px; cursor: pointer; }
.consent input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--amber); }

.form-actions { display: flex; gap: 12px; margin-top: 22px; }
.form-actions .btn { flex: 1; }
.step-panel[data-step="1"] .form-actions .btn { flex: none; width: 100%; }

/* form success state */
.form-success {
  text-align: center; padding: 44px 26px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
}
.form-success__ic {
  width: 60px; height: 60px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--amber-soft); color: var(--amber-deep); margin-bottom: 10px;
}
.form-success__ic .ic { width: 30px; height: 30px; stroke-width: 3; }
.form-success h3 { font-family: var(--f-display); font-weight: 800; font-size: 1.4rem; color: var(--t-strong); letter-spacing: -.02em; }
.form-success p { color: var(--t-muted); max-width: 42ch; margin-bottom: 12px; }

/* ------------------------------- FAQ ---------------------------------
   Soft rounded cards. */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq__item {
  background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: border-color .2s var(--ease);
}
.faq__item[open] { border-color: var(--line); }
.faq__item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 20px;
  font-family: var(--f-display); font-weight: 700; font-size: 1.06rem; color: var(--t-strong);
  letter-spacing: -.01em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__sign { position: relative; width: 18px; height: 18px; flex: none; }
.faq__sign::before, .faq__sign::after {
  content: ""; position: absolute; background: var(--amber-deep); border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.faq__sign::before { left: 0; top: 8px; width: 18px; height: 2px; }
.faq__sign::after { left: 8px; top: 0; width: 2px; height: 18px; }
.faq__item[open] .faq__sign::after { transform: rotate(90deg); opacity: 0; }
.faq__a { padding: 0 20px 20px; }
.faq__a p { color: var(--t-muted); }

/* ----------------------------- final cta ----------------------------- */
.finalcta__inner { text-align: center; max-width: 760px; margin-inline: auto; }
.finalcta .tag { justify-content: center; }
.finalcta .lead { margin: 16px auto 30px; }

/* ------------------------------ footer ------------------------------- */
.footer { background: var(--ink); color: var(--t-on-dark-soft); padding-block: clamp(48px, 6vw, 72px) 0; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 36px; }
.footer .brand__name { color: #fff; }
.footer__tag { margin-top: 16px; max-width: 36ch; color: var(--t-on-dark-soft); }
.footer__addr { margin-top: 18px; font-size: .92rem; line-height: 1.7; color: var(--t-on-dark-soft); }
.footer__col h4 { font-family: var(--f-mono); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 14px; }
.footer__col ul { display: grid; gap: 10px; }
.footer__col a { color: var(--t-on-dark-soft); transition: color .2s var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 44px; padding-block: 22px; border-top: 1px solid var(--line-dark);
  display: flex; flex-direction: column; gap: 8px;
  font-size: .84rem; color: var(--t-on-dark-soft);
}
.footer__bottom a { color: var(--t-on-dark-soft); }
.footer__bottom a:hover { color: var(--amber); }

/* ---------------------------- mobile bar ----------------------------- */
.mobilebar {
  position: fixed; inset: auto 0 0 0; z-index: 90;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
  padding: 10px var(--gut) calc(10px + env(safe-area-inset-bottom));
  background: rgba(251,248,242,.94); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobilebar .btn { width: 100%; --bh: 48px; }

/* ------------------------------ reveal ------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--ease), transform .55s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =============================== responsive =========================== */
@media (min-width: 600px) {
  .proof__row { grid-template-columns: 1fr 1fr; }
  .promise { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .ticks--grid { grid-template-columns: 1fr 1fr; }
  .areas { grid-template-columns: 1fr 1fr; }
  .reviews { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 880px) {
  .nav { display: flex; }
  .burger { display: none; }
  .mobilebar { display: none; }
  .proof__row { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .reviews { grid-template-columns: repeat(3, 1fr); }
  .form-layout { grid-template-columns: 0.85fr 1.15fr; }
  .footer__grid { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
  .footer__bottom { margin-top: 56px; }
  body { padding-bottom: 0; }
}

@media (min-width: 1100px) {
  .steps { grid-template-columns: repeat(4, 1fr); }
  .promise { grid-template-columns: repeat(4, 1fr); }
}

/* mobile: keep content above sticky bar */
@media (max-width: 879px) {
  body { padding-bottom: 72px; }
}

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

/* ---------------------------- cookie consent ------------------------- */
.cc {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 400;
  background: var(--card); border-top: 1px solid var(--line);
  box-shadow: 0 -8px 30px rgba(20,24,31,.10);
  transform: translateY(110%); transition: transform .4s var(--ease);
}
.cc.show { transform: none; }
.cc__inner { display: grid; gap: 16px; padding-block: 18px; align-items: center; }
.cc__text strong { display: block; font-family: var(--f-display); font-weight: 800; color: var(--t-strong); font-size: 1.05rem; margin-bottom: 4px; }
.cc__text p { color: var(--t-muted); font-size: .94rem; max-width: 72ch; }
.cc__text a { color: var(--amber-deep); text-decoration: underline; }
.cc__actions { display: flex; flex-wrap: wrap; gap: 10px; }
@media (min-width: 760px) {
  .cc__inner { grid-template-columns: 1fr auto; }
  .cc__actions { justify-content: flex-end; }
}

.cc-modal { position: fixed; inset: 0; z-index: 500; display: none; }
.cc-modal.open { display: block; }
.cc-modal__backdrop { position: absolute; inset: 0; background: rgba(15,18,24,.5); }
.cc-modal__box {
  position: relative; z-index: 1; background: var(--card);
  max-width: 540px; width: calc(100% - 32px); margin: 8vh auto 0;
  border-radius: var(--radius); padding: 28px 26px; box-shadow: var(--shadow-lg);
  outline: none; max-height: 84vh; overflow-y: auto;
}
.cc-modal__x { position: absolute; top: 12px; right: 14px; background: none; border: 0; font-size: 1.8rem; line-height: 1; color: var(--t-muted); }
.cc-modal__box h2 { font-family: var(--f-display); font-weight: 800; letter-spacing: -.02em; color: var(--t-strong); font-size: 1.4rem; margin-bottom: 8px; }
.cc-modal__lead { color: var(--t-muted); font-size: .95rem; margin-bottom: 18px; }
.cc-cat { display: grid; gap: 0; border-top: 1px solid var(--line-soft); margin-bottom: 20px; }
.cc-cat li { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--line-soft); }
.cc-cat strong { display: block; font-family: var(--f-display); font-weight: 700; color: var(--t-strong); }
.cc-cat li span { color: var(--t-muted); font-size: .88rem; }
.cc-cat__fixed { font-family: var(--f-mono); font-size: .72rem !important; text-transform: uppercase; letter-spacing: .08em; color: var(--amber-deep) !important; flex: none; }
.cc-modal__actions { display: flex; flex-wrap: wrap; gap: 10px; justify-content: flex-end; }

.cc-switch { position: relative; display: inline-block; width: 46px; height: 26px; flex: none; cursor: pointer; }
.cc-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.cc-switch > span { position: absolute; inset: 0; background: var(--kraft-2); border-radius: 99px; transition: background .2s var(--ease); }
.cc-switch > span::before { content: ""; position: absolute; left: 3px; top: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; box-shadow: 0 1px 3px rgba(0,0,0,.25); transition: transform .2s var(--ease); }
.cc-switch input:checked + span { background: var(--amber); }
.cc-switch input:checked + span::before { transform: translateX(20px); }
.cc-switch input:focus-visible + span { outline: 3px solid var(--amber); outline-offset: 2px; }

/* footer legal links */
.footer__legal { display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.footer__legal a, .footer__legal-btn { color: var(--t-on-dark-soft); font-size: .84rem; padding: 7px 0; }
.footer__legal-btn { background: none; border: 0; padding: 0; cursor: pointer; font-family: inherit; }
.footer__legal a:hover, .footer__legal-btn:hover { color: var(--amber); }

/* =============================== legal pages ========================== */
.legal-header { background: var(--ink); color: #fff; }
.legal-header__inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }
.legal-header .brand__name { color: #fff; }
.legal-back { font-family: var(--f-mono); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--t-on-dark-soft); }
.legal-back:hover { color: var(--amber); }
.legal { background: var(--paper); padding-block: clamp(40px, 6vw, 80px); }
.legal__wrap { max-width: 800px; }
.legal h1 { font-family: var(--f-display); font-weight: 800; letter-spacing: -.025em; font-size: clamp(1.9rem, 1.2rem + 3vw, 2.8rem); color: var(--t-strong); line-height: 1.08; }
.legal__updated { font-family: var(--f-mono); font-size: .8rem; letter-spacing: .04em; color: var(--t-faint); margin-top: 10px; margin-bottom: 6px; }
.legal h2 { font-family: var(--f-display); font-weight: 700; letter-spacing: -.015em; font-size: 1.35rem; color: var(--t-strong); margin-top: 40px; margin-bottom: 12px; }
.legal h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.08rem; color: var(--t-strong); margin-top: 24px; margin-bottom: 8px; }
.legal p { color: var(--t-body); margin-bottom: 14px; }
.legal ul { margin: 0 0 16px; padding-left: 0; }
.legal li { position: relative; padding-left: 22px; margin-bottom: 8px; color: var(--t-body); }
.legal li:last-child { margin-bottom: 0; }
.legal li::before { content: ""; position: absolute; left: 0; top: 10px; width: 7px; height: 7px; background: var(--amber); border-radius: 2px; }
.legal a { color: var(--amber-deep); text-decoration: underline; }
.legal strong { color: var(--t-strong); }
.legal__box { background: var(--kraft); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 20px 22px; margin: 18px 0; }
.legal__box p:last-child { margin-bottom: 0; }
.legal table { width: 100%; border-collapse: collapse; margin: 14px 0 20px; font-size: .92rem; }
.legal th, .legal td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.legal th { background: var(--kraft); font-family: var(--f-display); font-weight: 700; color: var(--t-strong); }
