/* ==========================================================================
   Početna
   ========================================================================== */

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding-top: clamp(32px, 4vw, 64px);
  overflow: clip;
}
.hero::before {
  /* tanka mreža tehničkog lista */
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 96px 96px;
  background-position: -1px -1px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: clamp(16px, 2vw, 32px);
  align-items: start;
}
.hero__copy {
  grid-column: 1 / span 5;
  grid-row: 1;
  padding-top: clamp(24px, 4.4vw, 76px);
  position: relative;
  z-index: 2;
}
.hero__title {
  margin: 4px 0 28px;
  font-size: clamp(44px, 5.4vw, 86px);
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.07em;
  margin-bottom: -0.07em;
}
.hero__title .line > span {
  display: block;
  animation: lineUp 1.2s var(--ease-out) both;
}
.hero__title .line:nth-child(2) > span {
  animation-delay: 0.12s;
}
@keyframes lineUp {
  from {
    transform: translateY(105%);
  }
  to {
    transform: none;
  }
}
.hero__lead {
  margin-bottom: 36px;
  max-width: 40ch;
  animation: rise 1s 0.35s var(--ease-out) both;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  animation: rise 1s 0.45s var(--ease-out) both;
}
.hero__alt {
  margin-top: 24px;
  font-size: 15px;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 12px;
  animation: rise 1s 0.55s var(--ease-out) both;
}
.hero__visual {
  grid-column: 6 / -1;
  grid-row: 1;
  position: relative;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  margin-right: calc(var(--gutter) * -1);
}
@media (min-width: 1560px) {
  .hero__visual {
    margin-right: calc((100vw - var(--container)) / -2 - var(--gutter) + 8px);
  }
}
.hero__dimh {
  grid-column: 2;
  grid-row: 1;
  padding-bottom: 12px;
  padding-right: var(--gutter);
}
.hero__dimv {
  grid-column: 1;
  grid-row: 2;
  display: flex;
}
.hero__img {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  aspect-ratio: 1.16;
  color: var(--ink-3);
  animation: imgIn 1.6s 0.1s var(--ease-out) both;
}
.hero__img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@keyframes imgIn {
  from {
    clip-path: inset(0 0 0 100%);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}
.hero__tag {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  background: rgba(246, 245, 242, 0.92);
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.04em;
  transition: background-color var(--t-fast);
}
.hero__tag:hover {
  background: #fff;
}
.hero__tag .ic {
  width: 14px;
  height: 14px;
  transition: transform var(--t) var(--ease-out);
}
.hero__tag:hover .ic {
  transform: translate(2px, -2px);
}

/* Hotspot: materijal u prostoru */
.hotspot {
  position: absolute;
  left: var(--x);
  top: var(--y);
  z-index: 3;
}
.hotspot__dot {
  position: relative;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border-radius: 50%;
  background: rgba(251, 250, 248, 0.92);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  transition: transform var(--t) var(--ease-out);
  animation: pop 0.8s calc(1.1s + var(--i) * 0.15s) var(--ease-out) both;
}
.hotspot__dot::before {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: 50%;
  border: 1px solid rgba(251, 250, 248, 0.8);
  animation: ring 2.4s calc(var(--i) * 0.4s) var(--ease) infinite;
}
.hotspot__dot span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--wood);
  transition: transform var(--t) var(--ease-out);
}
.hotspot:hover .hotspot__dot,
.hotspot.is-open .hotspot__dot {
  transform: scale(1.08);
}
.hotspot.is-open .hotspot__dot span {
  transform: scale(1.4);
  background: var(--ink);
}
@keyframes ring {
  0% {
    transform: scale(0.7);
    opacity: 1;
  }
  80%,
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
.hotspot__card {
  position: absolute;
  left: 26px;
  top: -30px;
  display: grid;
  grid-template-columns: 56px auto;
  gap: 12px;
  align-items: center;
  width: max-content;
  max-width: 300px;
  padding: 8px 16px 8px 8px;
  background: var(--card);
  box-shadow: var(--sh-3);
  color: var(--ink);
  opacity: 0;
  transform: translateX(-6px);
  pointer-events: none;
  transition:
    opacity var(--t) var(--ease),
    transform var(--t) var(--ease-out);
}
.hotspot__card img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
.hotspot__card > span {
  display: grid;
  gap: 2px;
}
.hotspot__card .mono {
  font-size: 10.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.hotspot__card b {
  font-size: 15px;
  font-weight: 500;
  font-stretch: 104%;
  line-height: 1.25;
}
.hotspot__go {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--wood-700);
  font-weight: 500;
}
.hotspot__go .ic {
  width: 14px;
  height: 14px;
  transition: transform var(--t) var(--ease-out);
}
.hotspot__card:hover .hotspot__go .ic {
  transform: translateX(3px);
}
.hotspot:hover .hotspot__card,
.hotspot.is-open .hotspot__card,
.hotspot:focus-within .hotspot__card {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.hotspot--left .hotspot__card {
  left: auto;
  right: 26px;
}

/* Pretraga u heroju - preklapa donju ivicu fotografije */
.hsearch {
  grid-column: 6 / -1;
  grid-row: 2;
  margin: clamp(-128px, -8vw, -72px) 0 0 42px;
  position: relative;
  z-index: 4;
  background: var(--card);
  box-shadow: var(--sh-2);
  padding: 26px 28px 22px;
  border: 1px solid var(--line);
  animation: rise 1s 0.6s var(--ease-out) both;
}
.hsearch::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--wood);
}
.hsearch__label {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 12px;
}
.hsearch__label span + span {
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-4);
}
.hsearch__row {
  display: flex;
  align-items: center;
  gap: 14px;
  height: 64px;
  padding: 0 5px 0 20px;
  border: 1px solid var(--line-3);
  background: #fff;
  transition:
    border-color var(--t-fast),
    box-shadow var(--t-fast);
}
.hsearch__form.is-focus .hsearch__row,
.hsearch__row:focus-within {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(165, 123, 85, 0.18);
}
.hsearch__row > .ic {
  width: 24px;
  height: 24px;
}
.hsearch__row input {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  background: transparent;
  font-size: clamp(17px, 1.4vw, 20px);
  font-stretch: 104%;
  letter-spacing: -0.01em;
}
.hsearch__row input:focus {
  outline: none;
}
.hsearch__row input::placeholder {
  color: var(--ink-4);
}
.hsearch__row input::-webkit-search-cancel-button {
  display: none;
}
.hsearch__btn {
  --h: 54px;
}
.hsearch__pop {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}
.hsearch__pop .mono {
  font-size: 11.5px;
  color: var(--ink-4);
  margin-right: 6px;
}
.ac--drop {
  position: absolute;
  left: 28px;
  right: 28px;
  top: 119px;
  margin: 0;
  z-index: 10;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-top: 0;
  box-shadow: var(--sh-2);
  padding: 16px;
  max-height: min(620px, 70vh);
  overflow-y: auto;
  display: none;
}
.ac--drop.is-open:has([data-ac-dyn]) {
  display: block;
  animation: rise 0.35s var(--ease-out);
}
.hero__svc {
  grid-column: 1 / span 5;
  grid-row: 2;
  align-self: end;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-2);
  margin-top: 40px;
  animation: rise 1s 0.75s var(--ease-out) both;
}
.hero__svc li {
  border-bottom: 1px solid var(--line);
}
.hero__svc li:nth-child(odd) {
  border-right: 1px solid var(--line);
}
.hero__svc a {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  gap: 10px 10px;
  padding: 18px 16px;
  font-size: 15px;
  font-weight: 500;
  font-stretch: 104%;
  transition: background-color var(--t-fast);
}
.hero__svc a:hover {
  background: var(--card);
}
.hero__svc .mono {
  font-size: 11px;
  color: var(--ink-4);
}
.hero__svc .ic {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  color: var(--wood-600);
  width: 22px;
  height: 22px;
}
.hero__svc a span:last-child {
  grid-column: 1 / -1;
}

