/* ============================================================
   ROBAUM — WOW redesign · glavni slog
   Koncept: "Od izkopa do urejenega dvorišča" — industrijski
   prerez terena kot pripovedno vodilo.
   Paleta: asfalt/grafit + betonsko-peščeni nevtralci + jantar
   (primarni CTA) + globoka smreka (terminalni zelenični poudarek).
   Tipografija: Lora (naslovi) + Inter (telo), self-hosted.
   Brez zunanjih knjižnic. Vse animacije spoštujejo prefers-reduced-motion.
   ============================================================ */

/* ---------- Pisave (latin + latin-ext za č/š/ž/đ/ü/ö/ä) ---------- */
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter'; font-style: normal; font-weight: 100 900; font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../fonts/lora-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Lora'; font-style: normal; font-weight: 400 700; font-display: swap;
  src: url('../fonts/lora-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02AF, U+0300-0301, U+0303-0304, U+0308-0309, U+0323, U+0329, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ---------- Žetoni ---------- */
:root {
  /* Temne površine (asfalt → grafit) */
  --asphalt: #0E0F11;
  --graphite: #17191D;
  --graphite-2: #1F2228;
  --graphite-3: #2A2E35;
  /* Svetle površine (pesek → beton) */
  --sand: #F4F1EA;
  --concrete: #E7E3DB;
  --concrete-2: #DED9CF;
  --white: #FFFFFF;
  /* Poudarki */
  --amber: #E3A33A;          /* primarni akcent — gumbi, oznake na temnem */
  --amber-ink: #7A4E12;      /* akcent/povezave na svetlem — ~8:1 na pesku */
  --amber-soft: rgba(227, 163, 58, .14);
  --spruce: #2C5A43;         /* terminalni zelenični poudarek (redko) */
  --spruce-soft: rgba(44, 90, 67, .10);
  --rust: #B3402E;           /* napake */
  /* Besedilo */
  --ink: #191B1F;
  --text: #23262B;
  --muted: #565A61;          /* ~5,3:1 na pesku */
  --text-invert: #F4F1EA;
  --muted-invert: #B6BAC1;   /* ~6:1 na grafitu */
  /* Črte */
  --line: rgba(20, 22, 26, .12);
  --line-strong: rgba(20, 22, 26, .24);
  --line-field: #787C83;     /* obrobe polj — WCAG 1.4.11 ~3:1 */
  --line-dark: rgba(255, 255, 255, .14);
  /* Oblika */
  --radius: 18px;
  --radius-sm: 11px;
  --radius-chip: 13px;
  --shadow-card: 0 8px 30px rgba(14, 16, 18, .09);
  --shadow-lift: 0 18px 44px rgba(14, 16, 18, .26);
  --shadow-deep: 0 30px 70px rgba(14, 16, 18, .32);
  --wrap: 1280px;
  --header-h: 110px;         /* utility-bar 38 + topbar 72 */
  --font-head: 'Lora', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);

  /* Prostorska lestvica (4px mreža) */
  --sp-1: 4px; --sp-2: 8px; --sp-3: 12px; --sp-4: 16px; --sp-5: 24px;
  --sp-6: 32px; --sp-7: 44px; --sp-8: 64px; --sp-9: 96px; --sp-10: 128px;

  /* Tipografska lestvica */
  --fs-micro: 12px;
  --fs-label: 13px;
  --fs-xs: 14px;
  --fs-sm: 15px;
  --fs-base: 16.5px;
  --fs-md: 18px;
  --fs-lead: clamp(17px, 1.9vw, 20px);
  --fs-lg: 20px;
  --fs-xl: clamp(22px, 2.4vw, 27px);
  --fs-display: clamp(40px, 7vw, 88px);   /* hero H1 */
  --fs-brand: 23px;
}

/* ---------- Osnova ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 12px); }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--text);
  background: var(--sand);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { text-decoration-thickness: 2px; }
:focus-visible { outline: 2px solid var(--amber-ink); outline-offset: 2px; border-radius: 2px; }
/* Na temnih podlagah jantar (na grafitu ~6,3:1) drži fokusni obroč viden. */
.site-header :focus-visible, .hero :focus-visible, .page-hero :focus-visible,
.cta-band :focus-visible, .terrain :focus-visible, .contact-map-box :focus-visible,
.footer :focus-visible, .section-dark :focus-visible, .section-asphalt :focus-visible { outline-color: var(--amber); }
::selection { background: var(--amber); color: var(--asphalt); }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 .5em;
  text-wrap: balance;
  letter-spacing: -.012em;
}
h1 { font-size: clamp(34px, 5vw, 58px); }
h2 { font-size: clamp(28px, 3.8vw, 44px); }
h3 { font-size: clamp(20px, 2.4vw, 26px); }
h4 { font-size: var(--fs-md); }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; margin: 0 0 1em; }
li { margin-bottom: .4em; }
strong { font-weight: 680; color: var(--ink); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ---------- Postavitev ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 var(--sp-5); }
.wrap-narrow { max-width: 820px; margin: 0 auto; padding: 0 var(--sp-5); }
.section { padding: var(--sp-9) 0; position: relative; }
.section-tight { padding: var(--sp-8) 0; }
.page-hero + .section { padding-top: var(--sp-8); }
main > .section:last-child { padding-bottom: var(--sp-8); }
.section-concrete { background: var(--concrete); }
.section-dark { background: var(--graphite); color: var(--text-invert); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--text-invert); }
.section-dark p { color: var(--muted-invert); }
.section-asphalt { background: var(--asphalt); color: var(--text-invert); }
.section-asphalt h2, .section-asphalt h3 { color: #fff; }
.section-asphalt p { color: var(--muted-invert); }
section[id], div[id], h2[id] { scroll-margin-top: calc(var(--header-h) + 16px); }

/* Združljivost s podstranskimi predlogami (prejšnja imena razredov) */
.section-sage { background: var(--concrete); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--sp-5); }
.svc-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; }
.section-dark .svc-card { background: var(--graphite-2); border-color: var(--line-dark); }

