/* =====================================================================
   PEKON — Metalne stepenice. Staircases-only site.
   Calm, minimal, editorial. ZERO motion (no transitions, no transforms
   on hover, no scroll animation) per client requirement. Only instant
   color/underline changes on hover/focus + visible focus outlines.
   ===================================================================== */

/* ---------- Tokens --------------------------------------------------- */
:root {
  --pekon-blue: #102785;
  --blue-700:   #0C1E66;
  --blue-500:   #1E3AA8;
  --pekon-red:  #D2110A;
  --red-600:    #B00D07;
  --pozovi-green:       #1A8340;   /* POZOVI / phone CTA — client green #1B8A3F nudged 1 shade for AA (white text 4.8:1) */
  --pozovi-green-hover: #14692F;

  --ink:        #0E1116;
  --ink-700:    #2A2F37;
  --steel-500:  #6B7280;
  --steel-300:  #C9D0DA;
  --steel-100:  #EDEFF3;
  --paper:      #F6F7F9;
  --white:      #FFFFFF;

  --maxw:   1200px;
  --radius: 10px;
  --gap:    24px;
  --header-h: 76px;
}

/* ---------- Base ----------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: 'Archivo', sans-serif; font-weight: 800; letter-spacing: -0.01em; line-height: 1.1; }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--pekon-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; top: -60px; left: 16px;
  background: var(--ink); color: var(--white);
  padding: 8px 14px; border-radius: 6px;
  font-size: 14px; z-index: 1000;
}
.skip-link:focus { top: 16px; }

/* ---------- Layout helpers ------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}
.section { padding-block: clamp(64px, 9vw, 128px); }
[id] { scroll-margin-top: calc(var(--header-h) + 20px); }
.section-white { background: var(--white); }
.section-paper { background: var(--paper); }

.section-head {
  display: grid;
  gap: 14px;
  margin-bottom: clamp(36px, 5vw, 64px);
  max-width: 760px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--ink);
}
.section-lede {
  font-size: clamp(1rem, 1.3vw, 1.125rem);
  color: var(--ink-700);
  line-height: 1.65;
  max-width: 60ch;
}

.kicker {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.kicker-light { color: rgba(255,255,255,.75); }
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

/* ---------- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn-red { background: var(--pekon-red); color: var(--white); }
.btn-red:hover, .btn-red:focus-visible { background: var(--red-600); }
.btn-ink { background: var(--ink); color: var(--white); }
.btn-ink:hover, .btn-ink:focus-visible { background: var(--ink-700); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-outline-light:hover, .btn-outline-light:focus-visible { background: rgba(255,255,255,.1); border-color: var(--white); }
.btn-block { width: 100%; }

/* POZOVI = green sitewide. Every phone CTA is an <a class="btn" href="tel:…"> — target by href
   so KRENI (maps url), "Pošaljite upit" (outline) and the form submit (red) are untouched. */
a.btn[href^="tel:"] { background: var(--pozovi-green); color: var(--white); border-color: transparent; }
a.btn[href^="tel:"]:hover, a.btn[href^="tel:"]:focus-visible { background: var(--pozovi-green-hover); }

/* ---------- Header --------------------------------------------------- */
.site-header {
  position: relative;              /* NOT sticky — client requires zero scroll/movement effects */
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid var(--steel-300);
}
.site-header .container { max-width: 1360px; }
.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 44px; width: auto; }

.primary-nav { display: none; margin-inline: auto; }
@media (min-width: 1200px) { .primary-nav { display: block; } }
.primary-nav > ul { display: flex; gap: clamp(14px, 1.7vw, 26px); align-items: center; }
.primary-nav > ul > li { position: relative; }
.primary-nav a,
.primary-nav .nav-toggle {
  font-family: 'Inter', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
  color: var(--ink);
  padding: 8px 2px;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
}
.primary-nav a:hover,
.primary-nav .nav-toggle:hover,
.primary-nav .nav-toggle:focus-visible { color: var(--pekon-blue); }
@media (min-width: 1200px) and (max-width: 1439px) {
  .primary-nav a, .primary-nav .nav-toggle { font-size: 0.72rem; letter-spacing: 0.03em; }
  .primary-nav > ul { gap: 14px; }
  .header-cta { padding: 8px 12px; font-size: 0.82rem; }
}