@media (max-width: 1180px) {
  .hero__copy,
  .hero__visual,
  .hsearch,
  .hero__svc {
    grid-column: 1 / -1;
    grid-row: auto;
  }
  .hero__copy {
    padding-top: 16px;
  }
  .hsearch {
    order: 2;
    margin: 36px 0 0;
  }
  .hero__visual {
    order: 3;
    margin-top: 40px;
    margin-right: 0;
  }
  .hero__svc {
    order: 4;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 0;
  }
  .hero__svc li:nth-child(odd) {
    border-right: 0;
  }
  .hero__svc li + li {
    border-left: 1px solid var(--line);
  }
}
@media (max-width: 720px) {
  .hero {
    padding-top: 20px;
  }
  .hero__visual {
    grid-template-columns: 1fr;
    margin-inline: calc(var(--gutter) * -1);
  }
  .hero__dimv,
  .hero__dimh {
    display: none;
  }
  .hero__img {
    grid-column: 1;
    aspect-ratio: 1.05;
  }
  .hotspot__card {
    display: none;
  }
  .hotspot.is-open .hotspot__card {
    display: grid;
    left: -140px;
    top: 26px;
  }
  .hsearch {
    padding: 18px 16px 16px;
    margin-inline: calc(var(--gutter) * -1);
    border-inline: 0;
    margin-top: 28px;
  }
  .hsearch::before {
    width: 3px;
  }
  .hsearch__label span + span {
    display: none;
  }
  .hsearch__row {
    height: 56px;
    padding-left: 14px;
  }
  .hsearch__btn {
    display: none;
  }
  .ac--drop {
    left: 0;
    right: 0;
    top: 100%;
    border-top: 1px solid var(--ink);
  }
  .hsearch__pop {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-right: -16px;
  }
  .hero__svc {
    grid-template-columns: 1fr 1fr;
  }
  .hero__svc li + li {
    border-left: 0;
  }
  .hero__svc li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }
  .hero__cta .btn {
    flex: 1 1 auto;
  }
}