/* Kicker / eyebrow z vodilno črto */
.kicker, .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: var(--fs-label);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--amber-ink);
  margin-bottom: var(--sp-3);
}
.kicker::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--amber);
  flex: 0 0 auto;
}
.section-dark .kicker, .section-asphalt .kicker, .hero .kicker, .page-hero .eyebrow { color: var(--amber); }
.section-head { margin-bottom: var(--sp-7); max-width: 780px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .kicker { justify-content: center; }
.section-lead { color: var(--muted); font-size: var(--fs-lead); }
.section-dark .section-lead, .section-asphalt .section-lead { color: var(--muted-invert); }

/* ---------- Pomožno ---------- */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 12px; z-index: 300;
  background: var(--asphalt); color: #fff; padding: 10px 18px;
  border-radius: 999px; text-decoration: none; font-weight: 650;
}
.skip-link:focus { left: 12px; }

/* ---------- Gumbi ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 30px; border-radius: 999px;
  font-family: var(--font-body); font-size: var(--fs-base); font-weight: 650;
  line-height: 1.2; text-decoration: none; cursor: pointer;
  border: 2px solid transparent;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease), background .18s ease, color .18s ease, border-color .18s ease;
  will-change: transform;
}
.btn svg { flex: 0 0 auto; }
.btn-solid { background: var(--amber); color: var(--asphalt); border-color: var(--amber); }
.btn-solid:hover, .btn-solid:focus-visible { transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-ghost-light { background: transparent; color: var(--text-invert); border-color: rgba(255, 255, 255, .5); }
.btn-ghost-light:hover, .btn-ghost-light:focus-visible { background: #fff; color: var(--asphalt); border-color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-ghost-dark { background: transparent; color: var(--amber-ink); border-color: var(--line-strong); }
.btn-ghost-dark:hover, .btn-ghost-dark:focus-visible { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-3px); box-shadow: var(--shadow-lift); }
.btn-sm { padding: 11px 22px; font-size: var(--fs-sm); }
.btn-lg { padding: 17px 36px; font-size: var(--fs-md); }

/* ---------- Glava (prekrivna, transparentna nad herojem) ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  transition: background .3s ease, box-shadow .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
/* Scrim za berljivost bele navigacije nad svetlejšim vrhom fotografije */
.site-header::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: linear-gradient(180deg, rgba(14, 16, 18, .72) 0%, rgba(14, 16, 18, .48) 58%, rgba(14, 16, 18, 0) 100%);
  opacity: 1; transition: opacity .3s ease;
}
.site-header.is-solid {
  background: rgba(19, 21, 25, .92);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  backdrop-filter: blur(14px) saturate(1.3);
  border-bottom-color: rgba(255, 255, 255, .08);
  box-shadow: 0 10px 30px rgba(14, 16, 18, .28);
}
.site-header.is-solid::before { opacity: 0; }

.utility-bar { font-size: var(--fs-label); color: var(--muted-invert); transition: background .3s ease; }
.site-header.is-solid .utility-bar { background: var(--asphalt); border-bottom: 1px solid rgba(255, 255, 255, .06); }
.utility-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 38px; }
.utility-contact { display: flex; align-items: center; gap: 20px; margin: 0; }
.utility-contact a { display: inline-flex; align-items: center; gap: 7px; color: var(--muted-invert); text-decoration: none; padding: 4px 0; white-space: nowrap; }
.utility-contact a:hover { color: #fff; text-decoration: underline; }
.utility-contact svg { flex: 0 0 auto; opacity: .8; color: var(--amber); }
/* Zgornja vrstica na telefonu: e-pošta skrita, telefon v eni vrstici, brez podnaslova znamke */
@media (max-width: 600px) {
  .utility-contact .u-mail { display: none; }
  .utility-contact { gap: 0; }
  .brand-name .brand-sub { display: none; }
}

.utility-bar .lang-switch { border: 0; padding: 0; gap: 0; }
.utility-bar .lang-switch a { padding: 4px 10px; border-radius: 0; font-size: var(--fs-label); font-weight: 650; }
.utility-bar .lang-switch a + a { border-left: 1px solid rgba(255, 255, 255, .2); }
.utility-bar .lang-switch a:hover { color: #fff; }
.utility-bar .lang-switch a[aria-current] {
  background: none; color: #fff; text-decoration: underline;
  text-decoration-color: var(--amber); text-decoration-thickness: 2px; text-underline-offset: 4px;
}

.topbar-inner { display: flex; align-items: center; gap: 28px; min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 42px; height: 42px; flex: 0 0 auto; filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .25)); }
.brand-name { font-family: var(--font-head); font-weight: 640; font-size: var(--fs-brand); letter-spacing: .04em; color: var(--text-invert); }
.brand-sub {
  display: block; font-family: var(--font-body); font-size: var(--fs-micro); font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--muted-invert); margin-top: -1px;
}

