/* JK UNIS Premium v4 - main.css */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Outfit:wght@300;400;500;600&display=swap');

/* ── Tokens ── */
:root {
  --or:     #e8620a;
  --or-lt:  #f5894a;
  --or-dk:  #b84c06;
  --or-bg:  rgba(232,98,10,.08);
  --ink:    #16130d;
  --ink2:   #3a3630;
  --mu:     #8c8780;
  --bg:     #fafaf7;
  --bg2:    #f4f2ec;
  --ln:     #e6e1d6;
  --wh:     #ffffff;
  --fd:     'Cormorant Garamond', Georgia, serif;
  --fb:     'Outfit', system-ui, sans-serif;
  --r:      5px;
  --rl:     18px;
  --rx:     28px;
  --sh:     0 4px 24px rgba(0,0,0,.08);
  --shb:    0 12px 48px rgba(0,0,0,.12);
  --e:      cubic-bezier(.25,.46,.45,.94);
  --tf:     .18s;
  --tm:     .34s;
  --ts:     .6s;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--fb); color: var(--ink2); background: var(--wh); overflow-x: hidden; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ── Skip link ── */
.skip-link { position: absolute; top: -100px; left: 1rem; padding: .5rem 1rem; background: var(--ink); color: var(--wh); border-radius: var(--r); font-size: .875rem; z-index: 9999; transition: top .15s; }
.skip-link:focus { top: 1rem; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--ln); border-radius: 99px; }
::-webkit-scrollbar-thumb:hover { background: var(--or-lt); }

/* ── Layout ── */
.wrap { max-width: 1260px; margin: 0 auto; padding: 0 2rem; position: relative; z-index: 1; }
section { position: relative; z-index: 1; }

/* ── Window Background ── */
.jk-winbg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
.jk-winbg svg { width: 100%; height: 100%; }

/* ── Typography ── */
.t-eye { font-family: var(--fb); font-size: .66rem; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--or); display: flex; align-items: center; gap: 10px; }
.t-eye::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--or); flex-shrink: 0; }
.t-eye--c { justify-content: center; }
.t-eye--c::before { display: none; }
.t-disp { font-family: var(--fd); font-size: clamp(2.5rem, 5.2vw, 4.8rem); font-weight: 300; line-height: 1.07; letter-spacing: -.025em; color: var(--ink); }
.t-disp em { font-style: italic; color: var(--or-dk); font-weight: 300; }
.t-h2 { font-family: var(--fd); font-size: clamp(1.8rem, 3vw, 2.75rem); font-weight: 300; line-height: 1.18; letter-spacing: -.015em; color: var(--ink); }
.t-body { font-size: 1rem; line-height: 1.78; color: var(--ink2); }
.t-small { font-size: .875rem; line-height: 1.65; color: var(--mu); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--fb); font-size: .77rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  padding: .85rem 1.75rem; border-radius: var(--r);
  border: 1.5px solid transparent; cursor: pointer; white-space: nowrap;
  transition: background var(--tf), color var(--tf), border-color var(--tf), transform var(--tf), box-shadow var(--tf);
}
.btn:active { transform: scale(.98); }
.btn svg { width: 13px; height: 13px; flex-shrink: 0; transition: transform var(--tf); }
.btn:hover svg { transform: translateX(3px); }
.btn--dark { background: var(--ink); color: var(--wh); border-color: var(--ink); }
.btn--dark:hover { background: var(--or-dk); border-color: var(--or-dk); transform: translateY(-2px); box-shadow: var(--sh); }
.btn--orange { background: var(--or); color: var(--wh); border-color: var(--or); }
.btn--orange:hover { background: var(--or-dk); border-color: var(--or-dk); transform: translateY(-2px); box-shadow: var(--sh); }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--wh); transform: translateY(-2px); }
.btn--outline-or { background: transparent; color: var(--or); border-color: var(--or); }
.btn--outline-or:hover { background: var(--or); color: var(--wh); transform: translateY(-2px); }

/* ── HEADER ── */
.jk-hd { position: fixed; top: 0; left: 0; right: 0; z-index: 500; transition: background var(--tm) var(--e), box-shadow var(--tm); }
.jk-hd.scrolled { background: rgba(255,255,255,.94); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); box-shadow: 0 1px 0 var(--ln); }
.jk-hd__inner { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 1rem; }