/* Active page */
.primary-nav a.is-active,
.primary-nav .nav-toggle.is-active { color: var(--ink); font-weight: 700; }
.primary-nav a.is-active::after,
.primary-nav .nav-toggle.is-active::after {
  content: '';
  position: absolute;
  left: 2px; right: 2px;
  bottom: 2px;
  height: 2px;
  background: var(--pekon-red);
  border-radius: 2px;
}

/* Submenu */
.nav-toggle { display: inline-flex; align-items: center; gap: 6px; }
.has-submenu.is-open > .nav-toggle { color: var(--pekon-blue); }
.submenu {
  position: absolute;
  top: calc(100% + 12px);
  left: auto;
  right: -10px;
  min-width: 320px;
  max-width: calc(100vw - 24px);
  background: var(--white);
  border: 1px solid var(--steel-300);
  border-radius: var(--radius);
  box-shadow: 0 22px 44px -26px rgba(14,17,22,.28), 0 2px 8px rgba(14,17,22,.04);
  padding: 8px;
  margin: 0;
  list-style: none;
  display: none;
  z-index: 60;
}
.submenu::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0; height: 14px;
}
.has-submenu.is-open > .submenu,
.has-submenu:focus-within > .submenu { display: block; }
.submenu li { list-style: none; }
.submenu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 14px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  border-radius: 6px;
  border-left: 2px solid transparent;
  text-decoration: none;
}
.submenu a:hover, .submenu a:focus-visible { background: var(--steel-100); color: var(--pekon-blue); }
.submenu--stairs a::after {
  content: '›';
  color: var(--pekon-red);
  margin-left: auto;
  padding-left: 10px;
  opacity: 0;
}
.submenu--stairs a:hover::after, .submenu--stairs a:focus-visible::after { opacity: 1; }

.header-cta { display: none; min-height: 42px; padding: 8px 16px; font-size: 0.9rem; }
@media (min-width: 1200px) { .header-cta { display: inline-flex; margin-left: 8px; } }

/* Hamburger */
.hamburger {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  margin-left: auto;
  border-radius: 8px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; margin-inline: auto; }
@media (min-width: 1200px) { .hamburger { display: none; } }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--white);
  z-index: 40;
  padding: 24px clamp(20px, 5vw, 40px) 40px;
  overflow-y: auto;
}
.mobile-menu[hidden] { display: none; }
.mobile-menu > nav > ul { display: grid; gap: 4px; margin-bottom: 28px; padding: 0; }
.mobile-menu > nav > ul > li > a,
.m-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 15px 0;
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ink);
  border-bottom: 1px solid var(--steel-100);
  background: none;
  border-top: 0; border-left: 0; border-right: 0;
  cursor: pointer;
  text-align: left;
}
.m-nav-toggle .caret { flex-shrink: 0; }
.mobile-menu > nav > ul > li > a.is-active { color: var(--pekon-red); }
.m-nav-toggle.is-active { color: var(--pekon-red); }

.m-submenu { list-style: none; padding: 0 0 8px 4px; margin: 0; display: none; }
.m-has-submenu.is-open .m-submenu { display: grid; gap: 0; }
.m-submenu li { border-bottom: 1px solid var(--steel-100); }
.m-submenu li:last-child { border-bottom: 0; }
.m-submenu a {
  display: flex;
  align-items: center;
  padding: 13px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink-700);
}
.m-submenu a:hover, .m-submenu a:focus-visible { color: var(--pekon-blue); }
.m-submenu a.sub-focus { font-weight: 700; color: var(--pekon-red); }
.m-submenu a.m-submenu-sub { padding-left: 18px; font-size: 0.95rem; }

