/* ============================================================
   Fasade Kurnik — glavni slog
   ------------------------------------------------------------
   Barvna shema ("premium obrtnik"):
     - temno oglje za header/footer (bel napis v logotipu!)
     - topla svetla podlaga za vsebino
     - opečnato-oranžen poudarek za CTA (asociacija: fasade, gradnja)
   Mobile-first; brez zunanjih knjižnic in fontov (GDPR).
   ============================================================ */

:root {
    /* Barve — modra shema (zahteva naročnika):
       header/footer temno modra, naslovni pasovi (hero) svetlejša modra
       z gradientom, da se VIDNO ločijo od menijske vrstice. */
    --c-dark:      #16283f;   /* header, footer — zelo temna modra */
    --c-dark-soft: #223c5e;   /* hover/pasovi na temnem */
    --c-hero-1:    #2f5488;   /* naslovni pas — svetlejša modra (vrh gradienta) */
    --c-hero-2:    #203a5f;   /* naslovni pas — spodnji del gradienta */
    --c-ink:       #232830;   /* glavno besedilo */
    --c-muted:     #67707c;   /* sekundarno besedilo */
    --c-bg:        #f5f6f8;   /* podlaga vsebine (hladna svetla) */
    --c-surface:   #ffffff;   /* kartice na svetlem */
    --c-line:      #e0e3e8;   /* ločnice, robovi */
    --c-accent:    #d96c2c;   /* CTA — opečnata (kontrast na modri) */
    --c-accent-d:  #b95419;   /* CTA hover */
    --c-on-dark:   #f2f4f7;   /* besedilo na temnem */
    --c-on-dark-2: #a9b6c7;   /* sekundarno na temnem */

    /* Tipografija — sistemski sklad (brez zunanjih klicev) */
    --font: "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;

    /* Header: visok ob nalaganju (dovolj za berljiv podnapis v logotipu),
       nizek ob scrollu */
    --header-h:       136px;
    --header-h-small: 76px;

    --radius: 10px;
    --shadow: 0 6px 24px rgba(35, 35, 39, .10);
    --container: 1200px;
}

/* ---------- Ponastavitev ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.65;
    color: var(--c-ink);
    background: var(--c-bg);
    /* prostor za fiksni header */
    padding-top: var(--header-h);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--c-accent-d); }
a:hover { color: var(--c-accent); }

h1, h2, h3 { line-height: 1.25; margin: 0 0 .5em; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: 1.15rem; }

.container {
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 20px;
}