/* Logo header */
.jk-logo-hd { display: flex; align-items: center; flex-shrink: 0; height: 50px; max-width: 220px; }
.jk-logo-hd a { display: flex; align-items: center; height: 100%; }
.jk-logo-hd .custom-logo-link { display: flex; align-items: center; height: 100%; }
.jk-logo-hd img { height: 50px !important; width: auto !important; max-width: 200px !important; max-height: 50px !important; object-fit: contain; object-position: left center; background: transparent; display: block; }
.jk-logo-hd .custom-logo { height: 50px !important; width: auto !important; max-width: 200px !important; max-height: 50px !important; object-fit: contain; object-position: left center; background: transparent; }
.jk-logo-hd__fb { display: flex; align-items: center; gap: 9px; text-decoration: none; }
.jk-logo-hd__mk { width: 38px; height: 38px; background: var(--ink); border-radius: var(--r); display: flex; align-items: center; justify-content: center; font-family: var(--fd); font-size: 1rem; font-weight: 500; color: var(--wh); flex-shrink: 0; }
.jk-logo-hd__tx { font-family: var(--fd); font-size: 1.15rem; font-weight: 400; letter-spacing: .06em; color: var(--ink); line-height: 1; }
.jk-logo-hd__sb { font-family: var(--fb); font-size: .6rem; letter-spacing: .12em; text-transform: uppercase; color: var(--mu); margin-top: 1px; }

/* Nav */
.jk-nav { display: flex; align-items: center; flex: 1; justify-content: center; }
.jk-nav a { font-size: .78rem; font-weight: 400; letter-spacing: .03em; color: var(--ink2); padding: .42rem .82rem; border-radius: var(--r); position: relative; transition: color var(--tf); }
.jk-nav a::after { content: ''; position: absolute; bottom: 2px; left: .82rem; right: .82rem; height: 1.5px; background: var(--or); transform: scaleX(0); transform-origin: left; transition: transform var(--tm) var(--e); }
.jk-nav a:hover { color: var(--ink); }
.jk-nav a:hover::after { transform: scaleX(1); }
.jk-nav a.is-active { color: var(--ink); }
.jk-nav a.is-active::after { transform: scaleX(1); }
/* Mobile nav open */
.jk-nav.is-open { display: flex; flex-direction: column; position: fixed; inset: 76px 0 0; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 2.5rem 1.5rem; gap: .15rem; justify-content: flex-start; align-items: flex-start; z-index: 499; overflow-y: auto; }
.jk-nav.is-open a { font-family: var(--fd); font-size: 1.65rem; font-weight: 300; padding: .55rem 0; width: 100%; }
.jk-nav.is-open a::after { bottom: 0; left: 0; right: 0; }

.jk-hd__acts { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.jk-hd__tel { font-size: .76rem; color: var(--mu); transition: color var(--tf); }
.jk-hd__tel:hover { color: var(--ink); }

.jk-ham { display: none; flex-direction: column; justify-content: center; gap: 5px; padding: 8px; width: 38px; height: 38px; cursor: pointer; }
.jk-ham span { display: block; width: 20px; height: 1.5px; background: var(--ink); transition: transform var(--tm) var(--e), opacity var(--tf); transform-origin: center; }

/* ── HERO ── */
.jk-hero { min-height: 100vh; display: flex; align-items: center; padding: 106px 0 72px; overflow: hidden; }
.jk-hero__grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4.5rem; align-items: center; }
.h-eye   { margin-bottom: 1.6rem; opacity: 0; animation: jk-up .8s var(--e) .1s forwards; }
.h-title { margin-bottom: 1.4rem; opacity: 0; animation: jk-up .8s var(--e) .26s forwards; }
.h-desc  { max-width: 460px; margin-bottom: 2rem; opacity: 0; animation: jk-up .8s var(--e) .42s forwards; }
.h-acts  { display: flex; gap: .9rem; flex-wrap: wrap; opacity: 0; animation: jk-up .8s var(--e) .58s forwards; }
.h-usps  { display: flex; margin-top: 2.75rem; padding-top: 2rem; border-top: 1px solid var(--ln); opacity: 0; animation: jk-up .8s var(--e) .74s forwards; flex-wrap: wrap; gap: 0; }
.h-usp   { display: flex; align-items: flex-start; gap: 10px; flex: 1; min-width: 150px; padding-right: 1.4rem; }
.h-usp:not(:last-child) { border-right: 1px solid var(--ln); margin-right: 1.4rem; }
.h-usp__ico { width: 36px; height: 36px; min-width: 36px; background: var(--or-bg); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: var(--or); margin-top: 2px; }
.h-usp__ico svg { width: 18px; height: 18px; }
.h-usp__t { font-family: var(--fd); font-size: 1rem; font-weight: 500; color: var(--ink); line-height: 1.2; }
.h-usp__s { font-size: .73rem; color: var(--mu); margin-top: 2px; line-height: 1.4; }