/* ---------- Page hero (static, all pages) --------------------------- */
.page-hero {
  position: relative;
  min-height: clamp(320px, 46vh, 460px);
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; background: var(--ink); }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.page-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(45deg, rgba(14,17,22,.66) 0%, rgba(14,17,22,.52) 50%, rgba(14,17,22,.40) 100%),
    rgba(14,17,22,.20);
}
.page-hero .container { width: 100%; }
.page-hero-content {
  display: grid;
  gap: 14px;
  max-width: 880px;
  width: 100%;
  padding-block: clamp(40px, 7vw, 84px);
}
.page-hero-title {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(2.1rem, 5.2vw, 3.6rem);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--white);
  text-wrap: balance;
  margin: 4px 0 0;
}
.page-hero-lede {
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,.88);
  max-width: 58ch;
  margin: 0;
}

/* Breadcrumb */
.breadcrumb {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.breadcrumb ol { list-style: none; padding: 0; margin: 0; display: inline-flex; flex-wrap: wrap; gap: 8px; align-items: center; }
.breadcrumb li { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,.65); }
.breadcrumb li:not(:last-child)::after { content: '›'; color: rgba(255,255,255,.45); font-size: 1rem; line-height: 1; margin-left: 2px; }
.breadcrumb a { color: rgba(255,255,255,.85); border-bottom: 1px solid transparent; padding-bottom: 1px; }
.breadcrumb a:hover { color: var(--white); border-bottom-color: rgba(255,255,255,.55); }

/* ---------- Prose / intro ------------------------------------------- */
.prose { max-width: 72ch; }
.prose-p {
  font-size: clamp(1rem, 1.25vw, 1.08rem);
  color: var(--ink-700);
  line-height: 1.7;
  margin-top: 18px;
  max-width: 72ch;
}

/* ---------- Prednosti ----------------------------------------------- */
.prednosti-grid { display: grid; grid-template-columns: 1fr; gap: clamp(22px, 4vw, 38px); }
@media (min-width: 760px) { .prednosti-grid { grid-template-columns: repeat(2, 1fr); } }
.prednosti-item {
  padding-top: 22px;
  border-top: 1px solid var(--ink);
  display: grid;
  gap: 10px;
  align-content: start;
}
.prednosti-mark { font-size: 0.78rem; color: var(--pekon-red); letter-spacing: 0.16em; }
.prednosti-label { font-size: 1.15rem; font-weight: 800; color: var(--ink); line-height: 1.25; }
.prednosti-text { font-size: 0.95rem; color: var(--ink-700); line-height: 1.6; }

/* ---------- Category tiles ------------------------------------------ */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: var(--gap);
}
.duo-tiles { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 700px) { .duo-tiles { grid-template-columns: repeat(2, 1fr); } }
.cat-tile { display: flex; flex-direction: column; gap: 14px; }
.duo-tile { gap: 16px; }
.cat-tile-media {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  background: var(--steel-100);
  border: 1px solid var(--steel-100);
}
.cat-tile:hover .cat-tile-media,
.cat-tile:focus-visible .cat-tile-media { border-color: var(--steel-300); }
.cat-tile-media img { width: 100%; height: 100%; object-fit: cover; }
.cat-tile-label {
  font-family: 'Archivo', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--ink);
}
.cat-tile:hover .cat-tile-label, .cat-tile:focus-visible .cat-tile-label { color: var(--pekon-red); }
.cat-tile-lead { font-size: 0.98rem; color: var(--ink-700); line-height: 1.55; max-width: 46ch; }

/* ---------- Gallery (square 520 thumbs → lightbox) ------------------ */
.thumb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
@media (min-width: 980px) { .thumb-grid { gap: 18px; } }
.gal-item {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--steel-100);
}
.gal-item > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.gal-item:hover { box-shadow: 0 0 0 2px var(--pekon-red); }

.subcat-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}
.subcat-actions .card-link { margin-left: auto; }
@media (max-width: 560px) { .subcat-actions .card-link { margin-left: 0; } }
.card-link { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.9rem; color: var(--pekon-blue); }
.card-link:hover { color: var(--pekon-red); }

/* ---------- Video embeds -------------------------------------------- */
.video-embeds { display: grid; grid-template-columns: 1fr; gap: var(--gap); }
@media (min-width: 800px) { .video-embeds { grid-template-columns: repeat(2, 1fr); } }
.video-embed {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--steel-100);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ---------- CTA band ------------------------------------------------ */
.section-cta-band {
  background: var(--blue-700);
  color: var(--white);
  padding-block: clamp(52px, 7vw, 84px);
}
.section-cta-band .container { display: grid; gap: 18px; max-width: 880px; }
.cta-band-title { font-size: clamp(1.7rem, 3.6vw, 2.4rem); font-weight: 800; color: var(--white); letter-spacing: -0.015em; text-wrap: balance; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }

/* ---------- Slim contact strip (index) ------------------------------ */
.section-contact-strip { background: var(--ink); color: rgba(255,255,255,.82); padding-block: clamp(44px, 6vw, 72px); }
.contact-strip-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
@media (min-width: 900px) { .contact-strip-inner { grid-template-columns: 1.2fr 1fr; } }
.contact-strip-list { display: grid; gap: 12px; margin-top: 14px; }
.contact-strip-list li { display: flex; flex-wrap: wrap; gap: 6px 12px; align-items: baseline; font-size: 1.02rem; }
.contact-strip-list .mono { color: rgba(255,255,255,.5); min-width: 96px; }
.contact-strip-list a { color: var(--white); border-bottom: 1px solid rgba(255,255,255,.35); }
.contact-strip-list a:hover { color: var(--pekon-red); border-bottom-color: var(--pekon-red); }
.contact-strip-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Kontakt page -------------------------------------------- */
.kontakt-grid { display: grid; grid-template-columns: 1fr; gap: clamp(32px, 4vw, 56px); }
@media (min-width: 900px) { .kontakt-grid { grid-template-columns: 1fr 1.05fr; gap: clamp(40px, 5vw, 64px); } }
.kontakt-details { display: grid; gap: 24px; align-content: start; }
.kontakt-block { display: grid; gap: 4px; }
.kontakt-label { color: var(--steel-500); margin-bottom: 4px; }
.kontakt-line { color: var(--ink); font-size: 1rem; line-height: 1.55; }
.kontakt-line a { color: var(--ink); border-bottom: 1px solid var(--steel-300); padding-bottom: 1px; }
.kontakt-line a:hover { color: var(--pekon-red); border-bottom-color: var(--pekon-red); }
.kontakt-map { margin-top: 6px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--steel-300); background: var(--steel-100); }
.kontakt-map iframe { display: block; width: 100%; height: 300px; border: 0; }

.kontakt-form {
  background: var(--white);
  padding: clamp(22px, 3vw, 36px);
  border-radius: var(--radius);
  border: 1px solid var(--steel-300);
  display: grid;
  gap: 18px;
  align-content: start;
  position: relative;
}
.form-row { display: grid; gap: 8px; position: relative; }
.form-row label {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--steel-500);
}
.form-row .req { color: var(--pekon-red); }
.form-row .form-opt { letter-spacing: 0.08em; color: var(--steel-500); font-weight: 500; text-transform: none; font-size: 0.7rem; }
.form-row input,
.form-row textarea {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  padding: 12px 14px;
  border: 1px solid var(--steel-300);
  border-radius: 8px;
  outline: none;
  width: 100%;
  min-height: 48px;
}
.form-row textarea { resize: vertical; min-height: 132px; line-height: 1.5; }
.form-row input:focus,
.form-row textarea:focus { border-color: var(--pekon-blue); box-shadow: 0 0 0 3px rgba(16,39,133,.16); }
.form-row.is-invalid input,
.form-row.is-invalid textarea { border-color: var(--pekon-red); box-shadow: 0 0 0 3px rgba(210,17,10,.12); }
.form-error { display: none; font-size: 0.8rem; color: var(--pekon-red); margin-top: 2px; }
.form-row.is-invalid .form-error { display: block; }
.form-honey { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; pointer-events: none; }
.form-submit { justify-self: start; min-width: 200px; margin-top: 6px; }
.form-submit[disabled] { opacity: 0.65; cursor: progress; }
.form-status { font-size: 0.9rem; color: var(--steel-500); min-height: 1.4em; }
.form-status.is-success { color: var(--pekon-blue); font-weight: 600; }
.form-status.is-error { color: var(--pekon-red); font-weight: 600; }