/* ---------- Kategorije (asimetrični bento) ---------- */
.cats__grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(2, clamp(260px, 25vw, 380px));
  gap: 12px;
}
.cat {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(18px, 2vw, 28px);
  isolation: isolate;
}
.cat img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform 1.6s var(--ease-out);
}
.cat::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(15, 17, 18, 0.35) 0%,
    rgba(15, 17, 18, 0) 30%,
    rgba(15, 17, 18, 0) 50%,
    rgba(15, 17, 18, 0.72) 100%
  );
  transition: background-color var(--t);
}
.cat:hover img {
  transform: scale(1.05);
}
.cat--a {
  grid-column: 1 / span 7;
  grid-row: 1 / span 2;
}
.cat--b {
  grid-column: 8 / -1;
  grid-row: 1;
}
.cat--c {
  grid-column: 8 / span 3;
  grid-row: 2;
}
.cat--d {
  grid-column: 11 / -1;
  grid-row: 2;
}
.cat__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.cat__top .mono {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  padding: 5px 8px;
  background: rgba(15, 17, 18, 0.35);
  backdrop-filter: blur(6px);
}
.cat__go {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  background: var(--paper);
  color: var(--ink);
  transition:
    background-color var(--t),
    color var(--t);
}
.cat__go .ic {
  transition: transform var(--t) var(--ease-out);
}
.cat:hover .cat__go {
  background: var(--wood);
  color: #fff;
}
.cat:hover .cat__go .ic {
  transform: translate(2px, -2px);
}
.cat__body {
  display: grid;
  gap: 14px;
}
.cat__title {
  font-size: clamp(26px, 2.6vw, 44px);
  font-weight: 450;
  font-stretch: 112%;
  letter-spacing: -0.035em;
  line-height: 1;
}
.cat--c .cat__title,
.cat--d .cat__title {
  font-size: clamp(22px, 1.8vw, 28px);
}
.cat__subs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cat__subs span {
  font-size: 13px;
  padding: 5px 10px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  transition:
    background-color var(--t),
    color var(--t),
    transform var(--t) var(--ease-out);
  transition-delay: calc(var(--k, 0) * 30ms);
}
.cat:hover .cat__subs span {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}
@media (max-width: 900px) {
  .cats__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    grid-auto-rows: 240px;
  }
  .cat--a {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 380px;
  }
  .cat--b,
  .cat--c,
  .cat--d {
    grid-column: auto;
    grid-row: auto;
  }
  .cat--b {
    grid-column: 1 / -1;
  }
}