/* Hero visual */
.jk-hero__vis { position: relative; opacity: 0; animation: jk-right .9s var(--e) .2s forwards; }
.jk-hero__frame { border-radius: var(--rx); overflow: hidden; aspect-ratio: 4/5; background: var(--bg2); box-shadow: var(--shb); display: flex; align-items: center; justify-content: center; }
.jk-hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.jk-hero__deco { position: absolute; bottom: -16px; left: -16px; width: 120px; height: 120px; border-radius: var(--rl); background: var(--or-bg); z-index: -1; }
.jk-hero__badge { position: absolute; bottom: 22px; right: -26px; background: var(--wh); border-radius: var(--rl); padding: 14px 18px; box-shadow: var(--sh); min-width: 148px; border: 1px solid var(--ln); }
.hbadge-ico { width: 30px; height: 30px; background: var(--or-bg); border-radius: 7px; display: flex; align-items: center; justify-content: center; color: var(--or); margin-bottom: 7px; }
.hbadge-ico svg { width: 16px; height: 16px; }
.hbadge-t { font-family: var(--fd); font-size: .95rem; font-weight: 500; color: var(--ink); line-height: 1; }
.hbadge-s { font-size: .68rem; color: var(--mu); margin-top: 2px; }

/* ── SEC HEAD ── */
.jk-sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: 3.25rem; }
.jk-sec-head .t-eye { margin-bottom: .9rem; }

/* ── PRODUCTS ── */
.jk-prod { padding: 6.5rem 0; background: var(--wh); }
.jk-prod__grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem; }
.jk-prod__grid.cols-5 { grid-template-columns: repeat(5, 1fr); }
.jk-prod__grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.jk-prod__grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.jk-prod__card { border-radius: var(--rl); overflow: hidden; aspect-ratio: .68; position: relative; cursor: pointer; background: var(--bg2); transition: transform var(--tm) var(--e), box-shadow var(--tm); }
.jk-prod__card:hover { transform: translateY(-8px); box-shadow: var(--shb); }
.jk-prod__card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform var(--ts) var(--e); }
.jk-prod__card:hover img { transform: scale(1.06); }
.jk-prod__ph { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.jk-prod__ph svg { width: 52px; height: 52px; opacity: .18; color: var(--ink); }
.jk-prod__ov { position: absolute; inset: 0; background: linear-gradient(to top, rgba(14,10,5,.85) 0%, rgba(14,10,5,.12) 52%, transparent 100%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.jk-prod__tag { font-size: .56rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--or-lt); margin-bottom: 4px; }
.jk-prod__name { font-family: var(--fd); font-size: 1.15rem; font-weight: 400; color: var(--wh); line-height: 1.2; }
.jk-prod__arrow { position: absolute; top: .9rem; right: .9rem; width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,.15); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); display: flex; align-items: center; justify-content: center; color: var(--wh); opacity: 0; transition: opacity var(--tf), transform var(--tf); }
.jk-prod__arrow svg { width: 11px; height: 11px; }
.jk-prod__card:hover .jk-prod__arrow { opacity: 1; transform: scale(1.08); }