/* ---------- Hvala / 404 --------------------------------------------- */
.hvala-details { display: grid; gap: 12px; margin: 28px 0 0; max-width: 60ch; }
.hvala-details li {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px 14px;
  font-size: 1.02rem; color: var(--ink-700);
  padding-bottom: 12px; border-bottom: 1px solid var(--steel-100);
}
.hvala-details .mono { color: var(--steel-500); min-width: 92px; font-size: 0.72rem; }
.hvala-details a { color: var(--pekon-blue); font-weight: 600; }
.hvala-details a:hover { color: var(--pekon-red); }
.hvala-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

/* ---------- Footer -------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.7); padding-top: clamp(52px, 7vw, 84px); }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 5vw, 52px);
  padding-bottom: clamp(44px, 6vw, 68px);
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1.1fr 1.3fr 1fr; } }
.logo-chip { display: inline-block; background: var(--white); padding: 8px 14px; border-radius: 8px; margin-bottom: 18px; }
.logo-chip img { height: 32px; width: auto; display: block; }
.footer-blurb { font-size: 0.95rem; line-height: 1.6; max-width: 38ch; }
.footer-h {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 18px;
}
.footer-col ul { display: grid; gap: 10px; }
.footer-col li { font-size: 0.95rem; }
.footer-col a { color: rgba(255,255,255,.82); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-block: 24px 28px;
  font-size: 0.85rem;
  color: rgba(255,255,255,.55);
}
.footer-credit a { color: rgba(255,255,255,.8); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 1px; }
.footer-credit a:hover { color: var(--white); border-color: var(--white); }

/* ---------- Floating utilities -------------------------------------- */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 44px; height: 44px;
  background: var(--ink);
  color: var(--white);
  border-radius: 999px;
  display: none;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 24px -10px rgba(14,17,22,.4);
  z-index: 30;
}
.back-to-top.is-visible { display: inline-flex; }
.back-to-top:hover { background: var(--ink-700); }
.back-to-top svg { width: 20px; height: 20px; }

.floating-contact {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 56px; height: 56px;
  background: var(--pozovi-green);
  color: var(--white);
  border-radius: 999px;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 28px -10px rgba(27,138,63,.55), 0 2px 6px rgba(0,0,0,.08);
  z-index: 30;
}
.floating-contact:hover { background: var(--pozovi-green-hover); }
.floating-contact svg { width: 22px; height: 22px; }

/* ---------- Mobile sticky call bar ---------------------------------- */
.m-call-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 35;
  display: none;
  gap: 10px;
  padding: 10px 12px calc(10px + env(safe-area-inset-bottom, 0px));
  background: var(--white);
  border-top: 1px solid var(--steel-300);
  box-shadow: 0 -12px 28px -18px rgba(14,17,22,.22);
}
.m-call-btn { flex: 1; min-height: 48px; padding: 12px 14px; font-size: 0.95rem; white-space: nowrap; }
@media (max-width: 768px) {
  .m-call-bar { display: flex; }
  body { padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px)); }
  .floating-contact { display: none; }
  .back-to-top { bottom: calc(82px + env(safe-area-inset-bottom, 0px)); }
}

/* ---------- Lightbox (no fade) -------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(14,17,22,.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: clamp(48px, 6vw, 80px) clamp(16px, 4vw, 56px) clamp(60px, 8vw, 100px);
}
.lightbox[hidden] { display: none; }
.lb-backdrop { position: absolute; inset: 0; cursor: zoom-out; }
.lb-close, .lb-prev, .lb-next {
  position: absolute;
  z-index: 3;
  width: 48px; height: 48px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.18); border-color: rgba(255,255,255,.45); }
.lb-close { top: clamp(14px, 2vw, 24px); right: clamp(14px, 2vw, 24px); font-size: 26px; line-height: 1; padding: 0; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); font-size: 28px; line-height: 1; }
.lb-prev { left: clamp(12px, 2vw, 28px); }
.lb-next { right: clamp(12px, 2vw, 28px); }
@media (max-width: 600px) {
  .lb-prev, .lb-next { top: auto; bottom: clamp(60px, 10vh, 80px); transform: none; }
  .lb-prev { left: 18px; }
  .lb-next { right: 18px; }
}
.lb-stage { position: relative; z-index: 2; width: 100%; max-width: 1200px; display: grid; place-items: center; }
.lb-figure { margin: 0; display: grid; gap: 16px; max-width: 100%; justify-items: center; }
.lb-img {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 220px);
  max-height: calc(100svh - 220px);
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--ink-700);
}
.lb-count {
  position: absolute;
  bottom: clamp(18px, 3vw, 30px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.65);
}
body.lb-open { overflow: hidden; }

/* ---------- Body lock for mobile menu ------------------------------- */
body.menu-open { overflow: hidden; }