/* ---------- Pronađite dekor ---------- */
.dekor__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}
.dfilter {
  position: sticky;
  top: calc(var(--header-h) + 24px);
  display: grid;
  gap: 26px;
}
.dfilter__group .label {
  margin-bottom: 12px;
}
.swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.sw {
  position: relative;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--c);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: transform var(--t) var(--ease-out);
}
.sw::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity var(--t-fast),
    transform var(--t) var(--ease-out);
}
.sw:hover {
  transform: scale(1.08);
}
.sw[aria-pressed="true"]::after {
  opacity: 1;
  transform: none;
}
.dfilter__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--line-2);
}
.dfilter__foot b {
  font-size: 22px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
.chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  text-decoration: line-through;
}
.dgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2vw, 32px) clamp(14px, 1.4vw, 24px);
  position: relative;
}
.dgrid .decor {
  transition:
    opacity 0.4s var(--ease),
    transform 0.5s var(--ease-out);
}
.dgrid .decor.is-hidden {
  display: none;
}
.dgrid .decor.is-enter {
  animation: rise 0.55s var(--ease-out) both;
  animation-delay: calc(var(--k, 0) * 35ms);
}
.dgrid__empty {
  grid-column: 1 / -1;
  display: grid;
  justify-items: start;
  gap: 10px;
  padding: 48px;
  border: 1px dashed var(--line-3);
}
@media (max-width: 1280px) {
  .dgrid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 900px) {
  .dekor__layout {
    grid-template-columns: 1fr;
  }
  .dfilter {
    position: static;
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .dfilter .chips,
  .dfilter .swatches {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    margin-inline: calc(var(--gutter) * -1);
    padding-inline: var(--gutter);
    padding-block: 6px;
  }
  .dgrid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ---------- Usluge ---------- */
.svc__layout {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 80px);
  align-items: start;
}
.svc__media {
  position: sticky;
  top: calc(var(--header-h) + 32px);
  aspect-ratio: 4 / 5;
  background: var(--ink);
  color: var(--ink-3);
}
.svc__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.04);
  transition:
    opacity 0.7s var(--ease),
    transform 1.4s var(--ease-out);
}
.svc__media img.is-on {
  opacity: 1;
  transform: none;
}
.svc__media-cap {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  padding: 8px 12px;
  background: var(--paper);
  color: var(--ink);
  font-size: 12px;
}
.svc__list {
  border-top: 1px solid var(--line-2);
  counter-reset: s;
}
.svc__row {
  position: relative;
  display: grid;
  grid-template-columns: 44px 44px minmax(0, 1fr) auto 40px;
  gap: 16px;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line-2);
  transition: padding var(--t) var(--ease-out);
}
.svc__row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.7s var(--ease-out);
}
.svc__row.is-on::before,
.svc__row:hover::before {
  transform: scaleX(1);
}
.svc__no {
  font-size: 12px;
  color: var(--ink-4);
}
.svc__ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  transition:
    background-color var(--t),
    color var(--t),
    border-color var(--t);
}
.svc__row.is-on .svc__ic {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.svc__txt {
  display: grid;
  gap: 6px;
}
.svc__name {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(21px, 1.9vw, 30px);
  font-weight: 450;
  font-stretch: 110%;
  letter-spacing: -0.028em;
  line-height: 1.1;
}
.svc__short {
  font-size: 15px;
  color: var(--ink-3);
  max-width: 52ch;
  display: grid;
  grid-template-rows: 0fr;
}
.svc__row .svc__short {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition:
    max-height 0.6s var(--ease-out),
    opacity 0.4s var(--ease);
}
.svc__row.is-on .svc__short {
  max-height: 80px;
  opacity: 1;
}
.svc__meta {
  font-size: 12px;
  color: var(--ink-3);
  white-space: nowrap;
}
.svc__go {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition:
    background-color var(--t),
    color var(--t);
}
.svc__go .ic {
  width: 18px;
  height: 18px;
  transition: transform var(--t) var(--ease-out);
}
.svc__row:hover .svc__go,
.svc__row.is-on .svc__go {
  background: var(--wood);
  color: #fff;
}
.svc__row:hover .svc__go .ic {
  transform: translateX(3px);
}
@media (max-width: 900px) {
  .svc__layout {
    grid-template-columns: 1fr;
  }
  .svc__media {
    position: relative;
    top: 0;
    aspect-ratio: 16 / 10;
  }
  .svc__row {
    grid-template-columns: 32px 1fr 36px;
  }
  .svc__no {
    display: none;
  }
  .svc__ic {
    width: 32px;
    height: 32px;
  }
  .svc__ic .ic {
    width: 18px;
    height: 18px;
  }
  .svc__meta {
    display: none;
  }
  .svc__row .svc__short {
    max-height: none;
    opacity: 1;
  }
}

/* ---------- Proces ---------- */
.proc__steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 40px);
  padding-top: 44px;
}
.proc__line {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 12px;
}
.proc__line i {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.8s var(--ease-io);
}
.proc__steps.is-in .proc__line i,
.no-js .proc__line i {
  transform: scaleX(1);
}
.proc__step {
  position: relative;
  display: grid;
  gap: 14px;
  align-content: start;
  justify-items: start;
}
.proc__step::before {
  content: "";
  position: absolute;
  top: -44px;
  left: 0;
  width: 1px;
  height: 17px;
  background: var(--ink);
}
.proc__step::after {
  content: "";
  position: absolute;
  top: -44px;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--ink);
  transform: scale(0);
  transition:
    transform 0.5s var(--ease-out),
    background-color 0.5s;
  transition-delay: calc(0.35s + var(--i) * 0.38s);
}
.proc__steps.is-in .proc__step::after {
  transform: scale(1);
  background: var(--wood);
  border-color: var(--wood);
}
.proc__no {
  font-size: 13px;
  color: var(--wood-700);
}
.proc__art {
  width: 80px;
  height: 80px;
  color: var(--ink-2);
  margin: 4px 0 6px;
}
.proc__step p {
  color: var(--ink-3);
  font-size: 15px;
  max-width: 34ch;
}
.proc__step .link-arrow {
  font-size: 14px;
  margin-top: 4px;
}
@media (max-width: 900px) {
  .proc__steps {
    grid-template-columns: 1fr 1fr;
    row-gap: 48px;
  }
  .proc__line {
    display: none;
  }
  .proc__step::before,
  .proc__step::after {
    display: none;
  }
  .proc__step {
    padding-top: 20px;
    border-top: 1px solid var(--ink);
  }
}
@media (max-width: 560px) {
  .proc__steps {
    grid-template-columns: 1fr;
  }
}