/* ── WHY ── */
.jk-why { padding: 6.5rem 0; background: var(--bg); }
.jk-why__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.jk-why__intro .t-eye  { margin-bottom: 1rem; }
.jk-why__intro .t-h2   { margin-bottom: 1.3rem; }
.jk-why__intro .t-body { margin-bottom: 2rem; max-width: 410px; }
.jk-feat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.jk-feat { padding: 1.6rem; background: var(--wh); border-radius: var(--rl); border: 1px solid var(--ln); transition: transform var(--tm) var(--e), box-shadow var(--tm), border-color var(--tm); }
.jk-feat:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--or-lt); }
.jk-feat__ico { width: 42px; height: 42px; background: var(--or-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--or); margin-bottom: 1rem; transition: background var(--tf), color var(--tf); }
.jk-feat__ico svg { width: 21px; height: 21px; }
.jk-feat:hover .jk-feat__ico { background: var(--or); color: var(--wh); }
.jk-feat__title { font-family: var(--fd); font-size: 1.02rem; font-weight: 400; color: var(--ink); margin-bottom: .35rem; line-height: 1.3; }
.jk-feat__desc  { font-size: .82rem; color: var(--mu); line-height: 1.65; }

/* ── ABOUT ── */
.jk-about { padding: 6.5rem 0; background: var(--ink); overflow: hidden; position: relative; }
.jk-about::before { content: ''; position: absolute; top: -50px; right: -50px; width: 340px; height: 340px; border-radius: 50%; border: 1px solid rgba(255,255,255,.04); pointer-events: none; }
.jk-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5.5rem; align-items: center; }
.jk-about .t-eye { color: var(--or-lt); }
.jk-about .t-eye::before { background: var(--or-lt); }
.jk-about .t-h2   { color: var(--wh); margin: 1rem 0 1.3rem; }
.jk-about .t-body { color: rgba(255,255,255,.64); max-width: 430px; margin-bottom: 2rem; }
.jk-about__accent { width: 40px; height: 3px; background: var(--or); border-radius: 2px; margin-bottom: 1.25rem; }
.jk-about__milestones { margin-top: 2.75rem; padding-top: 2.25rem; border-top: 1px solid rgba(255,255,255,.1); }
.jk-about__ml-t  { font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--or-lt); margin-bottom: 1.1rem; }
.jk-about__ml-list { display: flex; flex-direction: column; gap: .6rem; }
.jk-about__ml-item { display: flex; align-items: flex-start; gap: .875rem; }
.jk-about__ml-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--or); flex-shrink: 0; margin-top: 7px; }
.jk-about__ml-text { font-size: .875rem; color: rgba(255,255,255,.65); line-height: 1.5; }
.jk-about__vis   { position: relative; }
.jk-about__deco  { position: absolute; top: -22px; left: -22px; width: 88px; height: 88px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); }
.jk-about__frame { border-radius: var(--rx); overflow: hidden; aspect-ratio: .85; background: rgba(255,255,255,.06); display: flex; align-items: center; justify-content: center; }
.jk-about__frame img { width: 100%; height: 100%; object-fit: cover; mix-blend-mode: luminosity; opacity: .8; transition: opacity var(--ts); }
.jk-about__frame:hover img { opacity: 1; }
.jk-about__ph { color: rgba(255,255,255,.2); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; padding: 1rem; }
.jk-about__sub { position: absolute; bottom: -22px; right: -22px; width: 190px; border-radius: var(--rl); overflow: hidden; box-shadow: 0 10px 44px rgba(0,0,0,.5); aspect-ratio: 1; }
.jk-about__sub img { width: 100%; height: 100%; object-fit: cover; }

/* ── GALLERY ── */
.jk-gal { padding: 6.5rem 0; background: var(--wh); }
.jk-gal__grid { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 230px 230px; gap: .9rem; margin-top: 3rem; }
.jk-gal__item { overflow: hidden; border-radius: 11px; background: var(--bg2); position: relative; cursor: pointer; }
.jk-gal__item:first-child { grid-column: span 2; grid-row: span 2; border-radius: var(--rl); }
.jk-gal__item img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--ts) var(--e); }
.jk-gal__item:hover img { transform: scale(1.06); }
.jk-gal__ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: var(--mu); }
.jk-gal__ph svg { width: 28px; height: 28px; opacity: .28; }
.jk-gal__hov { position: absolute; inset: 0; background: rgba(14,10,5,.46); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity var(--tm); }
.jk-gal__hov span { font-family: var(--fd); font-size: 1.05rem; color: var(--wh); letter-spacing: .04em; text-align: center; padding: 0 1.25rem; }
.jk-gal__item:hover .jk-gal__hov { opacity: 1; }
.jk-gal__item:first-child::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--or); opacity: .6; }