.nav { display: flex; align-items: center; gap: 4px; }
.nav > a, .nav-group > a {
  position: relative; display: inline-block; padding: 10px 13px;
  color: var(--text-invert); text-decoration: none; font-weight: 550; font-size: var(--fs-sm); border-radius: 8px;
}
.nav a::after {
  content: ''; position: absolute; left: 13px; right: 13px; bottom: 5px; height: 2px;
  background: var(--amber); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .22s var(--ease);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a.active { color: #fff; }

.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav-sub-toggle {
  display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px;
  margin-left: -6px; padding: 0; border: 0; background: none; color: var(--muted-invert);
  cursor: pointer; border-radius: 6px; transition: transform .18s ease, color .18s ease;
}
.nav-sub-toggle:hover { color: var(--text-invert); }
.nav-group:hover .nav-sub-toggle, .nav-sub-toggle[aria-expanded="true"] { transform: rotate(180deg); color: var(--text-invert); }

.nav-sub {
  position: absolute; top: 100%; left: 0; z-index: 130; min-width: 300px;
  margin: 8px 0 0; padding: 10px; list-style: none;
  background: rgba(16, 18, 22, .98);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border: 1px solid var(--line-dark); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-deep);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.nav-group:hover .nav-sub, .nav-group:focus-within .nav-sub, .nav-sub-toggle[aria-expanded="true"] + .nav-sub {
  opacity: 1; visibility: visible; transform: none;
}
.nav-sub li { margin: 0; }
.nav-sub a { display: flex; align-items: center; gap: 11px; padding: 10px 12px; border-radius: 7px; font-size: var(--fs-xs); font-weight: 500; white-space: nowrap; color: var(--text-invert); }
.nav-sub a::before { content: ""; flex: 0 0 auto; width: 6px; height: 6px; border-radius: 50%; background: var(--amber); }
.nav-sub a::after { display: none; }
.nav-sub a:hover { background: rgba(255, 255, 255, .08); color: #fff; }

.site-header .btn-cta { margin-left: 4px; }

.lang-switch { display: flex; align-items: center; gap: 2px; padding: 4px; border: 1px solid rgba(255, 255, 255, .22); border-radius: 999px; }
.lang-switch a { display: inline-block; padding: 5px 10px; border-radius: 999px; color: var(--muted-invert); text-decoration: none; font-size: var(--fs-label); font-weight: 700; letter-spacing: .04em; }
.lang-switch a:hover { color: #fff; }
.lang-switch a[aria-current] { background: var(--amber); color: var(--asphalt); }

.nav-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 12px; background: rgba(14, 16, 18, .3); cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; display: block; width: 20px; height: 2px; background: var(--text-invert);
  border-radius: 2px; position: relative; transition: transform .22s ease, opacity .22s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1080px) {
  .nav-toggle { display: inline-flex; }
  .site-header .btn-cta { display: none; }
  .nav {
    display: none; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column;
    align-items: stretch; gap: 2px; background: var(--graphite);
    border-bottom: 1px solid rgba(255, 255, 255, .1); padding: 12px 20px 20px;
    box-shadow: 0 24px 40px rgba(0, 0, 0, .35);
  }
  .nav.open { display: flex; }
  .nav-group { display: grid; grid-template-columns: 1fr auto; align-items: center; }
  .nav-sub-toggle { display: inline-flex; width: 44px; height: 44px; }
  .nav-sub {
    grid-column: 1 / -1; display: none; position: static; opacity: 1; visibility: visible;
    transform: none; min-width: 0; margin: 2px 0 6px; padding: 0 0 0 14px; background: none;
    border: 0; border-left: 1px solid var(--line-dark); border-radius: 0; box-shadow: none; transition: none;
  }
  .nav-sub-toggle[aria-expanded="true"] + .nav-sub { display: block; }
  .nav-sub a { white-space: normal; padding: 10px 12px; }
  .nav > a, .nav-group > a { padding: 13px 12px; font-size: 17px; }
  .nav a::after { display: none; }
  .nav a.active { background: rgba(255, 255, 255, .08); }
  .nav .nav-extra { display: flex; align-items: center; margin-top: 14px; padding-top: 16px; border-top: 1px solid rgba(255, 255, 255, .12); }
  .nav .nav-extra .btn-cta { display: inline-flex; flex: 1 1 100%; justify-content: center; }
}
@media (min-width: 1081px) { .nav .nav-extra { display: contents; } }

/* ---------- Immersive hero ---------- */
.hero {
  position: relative; background: var(--asphalt); color: var(--text-invert);
  min-height: 100svh; display: flex; align-items: center; overflow: hidden;
  padding-top: var(--header-h);
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media picture { display: block; width: 100%; height: 100%; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(14, 16, 18, .92) 0%, rgba(14, 16, 18, .82) 42%, rgba(14, 16, 18, .40) 70%, rgba(14, 16, 18, .10) 100%),
    linear-gradient(0deg, rgba(14, 16, 18, .75) 0%, rgba(14, 16, 18, 0) 34%);
}
/* Tanek jantarni "gradbeni trak" na dnu heroja */
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 5px; z-index: 2;
  background: repeating-linear-gradient(135deg, var(--amber) 0 26px, var(--asphalt) 26px 46px);
  opacity: .9;
}
.hero > .wrap { width: 100%; }
.hero-inner { position: relative; z-index: 1; padding: clamp(40px, 8vw, 90px) 0; }
.hero h1 { color: #fff; font-size: var(--fs-display); line-height: 1.02; margin-bottom: 22px; letter-spacing: -.02em; }
.hero h1 .amber { color: var(--amber); font-style: italic; }
.hero .lead { font-size: clamp(17px, 2vw, 21px); color: rgba(244, 241, 234, .92); max-width: 660px; margin-bottom: 32px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.hero-scroll {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 2;
  display: inline-flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--muted-invert); font-size: var(--fs-micro); letter-spacing: .16em; text-transform: uppercase; text-decoration: none;
}
.hero-scroll svg { animation: bob 1.8s var(--ease) infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px 40px; margin-top: 38px; padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, .14); list-style: none;
}
.hero-stats li { margin: 0; }
.hero-stats .n { display: block; font-family: var(--font-head); font-size: clamp(26px, 3.4vw, 38px); font-weight: 640; color: #fff; line-height: 1; }
.hero-stats .l { display: block; font-size: var(--fs-xs); color: var(--muted-invert); margin-top: 6px; }

@media (max-width: 767px) {
  .hero { min-height: 78svh; }
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(14, 16, 18, .35) 0%, rgba(14, 16, 18, .30) 30%, rgba(14, 16, 18, .72) 62%, rgba(14, 16, 18, .95) 100%);
  }
  .hero-inner { padding-top: 30px; padding-bottom: 42px; }
  .hero .kicker { margin-bottom: 18px; }
  .hero h1 { line-height: 1.12; margin-bottom: 22px; }
  .hero .lead { line-height: 1.6; margin-bottom: 30px; }
  /* Stat vrstica je na telefonu skrita — hero ostane kompakten (gumb ni odrezan);
     isti dokazi so nižje v sklopu »Zakaj ROBAUM«. */
  .hero-stats { display: none; }
  .hero-scroll { display: none; }
}

/* Telefon: bolj strnjen hero - odstavek skrit (ostane v DOM za SEO), naslov manjsi */
@media (max-width: 600px) {
  .hero .lead { display: none; }
  .hero h1 { font-size: clamp(30px, 8vw, 36px); margin-bottom: 26px; }
}

/* Podstranski hero (naslovna pasica) */
.page-hero {
  background: var(--graphite); color: var(--text-invert); position: relative; overflow: hidden;
  padding: calc(var(--header-h) + clamp(30px, 5vw, 56px)) 0 clamp(40px, 5vw, 60px);
}
.page-hero::before {
  content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none; opacity: .5;
  background-image: linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: linear-gradient(90deg, #000, transparent 70%);
  mask-image: linear-gradient(90deg, #000, transparent 70%);
}
.page-hero::after {
  content: ''; position: absolute; right: -120px; top: -160px; width: 380px; height: 380px; z-index: 0;
  border-radius: 50%; background: radial-gradient(circle, rgba(227, 163, 58, .5), transparent 70%); pointer-events: none;
}
.page-hero .wrap { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; margin-bottom: 10px; }
.page-hero .lead { color: var(--muted-invert); font-size: clamp(16.5px, 1.8vw, 19px); margin: 0; max-width: 720px; }
.hero a, .page-hero .lead a { color: #fff; }

/* Per-storitveni vodni žig v pasici (jezikovno nevtralen — motiv na storitev) */
.page-hero.svc-izkop, .page-hero.svc-tlak, .page-hero.svc-asfalt,
.page-hero.svc-zelenice, .page-hero.svc-obrez, .page-hero.svc-zasad, .page-hero.svc-okolica {
  background-repeat: no-repeat;
  background-position: right -20px bottom -28px;
  background-size: clamp(190px, 26vw, 320px);
}
.page-hero.svc-izkop  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 12h6a3 3 0 0 0 3-3V6'/%3E%3Cpath d='M12 6h6a3 3 0 0 1 3 3v9'/%3E%3Ccircle cx='3' cy='12' r='1.6'/%3E%3Ccircle cx='21' cy='18' r='1.6'/%3E%3C/svg%3E"); }
.page-hero.svc-tlak   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='3' width='8' height='8' rx='1'/%3E%3Crect x='13' y='3' width='8' height='8' rx='1'/%3E%3Crect x='3' y='13' width='8' height='8' rx='1'/%3E%3Crect x='13' y='13' width='8' height='8' rx='1'/%3E%3C/svg%3E"); }
.page-hero.svc-asfalt { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 21 L9 3'/%3E%3Cpath d='M18 21 L15 3'/%3E%3Cpath d='M12 4v3'/%3E%3Cpath d='M12 11v3'/%3E%3Cpath d='M12 18v3'/%3E%3C/svg%3E"); }
.page-hero.svc-zelenice { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 20h16'/%3E%3Cpath d='M8 20c-.5-4 0-7 2-9'/%3E%3Cpath d='M12 20c-1-5-1-8 0-11'/%3E%3Cpath d='M16 20c.5-4 0-7-2-9'/%3E%3C/svg%3E"); }
.page-hero.svc-obrez  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='6' cy='6' r='3'/%3E%3Ccircle cx='6' cy='18' r='3'/%3E%3Cline x1='20' y1='4' x2='8.12' y2='15.88'/%3E%3Cline x1='14.47' y1='14.48' x2='20' y2='20'/%3E%3Cline x1='8.12' y1='8.12' x2='12' y2='12'/%3E%3C/svg%3E"); }
.page-hero.svc-zasad  { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 22v-8'/%3E%3Cpath d='M12 14C9 14 7 12 7 9c3 0 5 2 5 5Z'/%3E%3Cpath d='M12 12c0-3 2-5 5-5 0 3-2 5-5 5Z'/%3E%3Cpath d='M8 22h8'/%3E%3C/svg%3E"); }
.page-hero.svc-okolica { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-opacity='0.09' stroke-width='1.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2 2 7l10 5 10-5-10-5Z'/%3E%3Cpath d='M2 17l10 5 10-5'/%3E%3Cpath d='M2 12l10 5 10-5'/%3E%3C/svg%3E"); }
@media (max-width: 640px) { .page-hero[class*="svc-"] { background-image: none; } }

/* Drobtinice */
.breadcrumbs { position: relative; z-index: 1; font-size: var(--fs-label); margin-bottom: 18px; }
.breadcrumbs ol { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.breadcrumbs li { display: inline-flex; align-items: center; gap: 6px; margin: 0; color: var(--muted-invert); }
.breadcrumbs li + li::before { content: ''; width: 1px; height: 11px; background: rgba(255, 255, 255, .28); transform: skewX(-12deg); }
.breadcrumbs a { color: var(--muted-invert); text-decoration: none; }
.breadcrumbs a:hover { color: #fff; text-decoration: underline; }
.breadcrumbs [aria-current] { color: #fff; }

/* ---------- Trakovi zaupanja (proof strip) ---------- */
.proof {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
}
.proof-item { background: var(--sand); padding: 26px 24px; }
.section-concrete .proof-item { background: var(--concrete); }
.proof-item .n { display: block; font-family: var(--font-head); font-size: clamp(28px, 3.4vw, 40px); font-weight: 640; color: var(--ink); line-height: 1; }
.proof-item .n span { color: var(--amber-ink); }
.proof-item .l { display: block; margin-top: 8px; color: var(--muted); font-size: var(--fs-sm); }

/* ---------- Galerija referenc (okvirji za dejanske fotografije) ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: var(--sp-5); }
.gallery-item { margin: 0; }
.gallery-ph { display: block; position: relative; aspect-ratio: 4 / 3; border-radius: var(--radius); border: 1px solid var(--line); overflow: hidden; box-shadow: var(--shadow-card); }
.gallery-ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s var(--ease); }
.gallery-ph:hover img, .gallery-ph:focus-visible img { transform: scale(1.05); }
.gallery-item figcaption { margin-top: 14px; font-family: var(--font-head); font-weight: 640; font-size: var(--fs-md); }
.gallery-item figcaption a { color: var(--ink); text-decoration: none; }
.gallery-item figcaption a:hover { color: var(--amber-ink); text-decoration: underline; }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Slikovni pas (nadomešča prejšnji animirani prerez) ---------- */
.image-band { position: relative; border-radius: var(--radius); overflow: hidden; min-height: clamp(320px, 42vw, 460px); display: flex; align-items: center; box-shadow: var(--shadow-card); }
.image-band > picture { position: absolute; inset: 0; }
.image-band img { width: 100%; height: 100%; object-fit: cover; }
.image-band::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(14, 16, 18, .92) 0%, rgba(14, 16, 18, .78) 42%, rgba(14, 16, 18, .32) 78%, rgba(14, 16, 18, .1) 100%); }
.image-band-inner { position: relative; z-index: 1; padding: clamp(28px, 5vw, 60px); max-width: 640px; color: var(--text-invert); }
.image-band-inner .kicker { color: var(--amber); }
.image-band-inner h2 { color: #fff; }
.image-band-inner p { color: rgba(244, 241, 234, .9); margin-bottom: 24px; }
@media (max-width: 620px) { .image-band::after { background: linear-gradient(180deg, rgba(14, 16, 18, .45) 0%, rgba(14, 16, 18, .74) 55%, rgba(14, 16, 18, .92) 100%); } }

/* ---------- Povezava "Več o …" ---------- */
.svc-link { display: inline-flex; align-items: center; gap: 8px; font-weight: 650; color: var(--amber-ink); text-decoration: none; margin-top: 6px; }
.svc-link::after { content: '→'; transition: transform .18s ease; }
.svc-link:hover::after { transform: translateX(4px); }
.svc-link:hover { text-decoration: underline; }
.section-dark .svc-link, .section-asphalt .svc-link { color: var(--amber); }

/* ---------- Storitve: velike vrstice (index) ---------- */
.svc-index { border-top: 1px solid var(--line-strong); margin-top: var(--sp-6); }
.svc-row {
  display: grid; grid-template-columns: 84px 1fr auto; align-items: center; gap: 24px;
  padding: 28px 8px; border-bottom: 1px solid var(--line-strong);
  text-decoration: none; color: inherit; position: relative; transition: background .25s ease, padding .25s ease;
}
.svc-row:hover, .svc-row:focus-visible { background: var(--concrete); padding-left: 20px; padding-right: 20px; }
.section-dark .svc-row { border-color: rgba(255, 255, 255, .12); }
.section-dark .svc-row:hover { background: var(--graphite-2); }
.svc-row .svc-no { font-family: var(--font-head); font-size: 22px; font-weight: 600; color: var(--amber-ink); }
.section-dark .svc-row .svc-no { color: var(--amber); }
.svc-row .svc-main h3 { margin: 0 0 4px; font-size: clamp(20px, 2.6vw, 30px); }
.svc-row .svc-main p { margin: 0; color: var(--muted); font-size: var(--fs-sm); }
.section-dark .svc-row .svc-main p { color: var(--muted-invert); }
.svc-row .svc-go {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--line-strong);
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
  flex: 0 0 auto; transition: transform .25s var(--ease), background .25s ease, color .25s ease, border-color .25s ease;
}
.section-dark .svc-row .svc-go { color: #fff; border-color: rgba(255, 255, 255, .3); }
.svc-row:hover .svc-go { background: var(--amber); border-color: var(--amber); color: var(--asphalt); transform: translateX(4px); }
.svc-tag {
  display: inline-block; font-size: var(--fs-micro); font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); border: 1px solid var(--line-strong); border-radius: 999px; padding: 3px 10px; margin-left: 12px; vertical-align: middle;
}
.svc-tag.is-core { color: var(--amber-ink); border-color: var(--amber-ink); }
.svc-tag.is-green { color: var(--spruce); border-color: var(--spruce); }

/* ---------- Kartice (USP / prednosti) ---------- */
.usp-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: var(--sp-5); }
.usp-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s ease; }
.usp-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.usp-card .svc-bullets { margin-bottom: 16px; }
.usp-card .svc-link { margin-top: auto; align-self: flex-start; }
.section-dark .usp-card { background: var(--graphite-2); border-color: var(--line-dark); }
.section-dark .usp-card:hover { box-shadow: var(--shadow-deep); }
.usp-icon { width: 50px; height: 50px; border-radius: var(--radius-chip); background: var(--amber-soft); color: var(--amber-ink); display: flex; align-items: center; justify-content: center; margin-bottom: var(--sp-4); }
.section-dark .usp-icon { background: rgba(227, 163, 58, .16); color: var(--amber); }
.usp-card h3 { font-size: var(--fs-md); font-family: var(--font-head); font-weight: 640; line-height: 1.3; margin-bottom: 6px; }
.section-dark .usp-card h3 { color: var(--text-invert); }
.usp-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.section-dark .usp-card p { color: var(--muted-invert); }
.svc-bullets { list-style: none; padding: 0; margin: 0; font-size: var(--fs-sm); }
.svc-bullets li { position: relative; padding-left: 18px; margin-bottom: 7px; color: var(--muted); }
.svc-bullets li:last-child { margin-bottom: 0; }
.svc-bullets li::before { content: ''; position: absolute; left: 2px; top: .5em; width: 6px; height: 6px; border-radius: 50%; background: var(--amber-ink); }
.section-dark .svc-bullets li { color: var(--muted-invert); }
.section-dark .svc-bullets li::before { background: var(--amber); }

/* ---------- Signature: prerez terena (klik + samodejni stepper) ---------- */
.terrain { background: var(--asphalt); color: var(--text-invert); position: relative; }
.terrain-sticky { padding: var(--sp-9) 0; }
.terrain-head { margin: 0 auto clamp(18px, 3vw, 30px); padding: 0 var(--sp-5); max-width: 1180px; width: 100%; }
.terrain-head h2 { color: #fff; }
.terrain-stage { position: relative; width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 var(--sp-5); }
.terrain-svg { width: 100%; height: auto; display: block; margin: 0 auto; border-radius: var(--radius); overflow: hidden; background: linear-gradient(180deg, #10131A, #0B0D10); box-shadow: var(--shadow-deep); }
/* Faze: brez JS so vse vidne (dokončan prerez). Ko JS vklopi stepper, se prikazujejo po korakih. */
.terrain-phase { transition: opacity .55s var(--ease); }
.terrain.is-interactive .terrain-phase { opacity: 0; }
.terrain.is-interactive .terrain-phase.on { opacity: 1; }
.terrain-progress { position: absolute; left: var(--sp-5); right: var(--sp-5); bottom: 14px; height: 4px; background: rgba(255, 255, 255, .16); border-radius: 4px; overflow: hidden; }
.terrain-progress i { position: absolute; inset: 0; transform-origin: left; transform: scaleX(var(--p, 0)); background: var(--amber); transition: transform .45s var(--ease); }
.terrain-steps { display: flex; flex-wrap: wrap; gap: 10px; list-style: none; padding: 0; margin: clamp(18px, 3vw, 28px) auto 0; max-width: 1180px; padding-inline: var(--sp-5); }
.terrain-steps li { margin: 0; }
.ts-pill {
  display: inline-flex; align-items: center; gap: 9px; margin: 0; padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, .16); border-radius: 999px; background: transparent; color: var(--muted-invert);
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 550; cursor: pointer;
  transition: color .3s ease, border-color .3s ease, background .3s ease;
}
.ts-pill:hover { color: #fff; border-color: rgba(255, 255, 255, .4); }
.ts-pill .ts-num { font-family: var(--font-head); font-weight: 640; color: rgba(255, 255, 255, .5); font-size: var(--fs-sm); }
.ts-pill.on { color: #fff; border-color: var(--amber); background: rgba(227, 163, 58, .14); }
.ts-pill.on .ts-num { color: var(--amber); }
.ts-pill.done .ts-num { color: var(--spruce); }
/* Animacija vode v prerezu (dež, tok po pobočju, kapljanje po temelju).
   Privzeto statično in vidno (moker videz tudi brez animacij / pri reduced-motion);
   gibanje se vklopi samo, kadar uporabnik animacij ne omejuje. */
/* Voda se na naročnikovo izrecno željo premika NE GLEDE na sistemsko nastavitev
   reduced-motion (majhno, dekorativno gibanje); VSE ostale animacije na strani
   še naprej spoštujejo prefers-reduced-motion. */
.terrain-svg .rd  { animation: t-rain  1.2s linear infinite; }
.terrain-svg .fl  { animation: t-flow  2.2s ease-in infinite; }
.terrain-svg .fl2 { animation: t-flow2 2s   ease-in infinite; }
.terrain-svg .dr  { animation: t-drip  1.8s ease-in infinite; }
.terrain-svg .fd  { animation: t-fd    1.4s ease-in infinite; }
.terrain-svg .fp  { animation: t-fp    1.6s linear  infinite; }
@media (prefers-reduced-motion: reduce) {
  .terrain-svg .rd  { animation-duration: 1.2s !important; animation-iteration-count: infinite !important; }
  .terrain-svg .fl  { animation-duration: 2.2s !important; animation-iteration-count: infinite !important; }
  .terrain-svg .fl2 { animation-duration: 2s   !important; animation-iteration-count: infinite !important; }
  .terrain-svg .dr  { animation-duration: 1.8s !important; animation-iteration-count: infinite !important; }
  .terrain-svg .fd  { animation-duration: 1.4s !important; animation-iteration-count: infinite !important; }
  .terrain-svg .fp  { animation-duration: 1.6s !important; animation-iteration-count: infinite !important; }
}
@keyframes t-rain  { 0% { transform: translate(0, -22px); opacity: 0; } 12% { opacity: .6; } 85% { opacity: .6; } 100% { transform: translate(8px, 26px); opacity: 0; } }
@keyframes t-flow  { 0% { transform: translate(-7px, -5px); opacity: 0; } 25% { opacity: .9; } 75% { opacity: .9; } 100% { transform: translate(22px, 15px); opacity: 0; } }
@keyframes t-flow2 { 0% { transform: translateX(-16px); opacity: 0; } 25% { opacity: .9; } 75% { opacity: .9; } 100% { transform: translateX(18px); opacity: 0; } }
@keyframes t-drip  { 0% { transform: translateY(-2px); opacity: 0; } 25% { opacity: .9; } 100% { transform: translateY(24px); opacity: 0; } }
@keyframes t-fd    { 0% { transform: translateY(-6px); opacity: 0; } 25% { opacity: .9; } 100% { transform: translateY(18px); opacity: 0; } }
@keyframes t-fp    { 0% { transform: translate(-22px, -1px); opacity: 0; } 20% { opacity: .9; } 75% { opacity: .9; } 100% { transform: translate(46px, 3px); opacity: 0; } }
/* Vremenske plasti prereza (dež / sonce / bager) — vidnost glede na aktivno fazo (JS: data-active). */
.terrain-svg .wx { opacity: 0; transition: opacity .5s var(--ease); }
.terrain[data-active="0"] .wx-rain { opacity: 1; }
.terrain[data-active="1"] .wx-sun, .terrain[data-active="2"] .wx-sun, .terrain[data-active="3"] .wx-sun { opacity: 1; }
.terrain[data-active="1"] .wx-digger, .terrain[data-active="2"] .wx-digger, .terrain[data-active="3"] .wx-digger { opacity: 1; }
.terrain[data-active="4"] .wx-drain { opacity: 1; }

/* ---------- Koraki poteka (časovnica) ---------- */
.timeline-track { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--sp-5); position: relative; }
.step-card { position: relative; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card); }
.section-dark .step-card { background: var(--graphite-2); border-color: var(--line-dark); }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--ink); color: var(--amber); font-family: var(--font-head); font-weight: 700; font-size: var(--fs-md); margin-bottom: var(--sp-4); border: 2px solid var(--amber); }
.step-card h3 { font-size: var(--fs-md); font-family: var(--font-head); font-weight: 640; line-height: 1.3; margin-bottom: 6px; }
.step-card p { font-size: var(--fs-sm); color: var(--muted); margin: 0; }
.section-dark .step-card h3 { color: var(--text-invert); }
.section-dark .step-card p { color: var(--muted-invert); }

/* ---------- Vsebinski split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split.split-media-right .split-media { order: 2; }
.split-media { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); align-self: stretch; min-height: 340px; position: relative; }
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.split-media .split-badge {
  position: absolute; left: 18px; bottom: 18px; z-index: 1; background: rgba(14, 16, 18, .85);
  color: #fff; padding: 10px 16px; border-radius: 999px; font-size: var(--fs-xs); font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.split-media .split-badge svg { color: var(--amber); }
.split-body h2 { margin-bottom: .5em; }
.split-body p:not(.kicker):not(.eyebrow) { color: var(--muted); }
.section-dark .split-body p:not(.kicker) { color: var(--muted-invert); }
.check-list { list-style: none; padding: 0; margin: 18px 0 24px; }
.check-list li { position: relative; padding-left: 34px; margin-bottom: 12px; font-weight: 550; color: var(--text); }
.section-dark .check-list li { color: var(--text-invert); }
.check-list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%; background: var(--amber-soft); }
.check-list li::after { content: ''; position: absolute; left: 7px; top: 8px; width: 8px; height: 5px; border-left: 2px solid var(--amber-ink); border-bottom: 2px solid var(--amber-ink); transform: rotate(-45deg); }
.section-dark .check-list li::before { background: rgba(227, 163, 58, .18); }
.section-dark .check-list li::after { border-color: var(--amber); }

/* ---------- FAQ ---------- */
.faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); margin-bottom: 12px; box-shadow: var(--shadow-card); overflow: hidden; }
.faq-list summary { list-style: none; cursor: pointer; padding: 20px 54px 20px 24px; font-weight: 650; color: var(--ink); position: relative; font-size: var(--fs-base); transition: background .15s ease; }
.faq-list summary:hover { background: var(--concrete); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: ''; position: absolute; right: 22px; top: 50%; width: 10px; height: 10px; border-right: 2px solid var(--amber-ink); border-bottom: 2px solid var(--amber-ink); transform: translateY(-70%) rotate(45deg); transition: transform .22s ease; }
.faq-list details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
.faq-list details > div { padding: 0 24px 20px; color: var(--muted); }
.faq-list details > div p:last-child { margin-bottom: 0; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 380px) minmax(0, 1fr); gap: clamp(28px, 4vw, 56px); }
.contact-panel { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-card); overflow: hidden; display: flex; flex-direction: column; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; padding: 20px 24px; border-bottom: 1px solid var(--line); flex: 0 0 auto; }
.contact-map-box { flex: 1 1 auto; min-height: 220px; background: var(--graphite); display: flex; }
.map-load { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 24px; border: 0; background: none; color: var(--text-invert); font-family: var(--font-body); text-align: center; cursor: pointer; transition: background .18s ease; }
.map-load:hover { background: var(--graphite-2); }
.map-load svg { color: var(--amber); }
.map-load-title { font-size: var(--fs-sm); font-weight: 650; }
.map-load-note { font-size: var(--fs-micro); color: var(--muted-invert); max-width: 24ch; }
.contact-map-box iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-row:last-child { border-bottom: 0; }
.contact-ico { flex: 0 0 auto; width: 40px; height: 40px; border-radius: var(--radius-chip); background: var(--amber-soft); color: var(--amber-ink); display: flex; align-items: center; justify-content: center; }
.contact-body { min-width: 0; }
.contact-row h3 { font-family: var(--font-body); font-size: var(--fs-micro); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin: 2px 0 4px; }
.contact-value { display: inline-block; font-size: var(--fs-lg); font-weight: 700; color: var(--amber-ink); text-decoration: none; line-height: 1.3; word-break: break-word; }
a.contact-value:hover { text-decoration: underline; }
.contact-row p { margin: 0; color: var(--text); }
.contact-note { font-size: var(--fs-xs); color: var(--muted); margin-top: 6px !important; }
.contact-meta { font-size: var(--fs-xs); color: var(--muted); }
.contact-map { display: inline-flex; align-items: center; gap: 6px; margin-top: 10px; font-size: var(--fs-xs); font-weight: 650; color: var(--amber-ink); text-decoration: none; }
.contact-map:hover { text-decoration: underline; }

/* Obrazec */
.form-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 40px); box-shadow: var(--shadow-card); }
.form-card > h2 { margin-bottom: 6px; }
.form-card-note { color: var(--muted); margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-weight: 650; font-size: var(--fs-xs); color: var(--ink); }
.form-field label .opt { font-weight: 450; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body); font-size: var(--fs-base); color: var(--text); background: var(--sand);
  border: 1.5px solid var(--line-field); border-radius: var(--radius-sm); padding: 12px 14px;
  transition: border-color .15s ease, background .15s ease, box-shadow .15s ease; width: 100%;
}
.form-field textarea { min-height: 130px; resize: vertical; }
.form-field select {
  appearance: none; -webkit-appearance: none; padding-right: 40px;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237A4E12' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; cursor: pointer;
}
.form-field input[type="file"] { padding: 9px 12px; cursor: pointer; }
.form-field input[type="file"]::file-selector-button { font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 650; margin: 0 12px 0 0; padding: 8px 15px; border: 1.5px solid var(--line-field); border-radius: 8px; background: var(--white); color: var(--amber-ink); cursor: pointer; transition: background .15s ease, color .15s ease, border-color .15s ease; }
.form-field input[type="file"]::file-selector-button:hover { background: var(--amber-ink); color: #fff; border-color: var(--amber-ink); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--amber-ink); background: #fff; box-shadow: 0 0 0 3px var(--amber-soft); }
.form-field input[aria-invalid="true"], .form-field select[aria-invalid="true"], .form-field textarea[aria-invalid="true"] { border-color: var(--rust); }
.field-error { display: none; font-size: var(--fs-xs); color: var(--rust); font-weight: 550; }
.field-error.show { display: block; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: var(--fs-xs); color: var(--muted); }
.form-consent input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--amber-ink); flex: 0 0 auto; }
.form-file-hint { font-size: var(--fs-xs); color: var(--muted); margin-top: 4px; }
.form-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 16px; margin-top: 20px; }
.form-status { font-weight: 600; margin: 0; }
.form-status.err { color: var(--rust); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- CTA pas ---------- */
.cta-band { background: var(--asphalt); border-radius: var(--radius); color: var(--text-invert); padding: clamp(36px, 5vw, 64px); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px; position: relative; overflow: hidden; }
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0; opacity: .5; pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 40px 40px; -webkit-mask-image: radial-gradient(circle at 80% 120%, #000, transparent 60%); mask-image: radial-gradient(circle at 80% 120%, #000, transparent 60%);
}
.cta-band::after { content: ''; position: absolute; right: -110px; bottom: -210px; width: 360px; height: 360px; border-radius: 50%; background: radial-gradient(circle, rgba(227, 163, 58, .5), transparent 70%); pointer-events: none; }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; margin: 0 0 6px; font-size: clamp(24px, 3vw, 34px); }
.cta-band p { margin: 0; color: var(--muted-invert); max-width: 46ch; }
.cta-band-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Prose (pravne strani) ---------- */
.prose h2 { font-size: clamp(24px, 2.6vw, 30px); margin-top: 1.6em; }
.prose h3 { font-size: clamp(19px, 1.9vw, 22px); margin-top: 1.3em; }
.prose > :first-child { margin-top: 0; }
.prose table { width: 100%; border-collapse: collapse; margin: 1em 0; font-size: var(--fs-sm); }
.prose th, .prose td { text-align: left; padding: 10px 12px; border: 1px solid var(--line); vertical-align: top; }
.prose th { background: var(--concrete); font-weight: 700; }
.prose th:first-child, .prose td:first-child { width: 22ch; }
.table-wrap { overflow-x: auto; margin: 1em 0; -webkit-overflow-scrolling: touch; }
.table-wrap table { margin: 0; }
.data-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr)); gap: 0 40px; margin: 1.2em 0 0; }
.data-grid > div { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.data-grid dt { color: var(--muted); font-size: var(--fs-xs); flex: 0 0 auto; }
.data-grid dd { margin: 0; font-weight: 650; color: var(--ink); text-align: right; word-break: break-word; }
.data-grid dd a { font-weight: 650; }

/* ---------- Noga ---------- */
.footer { background: var(--asphalt); color: var(--muted-invert); padding: 76px 0 0; font-size: var(--fs-sm); position: relative; }
.footer::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: repeating-linear-gradient(135deg, var(--amber) 0 22px, var(--asphalt) 22px 40px); opacity: .8; }
.footer a { color: var(--text-invert); text-decoration: none; }
.footer a:not(.brand):hover { text-decoration: underline; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 44px; }
.footer h2 { color: #fff; font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
button.js-manage-cookies { font: inherit; background: none; border: 0; padding: 0; cursor: pointer; color: inherit; }
button.js-manage-cookies:hover { text-decoration: underline; }
.footer button.js-manage-cookies { color: var(--muted-invert); }
.prose button.js-manage-cookies { color: var(--amber-ink); text-decoration: underline; text-underline-offset: 3px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer li { margin-bottom: 10px; }
.footer-brand .brand-name { font-size: var(--fs-lg); }
.footer-brand .brand-mark { filter: none; }
.footer-brand p { margin-top: 14px; max-width: 320px; }
@media (max-width: 900px) {
  .footer-brand .brand { flex-direction: column; gap: 10px; margin-right: 0; }
  .footer-brand .brand-mark { width: 54px; height: 54px; }
}
.footer-legal { border-top: 1px solid var(--line-dark); padding: 20px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; font-size: var(--fs-label); }
.footer-legal ul { list-style: none; display: flex; flex-wrap: wrap; gap: 18px; padding: 0; margin: 0; }
.footer-legal li { margin: 0; }
.footer-legal a { color: var(--muted-invert); }
.footer-legal p { margin: 0; }

/* ---------- Piškotkova pasica ---------- */
.cookie-banner { position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 260; max-width: 460px; margin-right: auto; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-deep); padding: 22px 24px; }
.cookie-banner h2 { font-size: var(--fs-md); font-family: var(--font-head); font-weight: 640; line-height: 1.3; margin-bottom: 6px; }
.cookie-banner p { font-size: var(--fs-xs); color: var(--muted); margin-bottom: 14px; }
.cookie-banner .cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.cookie-banner .btn { padding: 10px 18px; font-size: var(--fs-xs); }
.cookie-fab { position: fixed; left: 16px; bottom: 16px; z-index: 250; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-card); cursor: pointer; display: none; align-items: center; justify-content: center; color: var(--amber-ink); transition: transform .18s ease, box-shadow .18s ease, opacity .2s ease, visibility .2s ease; }
.cookie-fab.show { display: inline-flex; }
.cookie-fab:hover, .cookie-fab:focus-visible { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.cookie-fab.tucked { opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px); }