/* ---------- Popularno ---------- */
.popular__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px 48px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.popular__tabs {
  border-bottom: 0;
}
.popular__track {
  --w: minmax(260px, calc(100% / 4));
}
.popular__track .pcard {
  min-height: 100%;
}
.carousel__ctrl {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 24px;
}
.carousel__ctrl .progress {
  flex: 1;
}
.carousel__ctrl .progress i {
  width: 25%;
  transition: transform 0.3s var(--ease-out);
}
.carousel__ctrl .ibtn:disabled {
  opacity: 0.35;
  cursor: default;
}
@media (max-width: 1180px) {
  .popular__track {
    --w: minmax(250px, 36%);
  }
}
@media (max-width: 720px) {
  .popular__track {
    --w: 74%;
  }
}

/* ---------- Enterijeri ---------- */
.ent {
  background: var(--wood-50);
}
.ent__grid {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 8fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: start;
}
.ent__intro .lead {
  margin: 20px 0 32px;
}
.ent__cta {
  gap: 20px;
}
.ent__mosaic {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: clamp(28px, 3.4vw, 56px) clamp(16px, 2vw, 32px);
}
.ent__item--1 {
  grid-column: 1 / -1;
}
.ent__item--2 {
  grid-column: 1 / span 5;
}
.ent__item--3 {
  grid-column: 7 / -1;
  margin-top: clamp(40px, 8vw, 140px);
}
.ent__item--4 {
  grid-column: 2 / -1;
}
.ent__item--2 .proj--tall .proj__media {
  --ar: 4 / 5;
}
.ent__mat {
  margin-top: 12px;
  font-size: 11.5px;
  color: var(--ink-3);
  padding-top: 12px;
  border-top: 1px solid var(--line-2);
}
.ent__mat a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--wood);
  text-underline-offset: 3px;
}
.ent__mat a:hover {
  color: var(--wood-700);
}
@media (max-width: 900px) {
  .ent__grid {
    grid-template-columns: 1fr;
  }
  .ent__mosaic {
    grid-template-columns: 1fr;
  }
  .ent__item--1,
  .ent__item--2,
  .ent__item--3,
  .ent__item--4 {
    grid-column: 1;
    margin-top: 0;
  }
}