/* Preskok na vsebino (dostopnost) */
.skip-link {
    position: absolute; left: -999px; top: 0;
    background: var(--c-accent); color: #fff;
    padding: 10px 16px; z-index: 200;
}
.skip-link:focus { left: 0; color: #fff; }

/* ============================================================
   HEADER — fiksen, temen, shrink-on-scroll
   ============================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    background: var(--c-dark);
    box-shadow: 0 2px 14px rgba(0, 0, 0, .35);
}
.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    height: var(--header-h);
    transition: height .3s ease;
}
.site-header__logo { display: flex; align-items: center; height: 100%; padding-block: 14px; }
.site-header__logo img {
    height: 100%;
    width: auto;
    transition: transform .3s ease;
}

/* Zmanjšano stanje — js/main.js doda .is-scrolled na <body> */
body.is-scrolled .site-header__inner { height: var(--header-h-small); }
body.is-scrolled .site-header__logo { padding-block: 8px; }

/* ---------- Navigacija (desktop) ---------- */
.site-nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 4px;
    margin: 0; padding: 0;
}
.site-nav__link {
    display: block;
    padding: 10px 13px;
    color: var(--c-on-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: .95rem;
    border-radius: 6px;
    transition: background .2s, color .2s;
    white-space: nowrap;
}
.site-nav__link:hover { background: var(--c-dark-soft); color: #fff; }
.site-nav__link.is-active { color: var(--c-accent); }
.site-nav__link--cta {
    background: var(--c-accent);
    color: #fff;
    margin-left: 6px;
}
.site-nav__link--cta:hover { background: var(--c-accent-d); color: #fff; }
.site-nav__link--cta.is-active { color: #fff; }

/* ---------- Hamburger (mobilno) ---------- */
.nav-toggle {
    display: none;
    background: none; border: 0; cursor: pointer;
    padding: 10px;
}
.nav-toggle__bar {
    display: block;
    width: 26px; height: 3px;
    margin: 5px 0;
    background: var(--c-on-dark);
    border-radius: 2px;
    transition: transform .25s ease, opacity .25s ease;
}
/* animacija v "X" */
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

@media (max-width: 900px) {
    :root { --header-h: 104px; --header-h-small: 68px; }

    .nav-toggle { display: block; }

    .site-nav {
        position: fixed;
        top: var(--header-h);
        left: 0; right: 0;
        background: var(--c-dark);
        border-top: 1px solid var(--c-dark-soft);
        transform: translateY(-8px);
        opacity: 0;
        visibility: hidden;
        transition: transform .25s ease, opacity .25s ease, visibility .25s;
        max-height: calc(100vh - var(--header-h));
        overflow-y: auto;
        box-shadow: 0 14px 24px rgba(0,0,0,.35);
    }
    body.is-scrolled .site-nav { top: var(--header-h-small); }
    body.nav-open .site-nav {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 10px 14px 18px;
    }
    .site-nav__link { padding: 13px 12px; font-size: 1.05rem; }
    .site-nav__link--cta { margin: 8px 0 0; text-align: center; }
}

/* ============================================================
   GUMBI
   ============================================================ */
.btn {
    display: inline-block;
    padding: 13px 26px;
    border-radius: var(--radius);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid transparent;
    transition: background .2s, color .2s, border-color .2s;
    cursor: pointer;
}
.btn--primary { background: var(--c-accent); color: #fff; }
.btn--primary:hover { background: var(--c-accent-d); color: #fff; }
.btn--ghost { border-color: var(--c-on-dark-2); color: var(--c-on-dark); }
.btn--ghost:hover { border-color: #fff; color: #fff; }
.btn--ghost-dark { border-color: var(--c-ink); color: var(--c-ink); }
.btn--ghost-dark:hover { border-color: var(--c-accent); color: var(--c-accent-d); }
.btn--lg { padding: 15px 34px; font-size: 1.05rem; }

/* ============================================================
   PLACEHOLDER ZA SLIKE (naročnik jih doda kasneje)
   ============================================================ */
.img-ph {
    position: relative;
    width: 100%;
    background:
        repeating-linear-gradient(45deg,
            #dfdcd6 0 14px, #e9e6e0 14px 28px);
    border: 2px dashed #b8b4ac;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 180px;
    overflow: hidden;
}
.img-ph__label {
    background: rgba(35, 35, 39, .82);
    color: #fff;
    font-size: .8rem;
    line-height: 1.5;
    text-align: center;
    padding: 10px 16px;
    border-radius: 8px;
    letter-spacing: .03em;
}
.img-ph--hero { min-height: 420px; border-radius: 0; border: 0; }
.img-ph--card { aspect-ratio: 4 / 3; min-height: 0; }
.img-ph--wide { aspect-ratio: 16 / 7; }

/* ============================================================
   HERO (domača stran)
   ============================================================ */
.hero {
    position: relative;
    /* Svetlejša modra z gradientom — vidno ločena od temnejšega headerja */
    background: linear-gradient(168deg, var(--c-hero-1) 0%, var(--c-hero-2) 100%);
    color: var(--c-on-dark);
}
.hero__media { position: absolute; inset: 0; }
.hero__media .img-ph { height: 100%; min-height: 0; opacity: .28; }
.hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* Prosojen moder preliv čez fotografijo: levo temneje (tam je besedilo),
   proti desni se odpira — fotografija ostane vidna, besedilo berljivo. */
.hero__media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg,
        rgba(22, 40, 63, .86) 0%,
        rgba(22, 40, 63, .62) 48%,
        rgba(32, 58, 95, .28) 100%);
}
.hero__inner {
    position: relative;
    padding: clamp(56px, 10vw, 120px) 20px;
    max-width: var(--container);
    margin-inline: auto;
}
.hero__kicker {
    display: inline-block;
    color: var(--c-accent);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .85rem;
    margin-bottom: 10px;
}
.hero h1 { color: #fff; max-width: 17ch; }
.hero__accent {
    display: block;
    font-family: Georgia, "Times New Roman", "Segoe UI", serif;
    font-style: italic;
    font-weight: 500;
    color: #d9b98c;
}
.hero__lead { font-size: 1.12rem; max-width: 52ch; color: var(--c-on-dark-2); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

/* ============================================================
   SEKCIJE
   ============================================================ */
.section { padding: clamp(48px, 7vw, 84px) 0; }
.section--alt { background: var(--c-surface); border-block: 1px solid var(--c-line); }
.section__head { max-width: 640px; margin-bottom: 36px; }
.section__kicker {
    color: var(--c-accent-d);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .82rem;
}
.section__lead { color: var(--c-muted); }

/* ---------- Kartice storitev ---------- */
.cards {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .img-ph { border-radius: 0; border-inline: 0; border-top: 0; }
.card__body { padding: 22px 22px 26px; display: flex; flex-direction: column; flex: 1; }
.card__body p { color: var(--c-muted); flex: 1; margin-top: 0; }
.card__link {
    font-weight: 700;
    text-decoration: none;
    color: var(--c-accent-d);
}
.card__link:hover { color: var(--c-accent); }
.card__badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--c-accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 99px;
    margin-bottom: 10px;
}

/* ---------- Sekcija zaupanja ---------- */
.trust {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}
.trust__item {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 26px 24px;
}
.trust__num {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--c-accent-d);
    line-height: 1.1;
}
.trust__item h3 { margin-top: 8px; }
.trust__item p { color: var(--c-muted); margin-bottom: 0; }

/* ---------- CTA pas ---------- */
.cta-band {
    background: var(--c-dark);
    color: var(--c-on-dark);
    text-align: center;
    padding: clamp(48px, 7vw, 72px) 20px;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: var(--c-on-dark-2); max-width: 56ch; margin-inline: auto; }
.cta-band .btn { margin: 18px 6px 0; }

/* ---------- Dvodelna postavitev (besedilo + slika) ---------- */
.split {
    display: grid;
    gap: 36px;
    align-items: center;
}
@media (min-width: 820px) {
    .split { grid-template-columns: 1fr 1fr; }
    .split--flip > :first-child { order: 2; }
}

/* ============================================================
   PODSTRANI — naslovni pas pod headerjem
   ============================================================ */
.page-hero {
    /* Svetlejša modra z gradientom — vidno ločena od temnejšega headerja */
    background: linear-gradient(168deg, var(--c-hero-1) 0%, var(--c-hero-2) 100%);
    color: var(--c-on-dark);
    padding: clamp(40px, 6vw, 64px) 0;
}
.page-hero h1 { color: #fff; margin-bottom: .3em; }
.page-hero__kicker {
    display: inline-block;
    color: var(--c-accent);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .82rem;
    margin-bottom: 8px;
}
.page-hero__lead { color: var(--c-on-dark-2); max-width: 62ch; margin: 0; font-size: 1.08rem; }

/* ---------- Seznam s kljukicami ---------- */
.list-check { list-style: none; padding: 0; margin: 0 0 1.2em; }
.list-check li { position: relative; padding-left: 30px; margin-bottom: 10px; }
.list-check li::before {
    content: "✓";
    position: absolute; left: 0; top: 0;
    color: var(--c-accent-d);
    font-weight: 800;
}

/* ---------- Koraki postopka (oštevilčene kartice) ---------- */
.steps {
    list-style: none;
    counter-reset: step;
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 0; margin: 0;
}
.steps li {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px 22px;
    counter-increment: step;
}
.steps li::before {
    content: counter(step, decimal-leading-zero);
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-accent);
    margin-bottom: 6px;
}
.steps h3 { font-size: 1.05rem; }
.steps p { color: var(--c-muted); margin-bottom: 0; font-size: .95rem; }

/* ---------- Značke primerov uporabe (mikrocement) ---------- */
.usecases {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    list-style: none; padding: 0; margin: 0;
}
.usecases li {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 18px 16px;
    text-align: center;
    font-weight: 700;
}
.usecases li span { display: block; font-weight: 400; color: var(--c-muted); font-size: .88rem; margin-top: 4px; }

/* ============================================================
   GALERIJA REFERENC + FILTER + LIGHTBOX
   ============================================================ */
.filter { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.filter__btn {
    font: inherit;
    font-weight: 600;
    font-size: .92rem;
    padding: 9px 20px;
    border-radius: 99px;
    border: 1px solid var(--c-line);
    background: var(--c-surface);
    color: var(--c-ink);
    cursor: pointer;
    transition: background .2s, color .2s, border-color .2s;
}
.filter__btn:hover { border-color: var(--c-accent); color: var(--c-accent-d); }
.filter__btn.is-active { background: var(--c-dark); border-color: var(--c-dark); color: #fff; }

.gallery {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}
.gallery__item {
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: none;
    font: inherit;
    text-align: left;
    cursor: zoom-in;
}
.gallery__item.is-hidden { display: none; }
.gallery__item .img-ph { transition: transform .2s ease; }
.gallery__item:hover .img-ph { transform: scale(1.02); }
.gallery__caption {
    display: block;
    font-size: .88rem;
    color: var(--c-muted);
    margin-top: 8px;
}

/* Lightbox (vanilla, brez knjižnic) */
.lightbox {
    position: fixed; inset: 0;
    z-index: 300;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(22, 22, 25, .93);
    padding: 28px;
}
.lightbox.is-open { display: flex; }
.lightbox__content { max-width: min(960px, 92vw); width: 100%; }
.lightbox__content .img-ph { min-height: 340px; }
.lightbox__content img { margin-inline: auto; max-height: 80vh; width: auto; border-radius: var(--radius); }
.lightbox__caption { color: var(--c-on-dark-2); text-align: center; margin-top: 14px; }
.lightbox__close {
    position: absolute; top: 18px; right: 22px;
    background: none; border: 0;
    color: #fff; font-size: 2.2rem; line-height: 1;
    cursor: pointer; padding: 6px;
}
.lightbox__close:hover { color: var(--c-accent); }

/* ============================================================
   KONTAKTNI OBRAZEC
   ============================================================ */
.contact-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}
@media (min-width: 920px) {
    .contact-grid { grid-template-columns: 1.6fr 1fr; }
}
.contact-col { display: flex; flex-direction: column; gap: 24px; }
.contact-photo {
    margin: 0;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.contact-photo img { display: block; width: 100%; height: auto; }
/* Na mobilnem (enostolpčni pogled) slike ne prikazujemo — le zaseda prostor. */
@media (max-width: 919px) {
    .contact-photo { display: none; }
}

.form-card {
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 36px);
    box-shadow: var(--shadow);
}
.form-card__title { margin-bottom: 20px; }

.field-grid {
    display: grid;
    gap: 16px 18px;
    grid-template-columns: 1fr;
}
@media (min-width: 640px) {
    .field-grid { grid-template-columns: 1fr 1fr; }
    .field--full { grid-column: 1 / -1; }
}

.field label { display: block; font-weight: 600; margin-bottom: 6px; font-size: .95rem; }
.req { color: var(--c-accent-d); }

.input {
    width: 100%;
    font: inherit;
    color: var(--c-ink);
    background: #fff;
    border: 1px solid var(--c-line);
    border-radius: 8px;
    padding: 11px 13px;
    transition: border-color .2s, box-shadow .2s;
}
.input:focus {
    outline: none;
    border-color: var(--c-accent);
    box-shadow: 0 0 0 3px rgba(217, 108, 44, .18);
}
textarea.input { resize: vertical; min-height: 140px; }
select.input { appearance: auto; }

.field--error .input { border-color: #c0392b; }
.field__err { display: block; color: #c0392b; font-size: .85rem; margin-top: 5px; }

/* Honeypot: skrito ljudem, boti ga "vidijo" v HTML (prevzeto iz proder) */
.hp { position: absolute !important; left: -9999px !important; top: -9999px !important; }

.gdpr { margin-top: 20px; font-size: .92rem; }
.gdpr__row { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.gdpr__row input { margin-top: 4px; flex-shrink: 0; }
.gdpr.field--error { color: #c0392b; }

.form-actions {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}
.form-actions .btn { border: 0; }
.form-actions .btn:disabled { opacity: .6; cursor: wait; }
.form-note { color: var(--c-muted); font-size: .88rem; }

/* Obvestila */
.alert {
    border-radius: var(--radius);
    padding: 14px 18px;
    margin-bottom: 24px;
    font-weight: 600;
}
.alert--error { background: #fdecea; color: #a93226; border: 1px solid #f5c6cb; }

/* Uspešna oddaja */
.result-success {
    max-width: 560px;
    margin-inline: auto;
    text-align: center;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: clamp(32px, 6vw, 56px);
    box-shadow: var(--shadow);
}
.result-success__ic {
    width: 64px; height: 64px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #e8f6ec;
    color: #1e8e3e;
    font-size: 2rem;
    font-weight: 800;
    display: flex; align-items: center; justify-content: center;
}

/* Stranski stolpec s kontakti */
.contact-aside {
    background: var(--c-dark);
    color: var(--c-on-dark-2);
    border-radius: var(--radius);
    padding: clamp(22px, 4vw, 32px);
}
.contact-aside h2 { color: #fff; font-size: 1.2rem; }
.contact-aside a { color: var(--c-on-dark); }
.contact-aside a:hover { color: var(--c-accent); }
.contact-aside__note {
    border-top: 1px solid var(--c-dark-soft);
    padding-top: 14px;
    font-size: .88rem;
}

/* ============================================================
   PRAVNE STRANI
   ============================================================ */
.legal { max-width: 780px; }
.legal h2 { margin-top: 1.6em; }
.legal h2:first-child { margin-top: 0; }
.legal ul { padding-left: 22px; }
.legal li { margin-bottom: 8px; }

.table-wrap { overflow-x: auto; }
.table {
    width: 100%;
    border-collapse: collapse;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    font-size: .95rem;
}
.table th, .table td {
    text-align: left;
    padding: 12px 14px;
    border-bottom: 1px solid var(--c-line);
    vertical-align: top;
}
.table th { background: var(--c-bg); font-size: .85rem; text-transform: uppercase; letter-spacing: .05em; }
.table tr:last-child td { border-bottom: 0; }
.table th[scope], .table tr > th:first-child { width: 200px; }
.legal__meta { color: var(--c-muted); font-size: .88rem; margin-top: 2em; }

/* ============================================================
   ZAŠČITEN E-NASLOV (proti spam botom)
   ============================================================ */
.email-rev { unicode-bidi: bidi-override; direction: rtl; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--c-dark);
    color: var(--c-on-dark-2);
    margin-top: 0;
}
.site-footer a { color: var(--c-on-dark); text-decoration: none; }
.site-footer a:hover { color: var(--c-accent); }
.site-footer__grid {
    display: grid;
    gap: 36px;
    padding-block: 52px 40px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.site-footer__logo { width: 200px; margin-bottom: 14px; }
.site-footer__title {
    font-size: .95rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #fff;
    margin-bottom: 14px;
}
.site-footer__links { list-style: none; margin: 0; padding: 0; }
.site-footer__links li { margin-bottom: 8px; }
.site-footer__address { font-style: normal; margin-bottom: 12px; }
.site-footer__vat { font-size: .85rem; margin-top: 14px; }
.site-footer__bottom {
    border-top: 1px solid var(--c-dark-soft);
    padding-block: 18px;
    font-size: .85rem;
    text-align: center;
}
.site-footer__bottom p { margin: 0; }

/* ============================================================
   Zmanjšano gibanje (dostopnost)
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}


/* ============================================================
   REALNE SLIKE — zaobljeni robovi (uskladitev)
   ============================================================ */
.media-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.media-card img {
    display: block; width: 100%; height: 100%;
    aspect-ratio: 4 / 3; object-fit: cover; object-position: center;
}
.card__img {
    display: block; width: 100%;
    aspect-ratio: 4 / 3; object-fit: cover; object-position: center;
}
/* Galerijske slike (reference) — zaobljeni robovi + hover */
.gallery__item .card__img { transition: transform .2s ease; border-radius: var(--radius); }
.gallery__item:hover .card__img { transform: scale(1.02); }
/* Lightbox: cela, nepopačena slika */
.lightbox__content .card__img {
    width: auto; height: auto; max-height: 80vh;
    aspect-ratio: auto; object-fit: contain;
}
/* Lightbox — navigacijski gumbi */
.lightbox__nav {
    position: absolute; top: 50%; transform: translateY(-50%);
    z-index: 2;
    background: rgba(0, 0, 0, .35); border: 0; color: #fff;
    width: 56px; height: 56px; font-size: 2.4rem; line-height: 1;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s ease, color .2s ease;
    -webkit-tap-highlight-color: transparent;
}
.lightbox__nav:hover { background: rgba(0, 0, 0, .6); color: var(--c-accent); }
.lightbox__nav--prev { left: 18px; }
.lightbox__nav--next { right: 18px; }
.lightbox__nav[hidden] { display: none; }
.lightbox__content.is-navigable { cursor: pointer; }
@media (max-width: 560px) {
    .lightbox__nav { width: 44px; height: 44px; font-size: 1.9rem; }
    .lightbox__nav--prev { left: 8px; }
    .lightbox__nav--next { right: 8px; }
}

/* ============================================================
   ZEMLJEVID LOKACIJE (O nas)
   ============================================================ */
.onas-map { display: flex; flex-direction: column; }
.map-embed {
    border-radius: var(--radius); overflow: hidden;
    box-shadow: var(--shadow); aspect-ratio: 4 / 3;
    background: var(--c-line);
}
.map-embed iframe { display: block; width: 100%; height: 100%; border: 0; }
.onas-map__foot {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 12px; margin-top: 16px;
}
.onas-map__addr { margin: 0; line-height: 1.4; }


/* ============================================================
   GUMB "NA VRH" (fixed, samo puščica)
   ============================================================ */
.to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    z-index: 90;
    width: 48px; height: 48px;
    border: 0; border-radius: 50%;
    background: var(--c-accent); color: #fff;
    font-size: 1.5rem; line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .28);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden; transform: translateY(10px);
    transition: opacity .25s ease, transform .25s ease, background .2s ease, visibility .25s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--c-accent-d); }
@media (max-width: 560px) {
    .to-top { right: 14px; bottom: 14px; width: 44px; height: 44px; font-size: 1.35rem; }
}


/* ============================================================
   ZEMLJEVID — celotna širina + klikni za prikaz (kontakt)
   ============================================================ */
.map-full {
    position: relative;
    width: 100%;
    height: clamp(300px, 44vh, 520px);
    background: var(--c-dark-soft);
    overflow: hidden;
}
.map-full iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ALTCHA kapca (proof-of-work, self-hosted) */
.altcha-wrap { margin: 4px 0 20px; }
.altcha-wrap altcha-widget {
    --altcha-max-width: 100%;
    --altcha-border-radius: var(--radius);
    --altcha-color-border: var(--c-line);
}
/* Sekcija zemljevida: manj praznega prostora zgoraj, gumb v isti vrsti kot naslov */
.map-section { padding-top: clamp(26px, 4vw, 44px); padding-bottom: 0; }
.map-section__bar {
    display: flex; align-items: center; justify-content: space-between;
    gap: 18px 24px; flex-wrap: wrap; margin-bottom: 22px;
}
.map-section__head { margin-bottom: 0; }
@media (max-width: 560px) {
    .map-section__bar { align-items: flex-start; }
}
.map-load__btn {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    border: 0; cursor: pointer;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
    color: #fff;
    background-color: var(--c-dark);
    background-image: radial-gradient(circle at center, rgba(47, 84, 136, .35), rgba(22, 40, 63, .85));
    transition: background-color .2s ease;
}
.map-load__btn:hover { background-color: var(--c-dark-soft); }
.map-load__pin { font-size: 2.4rem; line-height: 1; }
.map-load__label { font-weight: 700; font-size: 1.1rem; }
.map-load__hint { color: var(--c-on-dark-2); font-size: .85rem; }
.map-full__foot { margin-top: 18px; }

/* ============================================================
   MNENJA STRANK
   ============================================================ */
.reviews {
    display: grid; gap: 24px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.review {
    margin: 0;
    background: var(--c-surface);
    border: 1px solid var(--c-line);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex; flex-direction: column;
}
.review__stars { color: #f2a63b; letter-spacing: 2px; margin-bottom: 10px; }
.review p { margin: 0 0 14px; flex: 1; }
.review__author { color: var(--c-muted); font-size: .9rem; font-weight: 600; }

/* ============================================================
   PARTNERJI / BLAGOVNE ZNAMKE — pas z logotipi
   ============================================================ */
.section__head--center { margin-inline: auto; text-align: center; }
.partner-logos {
    list-style: none; margin: 0; padding: 0;
    display: flex; flex-wrap: wrap;
    align-items: center; justify-content: center;
    gap: 28px 52px;
}
.partner-logos__item { display: flex; align-items: center; justify-content: center; }
.partner-logos img {
    max-height: 56px; width: auto; max-width: 190px;
    filter: grayscale(1); opacity: .62;
    transition: filter .25s ease, opacity .25s ease;
}
.partner-logos__item:hover img { filter: none; opacity: 1; }
.partner-logos__ph {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 130px; height: 56px; padding: 0 20px;
    border: 2px dashed var(--c-line); border-radius: var(--radius);
    color: var(--c-muted); font-weight: 700; font-size: .9rem;
    text-align: center;
}

/* ============================================================
   EKO SKLAD — poudarjen pas
   ============================================================ */
.eko-band {
    background: linear-gradient(168deg, var(--c-hero-1) 0%, var(--c-hero-2) 100%);
    color: var(--c-on-dark);
}
.eko-band__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 28px; flex-wrap: wrap;
    padding-block: clamp(30px, 5vw, 52px);
}
.eko-band__text { flex: 1 1 420px; }
.eko-band__badge {
    display: inline-block;
    background: var(--c-accent); color: #fff;
    font-size: .72rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; padding: 3px 10px; border-radius: 99px;
    margin-bottom: 10px;
}
.eko-band__text h2 { color: #fff; }
.eko-band__text p { color: var(--c-on-dark); margin: 0; max-width: 640px; }

/* ============================================================
   MOBILNI GUMB "POKLIČI" (fixed, samo na mobilnem)
   ============================================================ */
.call-fab { display: none; }
@media (max-width: 900px) {
    .call-fab {
        display: inline-flex; align-items: center; gap: 8px;
        position: fixed; left: 16px; bottom: 16px; z-index: 90;
        background: #1e8e3e; color: #fff;
        padding: 12px 18px; border-radius: 99px;
        text-decoration: none; font-weight: 700;
        box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
    }
    .call-fab:hover, .call-fab:focus { color: #fff; background: #197a34; }
    .call-fab__ic { font-size: 1.2rem; line-height: 1; }
}