/* ── KARIERA ── */
.jk-career { padding: 6.5rem 0; background: var(--bg); }
.jk-career__intro { max-width: 680px; margin-bottom: 3.5rem; }
.jk-career__intro .t-eye { margin-bottom: 1rem; }
.jk-career__intro .t-h2  { margin-bottom: 1.25rem; }
.jk-career__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 1.25rem; }
.jk-career__card { background: var(--wh); border-radius: var(--rl); border: 1px solid var(--ln); padding: 1.75rem; display: flex; gap: 1.25rem; align-items: flex-start; transition: transform var(--tm) var(--e), box-shadow var(--tm), border-color var(--tm); }
.jk-career__card:hover { transform: translateY(-4px); box-shadow: var(--sh); border-color: var(--or-lt); }
.jk-career__ico { width: 48px; height: 48px; min-width: 48px; background: var(--or-bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--or); transition: background var(--tf), color var(--tf); flex-shrink: 0; }
.jk-career__ico svg { width: 24px; height: 24px; }
.jk-career__card:hover .jk-career__ico { background: var(--or); color: var(--wh); }
.jk-career__title { font-family: var(--fd); font-size: 1.2rem; font-weight: 400; color: var(--ink); line-height: 1.3; margin-bottom: .4rem; }
.jk-career__title a { color: inherit; }
.jk-career__meta  { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--or); margin-bottom: .65rem; }
.jk-career__desc  { font-size: .84rem; color: var(--mu); line-height: 1.65; margin-bottom: 1rem; }
.jk-career__link  { font-size: .72rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--or-dk); display: inline-flex; align-items: center; gap: 7px; transition: gap var(--tf); }
.jk-career__link svg { width: 12px; height: 12px; flex-shrink: 0; }
.jk-career__card:hover .jk-career__link { gap: 11px; }
.jk-career__empty { text-align: center; padding: 3rem 1rem; color: var(--mu); font-size: .95rem; grid-column: 1 / -1; }

/* ── CONTACT ── */
.jk-con { padding: 6.5rem 0; background: var(--wh); }
.jk-con__intro { text-align: center; margin-bottom: 4rem; }
.jk-con__intro .t-h2 { margin-bottom: .7rem; }
.jk-con__grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 4.5rem; align-items: start; }
.jk-cinfo__item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.6rem; }
.jk-cinfo__ico  { width: 42px; height: 42px; min-width: 42px; background: var(--or-bg); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--or); transition: background var(--tf), color var(--tf); }
.jk-cinfo__ico svg { width: 19px; height: 19px; }
.jk-cinfo__item:hover .jk-cinfo__ico { background: var(--or); color: var(--wh); }
.jk-cinfo__lbl  { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--mu); margin-bottom: 2px; }
.jk-cinfo__val  { font-size: .94rem; color: var(--ink); line-height: 1.55; }
.jk-cinfo__val a:hover { color: var(--or-dk); }