/* ---------- B2B ---------- */
.b2b {
  position: relative;
  overflow: hidden;
}
.b2b::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(246, 245, 242, 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246, 245, 242, 0.5) 1px, transparent 1px);
  background-size: 96px 96px;
  mask-image: radial-gradient(ellipse at 80% 40%, #000, transparent 70%);
  -webkit-mask-image: radial-gradient(
    ellipse at 80% 40%,
    #000,
    transparent 70%
  );
}
.b2b__grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.b2b__copy .lead {
  margin: 20px 0 32px;
}
.b2b__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
  margin-bottom: 40px;
  border-top: 1px solid var(--line-inv);
}
.b2b__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-inv);
  font-size: 15px;
  color: rgba(246, 245, 242, 0.88);
}
.b2b__list .ic {
  color: var(--wood);
  width: 22px;
  height: 22px;
}
.b2b__copy .row {
  gap: 24px;
}
.b2b__ui {
  position: relative;
  padding: 104px 0 0 56px;
}
.qo-card {
  position: relative;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.6);
  border-radius: var(--r-2);
  padding: 20px;
  z-index: 1;
}
.qo-card--back {
  position: absolute;
  top: 0;
  left: 0;
  right: 72px;
  background: #24282a;
  color: var(--paper);
  box-shadow: none;
  padding: 18px 20px 120px;
  display: grid;
  gap: 6px;
  justify-items: start;
  z-index: 0;
}
.qo-card--back .mono {
  font-size: 11px;
  color: rgba(246, 245, 242, 0.5);
}
.qo-card--back p b {
  font-weight: 500;
}
.qo-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.qo-card__head .mono {
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.qo-card__search {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 14px;
  border: 1px solid var(--ink);
  background: #fff;
  font-family: var(--f-mono);
  font-size: 15px;
  margin-bottom: 12px;
}
.qo-card__search .ic {
  width: 18px;
  height: 18px;
}
.qo-caret {
  width: 1px;
  height: 20px;
  background: var(--ink);
  animation: blink 1s steps(1) infinite;
  margin-left: -8px;
}
@keyframes blink {
  50% {
    opacity: 0;
  }
}
.qo-table {
  font-size: 13.5px;
  font-variant-numeric: tabular-nums;
}
.qo-table th {
  font-family: var(--f-mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-4);
  text-align: left;
  padding: 8px 8px 8px 0;
  border-bottom: 1px solid var(--line-2);
}
.qo-table td {
  padding: 11px 8px 11px 0;
  border-bottom: 1px solid var(--line);
}
.qo-table td.mono {
  font-size: 12.5px;
}
.qo-table .num {
  text-align: right;
  padding-right: 0;
}
.qo-table tbody tr {
  animation: rise 0.6s var(--ease-out) both;
}
.qo-table tbody tr:nth-child(2) {
  animation-delay: 0.1s;
}
.qo-table tbody tr:nth-child(3) {
  animation-delay: 0.2s;
}
.qo-table tbody tr:nth-child(4) {
  animation-delay: 0.3s;
}
.qo-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}
.qo-card__foot > span:first-child {
  display: grid;
}
.qo-card__foot .mono {
  font-size: 10.5px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.qo-card__foot b {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.qo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 16px;
  background: var(--ink);
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
}
.qo-btn .ic {
  width: 16px;
  height: 16px;
}
@media (max-width: 1000px) {
  .b2b__grid {
    grid-template-columns: 1fr;
  }
  .b2b__ui {
    padding: 40px 0 0 24px;
  }
}
@media (max-width: 560px) {
  .b2b__list {
    grid-template-columns: 1fr;
  }
  .qo-table th:nth-child(2),
  .qo-table td:nth-child(2) {
    display: none;
  }
  .b2b__ui {
    padding-left: 12px;
  }
}

/* ---------- Krojna lista ---------- */
.kl__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(32px, 5vw, 96px);
  align-items: center;
}
.kl__plan {
  background: var(--card);
  border: 1px solid var(--line);
  padding: clamp(16px, 2vw, 32px);
}
.kl__copy .lead {
  margin: 20px 0 28px;
}
.kl__actions {
  margin-top: 20px;
  gap: 20px;
}
.kl__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
}
.kl__facts li {
  display: flex;
  align-items: center;
  gap: 8px;
}
.kl__facts .ic {
  width: 16px;
  height: 16px;
  color: var(--wood-600);
}
@media (max-width: 1000px) {
  .kl__grid {
    grid-template-columns: 1fr;
  }
  .kl__plan {
    order: 2;
  }
}