/* ===== ITER12 — home hero + intro two-column ===== */
.home-hero {
  position: relative;
  min-height: 520px;
  height: 100vh;
  height: 100svh;            /* svh: mobile toolbar never clips the buttons */
  margin-top: calc(-1 * var(--header-h));  /* underlap the static header → true full viewport, no page overflow */
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink);
  color: var(--white);
  padding-bottom: 54px;            /* room for the bottom strip */
}
.home-hero-bg { position: absolute; inset: 0; z-index: -2; }
.home-hero-bg img, .home-hero-bg picture { width: 100%; height: 100%; display: block; }
.home-hero-bg img { object-fit: cover; object-position: center; }
.home-hero-overlay {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(14,17,22,.82) 0%, rgba(14,17,22,.55) 45%, rgba(14,17,22,.15) 100%),
    linear-gradient(0deg, rgba(14,17,22,.45) 0%, rgba(14,17,22,0) 32%);
}
.home-hero > .container { width: 100%; padding-top: var(--header-h); }  /* keep content clear of the header */
.home-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 640px;
}
.home-hero-rule { display: block; width: 48px; height: 3px; background: var(--pekon-red); }
.home-hero .kicker { color: rgba(255,255,255,.72); }
.home-hero-title {
  font-family: 'Archivo', sans-serif;
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 1.02;
  font-size: clamp(2.3rem, 5.2vw, 3.9rem);
  color: var(--white);
  max-width: 18ch;
  text-wrap: balance;
  margin: 0;
}
.home-hero-lead {
  font-size: clamp(1.02rem, 1.4vw, 1.2rem);
  line-height: 1.55;
  color: rgba(255,255,255,.86);
  max-width: 52ch;
  margin: 2px 0 0;
}
.home-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 8px; }
.home-hero-strip {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 1;
  border-top: 1px solid rgba(255,255,255,.18);
}
.home-hero-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding-block: 15px;
}
.home-hero-strip .mono { color: rgba(255,255,255,.72); font-size: 0.72rem; }
.home-hero-strip a.mono { color: rgba(255,255,255,.88); }
.home-hero-strip a.mono:hover, .home-hero-strip a.mono:focus-visible { color: var(--white); }
@media (max-width: 767px) {
  .home-hero {
    height: 100vh;
    height: 100svh;
    align-items: flex-end;
    padding-bottom: 96px;
  }
  .home-hero-overlay {
    background: linear-gradient(0deg, rgba(14,17,22,.88) 0%, rgba(14,17,22,.5) 45%, rgba(14,17,22,.18) 100%);
  }
  .home-hero-title { font-size: clamp(2rem, 8.5vw, 2.7rem); max-width: 100%; }
  .home-hero-actions { width: 100%; }
  .home-hero-actions .btn { width: 100%; }
  .home-hero-strip { display: none; }
}

/* Intro two-column: docx text left, portrait image right */
.intro-2col {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 48px);
  align-items: start;
}
@media (min-width: 768px)  { .intro-2col { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .intro-2col { grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px, 5vw, 72px); } }
.intro-text { max-width: 62ch; }   /* left edge flush with the container (== hero content left edge) */
.intro-text .prose { max-width: none; }
.intro-text .prose-p { line-height: 1.7; }
.intro-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--steel-300);
}
.intro-figure img, .intro-figure picture { display: block; width: 100%; height: 100%; }
.intro-figure img { object-fit: cover; aspect-ratio: 4 / 5; }
@media (min-width: 768px) and (max-width: 1023px) { .intro-figure img { aspect-ratio: 1 / 1; } }