/* Form */
.jk-form-wrap { background: var(--bg); border-radius: var(--rx); padding: 2.25rem; border: 1px solid var(--ln); }
.jk-form__title { font-family: var(--fd); font-size: 1.5rem; font-weight: 300; color: var(--ink); margin-bottom: 1.6rem; }
.jk-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; margin-bottom: .8rem; }
.jk-form-grp { margin-bottom: .8rem; }
.jk-form-lbl { display: block; font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .14em; color: var(--mu); margin-bottom: .4rem; }
.jk-form-in, .jk-form-sel, .jk-form-ta {
  width: 100%; padding: .78rem .95rem;
  font-family: var(--fb); font-size: .875rem; color: var(--ink);
  background: var(--wh); border: 1.5px solid var(--ln);
  border-radius: var(--r); outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color var(--tf), box-shadow var(--tf); display: block;
}
.jk-form-in:focus, .jk-form-sel:focus, .jk-form-ta:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(232,98,10,.12); }
.jk-form-in::placeholder, .jk-form-ta::placeholder { color: var(--mu); }
.jk-form-ta { min-height: 108px; resize: vertical; }
.jk-form-submit { width: 100%; margin-top: .4rem; justify-content: center; }
.jk-form-msg { display: none; font-size: .82rem; text-align: center; padding: .8rem 1rem; border-radius: var(--r); margin-top: .8rem; }
.jk-form-msg.ok { display: block; background: #edf7ed; color: #2a622a; }
.jk-form-msg.er { display: block; background: #fdf0f0; color: #7a1f1f; }

/* CF7 overrides */
.jk-form-wrap .wpcf7 { margin: 0; }
.jk-form-wrap .wpcf7-form p { margin-bottom: .8rem; }
.jk-form-wrap .wpcf7-form input[type="text"],
.jk-form-wrap .wpcf7-form input[type="email"],
.jk-form-wrap .wpcf7-form input[type="tel"],
.jk-form-wrap .wpcf7-form select,
.jk-form-wrap .wpcf7-form textarea {
  width: 100%; padding: .78rem .95rem;
  font-family: var(--fb); font-size: .875rem; color: var(--ink);
  background: var(--wh); border: 1.5px solid var(--ln);
  border-radius: var(--r); outline: none; -webkit-appearance: none; appearance: none;
  transition: border-color var(--tf), box-shadow var(--tf);
  box-sizing: border-box; display: block;
}
.jk-form-wrap .wpcf7-form input[type="text"]:focus,
.jk-form-wrap .wpcf7-form input[type="email"]:focus,
.jk-form-wrap .wpcf7-form input[type="tel"]:focus,
.jk-form-wrap .wpcf7-form select:focus,
.jk-form-wrap .wpcf7-form textarea:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(232,98,10,.12); }
.jk-form-wrap .wpcf7-form textarea { min-height: 108px; resize: vertical; }
.jk-form-wrap .wpcf7-form input[type="submit"] {
  width: 100%; padding: .85rem 1.75rem;
  font-family: var(--fb); font-size: .77rem; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  background: var(--or); color: var(--wh);
  border: 1.5px solid var(--or); border-radius: var(--r);
  cursor: pointer; transition: background var(--tf), transform var(--tf);
  display: block; box-sizing: border-box;
}
.jk-form-wrap .wpcf7-form input[type="submit"]:hover { background: var(--or-dk); border-color: var(--or-dk); transform: translateY(-2px); }
.wpcf7-not-valid-tip { font-size: .72rem; color: #c0392b; margin-top: .25rem; display: block; }
.wpcf7-response-output { font-size: .82rem; padding: .75rem 1rem; border-radius: var(--r); margin-top: .875rem !important; border: none !important; }
.wpcf7-mail-sent-ok { background: #edf7ed !important; color: #2a622a !important; }
.wpcf7-validation-errors, .wpcf7-mail-sent-ng { background: #fdf0f0 !important; color: #7a1f1f !important; }

/* ── FOOTER ── */
.jk-ft { background: var(--ink); color: var(--wh); padding: 4.5rem 0 2.25rem; }
.jk-ft__grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; }
.jk-ft__logo { display: block; max-height: 52px; width: auto; max-width: 200px; object-fit: contain; object-position: left center; background: transparent; margin-bottom: 1rem; }
.jk-ft__logo-text { font-family: var(--fd); font-size: 1.55rem; font-weight: 300; letter-spacing: .08em; display: block; margin-bottom: 1rem; }
.jk-ft__tagline { font-size: .84rem; color: rgba(255,255,255,.43); line-height: 1.7; max-width: 230px; }
.jk-ft__col-t   { font-size: .62rem; font-weight: 600; text-transform: uppercase; letter-spacing: .18em; color: var(--or-lt); margin-bottom: 1.1rem; }
.jk-ft__links   { display: flex; flex-direction: column; gap: .5rem; }
.jk-ft__links li { margin-bottom: 0; }
.jk-ft__links a  { font-size: .84rem; color: rgba(255,255,255,.52); transition: color var(--tf); }
.jk-ft__links a:hover { color: var(--wh); }
/* WP nav menu in footer */
.jk-ft__links ul { display: flex; flex-direction: column; gap: .5rem; padding: 0; margin: 0; list-style: none; }
.jk-ft__links ul li { margin: 0; }
.jk-ft__accent  { width: 32px; height: 2px; background: var(--or); border-radius: 1px; margin-bottom: 1.1rem; }
.jk-ft__bottom  { display: flex; justify-content: space-between; align-items: center; padding-top: 1.875rem; border-top: 1px solid rgba(255,255,255,.08); font-size: .76rem; color: rgba(255,255,255,.32); flex-wrap: wrap; gap: .75rem; }
.jk-ft__bottom a { color: rgba(255,255,255,.32); transition: color var(--tf); }
.jk-ft__bottom a:hover { color: rgba(255,255,255,.65); }

/* ── ANIMATIONS ── */
@keyframes jk-up    { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes jk-right { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.jk-rv          { opacity: 0; transform: translateY(26px); transition: opacity .68s var(--e), transform .68s var(--e); }
.jk-rv.jk-vs    { opacity: 1; transform: translateY(0); }
.jk-rv-r        { transform: translateX(26px); }
.jk-rv-r.jk-vs  { transform: translateX(0); }
.jk-d1 { transition-delay: .07s; }
.jk-d2 { transition-delay: .14s; }
.jk-d3 { transition-delay: .21s; }
.jk-d4 { transition-delay: .28s; }
.jk-d5 { transition-delay: .35s; }
.jk-d6 { transition-delay: .42s; }

/* ── ADMIN BAR ── */
.admin-bar .jk-hd { top: 32px; }
@media screen and (max-width: 782px) { .admin-bar .jk-hd { top: 46px; } }

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  .jk-prod__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 1080px) {
  .jk-hero__grid  { grid-template-columns: 1fr; }
  .jk-hero__vis   { display: none; }
  .jk-hero        { min-height: auto; padding: 120px 0 64px; }
  .jk-why__grid   { grid-template-columns: 1fr; gap: 2.75rem; }
  .jk-about__grid { grid-template-columns: 1fr; }
  .jk-about__vis  { display: none; }
  .jk-ft__grid    { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .jk-con__grid   { grid-template-columns: 1fr; gap: 2.75rem; }
}
@media (max-width: 740px) {
  .wrap               { padding: 0 1.1rem; }
  .jk-nav             { display: none; }
  .jk-ham             { display: flex; }
  .jk-hd__tel         { display: none; }
  .jk-prod__grid      { grid-template-columns: repeat(2, 1fr); }
  .jk-feat-grid       { grid-template-columns: 1fr; }
  .jk-gal__grid       { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .jk-gal__item       { height: 180px; }
  .jk-gal__item:first-child { grid-column: 1 / -1; height: 260px; grid-row: span 1; }
  .jk-career__grid    { grid-template-columns: 1fr; }
  .jk-sec-head        { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .h-usps             { flex-direction: column; gap: 1rem; }
  .h-usp:not(:last-child) { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid var(--ln); padding-bottom: 1rem; }
  .jk-form-row        { grid-template-columns: 1fr; }
  .jk-ft__grid        { grid-template-columns: 1fr; gap: 1.75rem; }
  .h-acts             { flex-direction: column; }
  .h-acts .btn        { width: 100%; justify-content: center; }
  .btn                { padding: .78rem 1.4rem; font-size: .74rem; }
}
@media (max-width: 420px) {
  .jk-prod__grid      { grid-template-columns: 1fr 1fr; }
  .jk-gal__grid       { grid-template-columns: 1fr; }
  .jk-gal__item:first-child { grid-column: 1; }
  .jk-form-wrap       { padding: 1.4rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .jk-rv, .jk-rv.jk-vs { opacity: 1; transform: none; }
}
@media print {
  .jk-hd, .jk-winbg, .jk-ham { display: none; }
  .jk-hero { padding-top: 2rem; }
}