.cutplan {
  width: 100%;
  height: auto;
  font-family: var(--f-mono);
}
.cutplan text {
  font-size: 9px;
  fill: var(--ink-3);
}
.cp__panel {
  stroke: var(--ink);
  stroke-width: 1;
}
.cp__hatch {
  stroke: var(--ink-4);
  stroke-width: 0.6;
  opacity: 0.6;
}
.cp__piece rect {
  fill: var(--card);
  stroke: var(--ink-2);
  stroke-width: 0.8;
}
.cp__edge {
  stroke: var(--wood);
  stroke-width: 2.4;
}
.cp__n {
  font-family: var(--f-sans);
  font-size: 10px !important;
  font-weight: 500;
  fill: var(--ink) !important;
}
.cp__d {
  font-size: 8.5px !important;
}
.cp__dim line {
  stroke: var(--ink-3);
  stroke-width: 0.8;
}
.cp__dim text {
  font-size: 10px;
  fill: var(--ink-2);
}
.cp__lblbg {
  fill: var(--card);
}
.cp__legend text {
  font-size: 9.5px;
}
.cutplan--anim .cp__piece {
  opacity: 0;
  transform: translateY(4px);
  transition:
    opacity 0.5s var(--ease-out),
    transform 0.6s var(--ease-out);
  transition-delay: calc(var(--i) * 70ms);
}
.is-in .cutplan--anim .cp__piece,
.no-js .cutplan--anim .cp__piece {
  opacity: 1;
  transform: none;
}