/* ---------- Razkrivanje ob drsenju ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s var(--ease); }
.reveal-l { transform: translateX(-56px); }
.reveal-r { transform: translateX(56px); }
.reveal.is-in { opacity: 1; transform: none; }
@media (max-width: 900px) { .reveal-l, .reveal-r { transform: translateY(20px); } }

/* ---------- Sporočilna stran (404, hvala) ---------- */
.page-message { max-width: var(--wrap); margin: 0 auto; padding: calc(var(--header-h) + var(--sp-8)) var(--sp-5) var(--sp-9); text-align: center; }
.page-message-ico { width: 78px; height: 78px; border-radius: 50%; background: var(--amber-soft); color: var(--amber-ink); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.page-message .code { font-family: var(--font-head); font-size: clamp(80px, 16vw, 150px); font-weight: 620; color: var(--amber-ink); line-height: 1; margin-bottom: 10px; }
.page-message h1 { font-size: clamp(28px, 4vw, 42px); }
.page-message p { color: var(--muted); }
.page-message .lead { font-size: var(--fs-lead); }
.page-message-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 28px; }

.section-more { margin: 28px 0 0; }
.section-more.center { text-align: center; }

/* ---------- Odzivnost ---------- */
@media (max-width: 900px) {
  .section { padding: var(--sp-8) 0; }
  .section-tight { padding: 48px 0; }
  .page-message { padding: calc(var(--header-h) + 24px) var(--sp-5) var(--sp-8); }
  .page-hero + .section { padding-top: var(--sp-7); }
  .split { grid-template-columns: 1fr; }
  .split.split-media-right .split-media, .split-media { order: -1; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; text-align: center; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-legal { justify-content: center; text-align: center; }
  .footer-legal ul { justify-content: center; }
  .svc-row { grid-template-columns: 56px 1fr auto; gap: 16px; padding: 22px 4px; }
  .svc-row:hover { padding-left: 10px; padding-right: 10px; }
}
@media (max-width: 720px) {
  .form-grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .hero-cta .btn { width: 100%; }
  .cta-band-actions { flex-direction: column; width: 100%; }
  .cta-band-actions .btn { width: 100%; }
  .wrap, .wrap-narrow { padding: 0 18px; }
  .page-message { padding: calc(var(--header-h) + 16px) 18px 48px; }
  .svc-row .svc-go { width: 40px; height: 40px; }
  .hero-stats { gap: 12px 28px; }
}

/* Storitve na mobilnem: stevilka poravnana na vrh z naslovom, znacka v svojo vrstico in levo poravnana */
@media (max-width: 640px) {
  .svc-row { align-items: start; }
  .svc-row .svc-go { align-self: center; }
  .svc-row .svc-main h3 .svc-tag { display: block; width: fit-content; margin-left: 0; margin-top: 8px; }
}