/* ---------- O Kumriću ---------- */
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 6fr) minmax(0, 5fr);
  gap: clamp(40px, 6vw, 120px);
  align-items: center;
}
.about__media {
  position: relative;
  padding: 0 12% 18% 0;
}
.about__img {
  overflow: hidden;
  background: var(--paper-3);
}
.about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about__img--a {
  aspect-ratio: 4 / 3;
}
.about__img--b {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46%;
  aspect-ratio: 4 / 5;
  border: 8px solid var(--paper-2);
}
.about__stamp {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.about__copy .body-l {
  margin: 20px 0 36px;
  color: var(--ink-2);
}
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-2);
  margin-bottom: 12px;
}
.stats > div {
  padding: 20px 0;
  border-bottom: 1px solid var(--line-2);
}
.stats > div:nth-child(odd) {
  padding-right: 20px;
  border-right: 1px solid var(--line-2);
}
.stats > div:nth-child(even) {
  padding-left: 24px;
}
.stats__v {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 450;
  font-stretch: 112%;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stats dd {
  font-size: 14px;
  color: var(--ink-3);
}
.ph {
  position: relative;
  color: var(--ink-4);
}
.ph::before,
.ph::after {
  font-family: var(--f-mono);
  font-weight: 300;
  color: var(--wood);
  font-size: 0.7em;
}
.ph::before {
  content: "[ ";
}
.ph::after {
  content: " ]";
}
.ph-note {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
}
.ph-note .ic {
  width: 16px;
  height: 16px;
  color: var(--wood-600);
}
@media (max-width: 900px) {
  .about__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Lokacija ---------- */
.loc__grid {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: 0;
  border: 1px solid var(--line);
  background: var(--card);
}
.map {
  position: relative;
  min-height: 520px;
  background: #e9e6df;
  overflow: hidden;
}
.map__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.map__street {
  fill: none;
  stroke: #fbfaf8;
  stroke-width: 7;
}
.map__street--main {
  stroke-width: 14;
  stroke: #fff;
}
.map__river {
  fill: #d9dddc;
}
.map__block {
  fill: #dfdbd2;
}
.map__block--us {
  fill: var(--wood-200);
}
.map__lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  fill: var(--ink-4);
  letter-spacing: 0.04em;
}
.map__pin {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translate(-13px, -13px);
}
.map__pin-dot {
  position: relative;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  border: 6px solid var(--wood);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}
.map__pin-dot::before {
  content: "";
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1px solid var(--wood);
  animation: ring 2.4s var(--ease) infinite;
}
.map__pin-lbl {
  display: grid;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 14px;
  font-size: 14px;
  box-shadow: var(--sh-3);
}
.map__pin-lbl b {
  font-weight: 500;
}
.map__pin-lbl .mono {
  font-size: 10.5px;
  color: rgba(246, 245, 242, 0.6);
}
.map__open {
  position: absolute;
  left: 20px;
  bottom: 20px;
}
.map__open .ic {
  width: 16px;
  height: 16px;
}
.loc__card {
  padding: clamp(28px, 3.4vw, 56px);
  display: grid;
  align-content: start;
  gap: 24px;
}
.loc__card .eyebrow {
  margin-bottom: 0;
}
.loc__dl {
  display: grid;
  border-top: 1px solid var(--line);
}
.loc__dl > div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}
.loc__dl dt {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-3);
  align-self: start;
}
.loc__dl dt .ic {
  width: 18px;
  height: 18px;
  color: var(--ink-2);
}
.loc__dl dd {
  font-weight: 500;
}
.loc__dl a:hover {
  color: var(--wood-700);
}
.loc__hours {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: start;
  gap: 2px 20px;
  font-weight: 400 !important;
}
.loc__hours .mono {
  font-size: 13px;
}
@media (max-width: 1000px) {
  .loc__grid {
    grid-template-columns: 1fr;
  }
  .map {
    min-height: 360px;
  }
}
@media (max-width: 560px) {
  .loc__dl > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}
