/* =====================================================================
   URTICA — pedikerski salon, Celje
   Tema: Softbase. Pisavi: Fraunces (naslovi) + Manrope (besedilo).
   ===================================================================== */

:root {
    --pink: #d63a7a;
    --pink-dark: #a8225f;
    --pink-soft: #f7d8e6;
    --orange: #e8744a;
    --orange-soft: #f8d9cb;

    --ink: #2a1a24;
    --body: #5d5158;
    --muted: #8a7d83;

    --white: #ffffff;
    --cream: #fbf8f6;
    --blush: #f5ede7;
    --blush-warm: #fbeee8;

    --line: rgba(42, 26, 36, .10);
    --line-soft: rgba(42, 26, 36, .06);

    --font-head: "Fraunces", Georgia, "Times New Roman", serif;
    --font-body: "Manrope", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

    --r-sm: 14px;
    --r: 18px;
    --r-lg: 28px;
    --pill: 999px;

    /* Enotni razmiki (dizajn sistem) */
    --card-pad: clamp(1.5rem, 2.4vw, 2rem);
    --grid-gap: clamp(1.3rem, 2vw, 1.8rem);
    --col-gap: clamp(2rem, 4.5vw, 4rem);
    --hero-pad: clamp(2.2rem, 4.5vw, 3.4rem);
    --section-pad: clamp(3rem, 6vw, 5rem);

    --shadow-sm: 0 2px 10px rgba(42, 26, 36, .06);
    --shadow: 0 18px 40px -22px rgba(42, 26, 36, .28);
    --shadow-lg: 0 36px 70px -34px rgba(168, 34, 95, .40);

    --container: 1320px;
    --gutter: clamp(1.1rem, 4vw, 2.2rem);
}

/* ------------------------------ Reset ------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--body);
    background: var(--cream);
    line-height: 1.7;
    font-size: 1.0625rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: var(--pink-dark); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--pink); }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 3px solid rgba(214, 58, 122, .45); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-head); color: var(--ink); line-height: 1.12; font-weight: 600; letter-spacing: -.01em; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 1000;
    background: var(--ink); color: #fff; padding: .7rem 1.1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----------------------------- Layout ----------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: 760px; }
.section { padding-block: var(--section-pad); }
.section--intro { padding-bottom: clamp(1rem, 3vw, 2rem); }

/* --------------------------- Typkografija ------------------------- */
.eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: var(--pink-dark); margin-bottom: 1rem;
}
.eyebrow .icon { width: 18px; height: 18px; }
.eyebrow--accent { color: var(--orange); }

.section-head { max-width: 640px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.5rem; max-width: none; flex-wrap: wrap; }
.section-title { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
.section-sub { margin-top: 1rem; font-size: 1.075rem; color: var(--body); }
.section-head--center .section-sub { margin-inline: auto; }

/* ----------------------------- Gumbi ------------------------------ */
.btn {
    --btn-bg: var(--pink); --btn-fg: #fff;
    display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
    font-weight: 700; font-size: .98rem; line-height: 1;
    padding: .95rem 1.5rem; border-radius: var(--pill);
    background: var(--btn-bg); color: var(--btn-fg);
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
    white-space: nowrap;
}
.btn .icon { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); color: var(--btn-fg); }
.btn--primary { background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 100%); box-shadow: 0 14px 26px -14px rgba(168, 34, 95, .7); }
.btn--primary:hover { box-shadow: 0 18px 32px -12px rgba(168, 34, 95, .75); }
.btn--accent { background: linear-gradient(135deg, var(--orange) 0%, #d85f37 100%); box-shadow: 0 14px 26px -14px rgba(232, 116, 74, .65); }
.btn--white { background: #fff; color: var(--pink-dark); box-shadow: var(--shadow-sm); }
.btn--white:hover { color: var(--pink-dark); }
.btn--ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn--ghost:hover { color: var(--pink-dark); box-shadow: inset 0 0 0 1.5px var(--pink); }
.btn--ghost-light { background: rgba(255, 255, 255, .12); color: #fff; box-shadow: inset 0 0 0 1.5px rgba(255, 255, 255, .5); }
.btn--ghost-light:hover { background: rgba(255, 255, 255, .2); color: #fff; }
.btn--sm { padding: .7rem 1.1rem; font-size: .9rem; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ----------------------------- Topbar ----------------------------- */
.topbar { background: var(--ink); color: rgba(255, 255, 255, .7); font-size: .82rem; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 40px; flex-wrap: wrap; }
.topbar__group { display: flex; align-items: center; gap: var(--grid-gap); flex-wrap: wrap; }
.topbar__item { display: inline-flex; align-items: center; gap: .4rem; line-height: 1; color: rgba(255, 255, 255, .7); transition: color .2s ease; }
.topbar__item:hover { color: #fff; }
.topbar__item .icon { width: 14px; height: 14px; color: var(--orange); flex: 0 0 auto; }

/* ----------------------------- Header ----------------------------- */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255, 255, 255, .9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line-soft); box-shadow: 0 8px 30px -24px rgba(42, 26, 36, .3); transition: box-shadow .25s ease; }
.site-header.is-scrolled { box-shadow: 0 14px 34px -20px rgba(42, 26, 36, .42); }
.site-header__inner { display: flex; align-items: center; gap: 1.5rem; min-height: 86px; }
.site-header__brand { flex: 0 0 auto; display: flex; align-items: center; }
.site-header__brand img, .custom-logo { height: 56px; width: auto; }
.brand-text { font-family: var(--font-head); font-weight: 700; font-size: 1.5rem; color: var(--pink); letter-spacing: .02em; }

.site-nav { margin-left: auto; }
.site-nav .menu { display: flex; align-items: center; gap: .5rem; }
.site-nav .menu > li { position: relative; }
.site-nav .menu > li > a { position: relative; display: inline-flex; align-items: center; gap: .3rem; padding: .55rem .55rem; font-weight: 600; font-size: .98rem; color: var(--ink); transition: color .2s ease; }
.site-nav .menu > li > a::before { content: ""; position: absolute; left: 50%; bottom: .14rem; transform: translateX(-50%); width: 0; height: 2px; border-radius: 2px; background: linear-gradient(90deg, var(--pink), var(--orange)); transition: width .25s ease; }
.site-nav .menu > li > a:hover, .site-nav .menu > li.current-menu-item > a, .site-nav .menu > li.current_page_item > a, .site-nav .menu > li.current-menu-ancestor > a { color: var(--pink-dark); }
.site-nav .menu > li > a:hover::before, .site-nav .menu > li.current-menu-item > a::before, .site-nav .menu > li.current_page_item > a::before, .site-nav .menu > li.current-menu-ancestor > a::before { width: calc(100% - .9rem); }
.site-nav .menu .sub-menu { position: absolute; top: calc(100% + 8px); left: 0; min-width: 230px; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-sm); box-shadow: var(--shadow); padding: .5rem; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .2s ease; }
.site-nav .menu > li:hover .sub-menu, .site-nav .menu > li:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.site-nav .menu .sub-menu a { display: block; padding: .55rem .8rem; border-radius: 8px; font-size: .94rem; font-weight: 600; color: var(--ink); }
.site-nav .menu .sub-menu a:hover { background: var(--blush); color: var(--pink-dark); }
.menu-item-has-children > a::after { content: ""; width: 6px; height: 6px; border-right: 1.6px solid currentColor; border-bottom: 1.6px solid currentColor; transform: rotate(45deg); margin-top: -3px; margin-left: .15rem; opacity: .5; transition: transform .25s ease, opacity .2s ease; }
.site-nav .menu > li.menu-item-has-children:hover > a::after { transform: rotate(-135deg); opacity: .85; }

/* Mega-meni Storitve */
.site-nav .menu > li.menu-mega { position: static; }
.mega { position: absolute; top: calc(100% + 10px); left: 50%; width: min(var(--container), calc(100vw - 2 * var(--gutter))); background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: 0 30px 60px -28px rgba(42, 26, 36, .42); opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px); transition: opacity .2s ease, transform .2s ease, visibility .2s ease; z-index: 90; }
.mega::before { content: ''; position: absolute; left: 0; right: 0; top: -18px; height: 18px; }
.menu-mega:hover > .mega, .menu-mega:focus-within > .mega { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega__inner { display: grid; grid-template-columns: 1fr 290px; gap: clamp(1.4rem, 2.4vw, 2.4rem); padding: clamp(1.5rem, 2.4vw, 2.1rem); align-items: start; }
.mega__cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 2.2rem); }
.mega__col-head { display: flex; align-items: center; gap: .5rem; font-family: var(--font-head); font-weight: 600; font-size: 1.05rem; color: var(--ink); padding-bottom: .7rem; margin-bottom: .5rem; border-bottom: 1px solid var(--line-soft); }
.mega__col-icon { display: inline-flex; color: var(--pink-dark); }
.mega__col-icon .icon { width: 18px; height: 18px; }
.mega__list { display: flex; flex-direction: column; gap: .1rem; }
.mega__list a { display: block; padding: .5rem .6rem; border-radius: var(--r-sm); font-weight: 500; font-size: .95rem; color: var(--body); transition: background .15s ease, color .15s ease; }
.mega__list a:hover { background: var(--blush); color: var(--pink-dark); }
.mega__feature-card { display: block; background: var(--blush); border: 1px solid var(--line-soft); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease; }
.mega__feature-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.mega__feature-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.mega__feature-body { display: block; padding: 1.05rem 1.2rem 1.25rem; }
.mega__feature-body strong { display: block; color: var(--ink); font-family: var(--font-head); font-size: 1.18rem; }
.mega__feature-desc { display: block; font-size: .9rem; color: var(--body); margin: .4rem 0 .85rem; line-height: 1.5; }
.mega__feature-more { display: inline-flex; align-items: center; gap: .35rem; font-weight: 700; font-size: .92rem; color: var(--pink-dark); }
.mega__feature-more .icon { width: 15px; height: 15px; }

.site-header__actions { flex: 0 0 auto; }
.site-header__actions .btn { box-shadow: 0 8px 18px -10px rgba(168, 34, 95, .5); }
.site-header__actions .btn:hover { transform: translateY(-1px); box-shadow: 0 11px 22px -10px rgba(168, 34, 95, .55); }

/* mobilni gumb */
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 10px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav { border-top: 1px solid var(--line-soft); background: #fff; padding: 1rem var(--gutter) 1.6rem; }
.mobile-nav[hidden] { display: none; }
.mobile-menu { display: flex; flex-direction: column; }
.mobile-menu .sub-menu { display: none; flex-direction: column; }
.mobile-menu a { display: block; padding: .8rem .2rem; font-weight: 600; font-size: 1.05rem; color: var(--ink); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .menu-item-has-children > a { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu .menu-item-has-children > a::after { margin-top: 0; }
.mobile-menu .menu-item-has-children.is-open > a::after { transform: rotate(-135deg); opacity: .85; }
.mobile-menu .sub-menu a { padding-left: 1.1rem; font-weight: 500; font-size: .98rem; color: var(--body); }
.mobile-menu .sub-menu a:hover { color: var(--pink-dark); }
.mobile-nav__cta { margin-top: 1.2rem; }
.mobile-nav__contact { margin-top: 1rem; text-align: center; }
.mobile-nav__contact a { display: inline-flex; align-items: center; gap: .5rem; font-weight: 700; color: var(--pink-dark); }
.mobile-nav__contact .icon { width: 18px; height: 18px; }

/* ----------------------------- Ikone ------------------------------ */
.icon { width: 22px; height: 22px; flex: 0 0 auto; }
.icon--xs { width: 15px; height: 15px; }
.icon--sm { width: 18px; height: 18px; }

/* ------------------------------ HERO ------------------------------ */
.hero { position: relative; background: linear-gradient(180deg, var(--blush-warm) 0%, var(--cream) 100%); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--col-gap); align-items: center; padding-block: var(--section-pad); }
.hero__blob { position: absolute; border-radius: 50%; filter: blur(10px); z-index: 0; pointer-events: none; }
.hero__blob--1 { width: 420px; height: 420px; background: radial-gradient(circle at 30% 30%, rgba(214, 58, 122, .16), transparent 70%); top: -120px; right: -90px; }
.hero__blob--2 { width: 360px; height: 360px; background: radial-gradient(circle at 30% 30%, rgba(232, 116, 74, .14), transparent 70%); bottom: -140px; left: -120px; }
.hero__content { position: relative; z-index: 1; }
.hero__title { font-size: clamp(2.1rem, 5vw, 3.5rem); }
.hero__lead { margin-top: 1.3rem; font-size: 1.15rem; max-width: 36ch; color: var(--body); }
.hero__actions { margin-top: 2rem; display: flex; gap: .9rem; flex-wrap: wrap; }
.hero__trust { margin-top: 2.2rem; display: flex; flex-direction: column; gap: .6rem; }
.hero__trust li { display: flex; align-items: center; gap: .6rem; font-weight: 600; color: var(--ink); font-size: .98rem; }
.hero__trust .icon { color: var(--pink); background: var(--pink-soft); border-radius: 50%; padding: 3px; width: 22px; height: 22px; }

.hero__media { position: relative; z-index: 1; }
.hero__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 5 / 6; background: var(--blush); }
.hero__photo::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(255,255,255,.4); z-index: 2; }
.hero__img { width: 100%; height: 100%; object-fit: cover; }
.hero__badge { position: absolute; left: -18px; bottom: 26px; background: #fff; border-radius: var(--r); padding: 1rem 1.2rem; box-shadow: var(--shadow); display: flex; flex-direction: column; gap: .1rem; max-width: 180px; }
.hero__badge-num { font-family: var(--font-head); font-size: 1.9rem; font-weight: 700; color: var(--pink); line-height: 1; }
.hero__badge-txt { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* ----------------------------- Intro ------------------------------ */
.section--services { background: var(--blush); border-radius: clamp(28px, 5vw, 56px); margin-inline: clamp(0px, 2vw, 18px); }

/* --------------------------- Storitve ----------------------------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.service-card { background: #fff; border-radius: var(--r-lg); padding: var(--card-pad); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); transition: transform .25s ease, box-shadow .25s ease; display: flex; flex-direction: column; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 60px; height: 60px; border-radius: var(--r-sm); background: linear-gradient(135deg, var(--pink-soft), #fff); color: var(--pink-dark); margin-bottom: 1.3rem; }
.service-card__icon .icon { width: 28px; height: 28px; }
.service-card:nth-child(2) .service-card__icon { background: linear-gradient(135deg, var(--orange-soft), #fff); color: var(--orange); }
.service-card__title { font-size: 1.35rem; margin-bottom: .6rem; }
.service-card__desc { color: var(--body); margin-bottom: 1.2rem; }
.service-card__list { display: flex; flex-direction: column; gap: .55rem; margin-top: auto; }
.service-card__list a { display: flex; align-items: center; gap: .55rem; font-weight: 600; color: var(--ink); font-size: .96rem; padding: .15rem 0; transition: color .15s ease; }
.service-card__list a:hover { color: var(--pink-dark); }
.service-card__list a:hover span { text-decoration: underline; text-underline-offset: 2px; }
.service-card__list .icon { color: var(--pink); flex: 0 0 auto; }
.service-card__arrow { margin-left: auto; opacity: 0; transform: translateX(-4px); transition: opacity .18s ease, transform .18s ease; }
.service-card__list a:hover .service-card__arrow { opacity: 1; transform: translateX(0); }
.services-note { text-align: center; margin-top: clamp(1.8rem, 3vw, 2.6rem); color: var(--body); }
.services-note a { font-weight: 700; }

/* -------------------------- Izpostavljeno ------------------------- */
.feature__inner { display: grid; grid-template-columns: .9fr 1.1fr; gap: var(--col-gap); align-items: center; }
.feature__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 4 / 3; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; }
.feature__content .section-title { margin-bottom: 1rem; }
.feature__list { margin: 1.4rem 0 2rem; display: flex; flex-direction: column; gap: .7rem; }
.feature__list li { display: flex; align-items: flex-start; gap: .6rem; font-weight: 600; color: var(--ink); }
.feature__list .icon { color: var(--pink); background: var(--pink-soft); border-radius: 50%; padding: 3px; margin-top: 2px; }

/* ----------------------------- Vrednote --------------------------- */
.section--values-soft { background: var(--blush); }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.value-card { text-align: center; padding: var(--card-pad); }
.value-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 64px; height: 64px; border-radius: 50%; background: #fff; color: var(--pink-dark); box-shadow: var(--shadow-sm); margin-bottom: 1.1rem; }
.value-card__icon .icon { width: 28px; height: 28px; }
.value-card__title { font-size: 1.2rem; margin-bottom: .4rem; }
.value-card__desc { font-size: .96rem; color: var(--body); }

/* ------------------------------ Ekipa ----------------------------- */
.team__inner { display: grid; grid-template-columns: 1fr 1.05fr; gap: var(--col-gap); align-items: center; }
.team__media { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.team__photo { position: relative; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 3 / 4; }
.team__photo img { width: 100%; height: 100%; object-fit: cover; }
.team__photo--b { margin-top: 2.2rem; }
.team__name { position: absolute; left: 12px; bottom: 12px; background: rgba(255,255,255,.92); color: var(--pink-dark); font-weight: 700; font-size: .85rem; padding: .3rem .7rem; border-radius: var(--pill); }
.team__content .section-title { margin-bottom: 1rem; }
.team__content p { margin-bottom: 1.6rem; }

/* ----------------------------- CTA band --------------------------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--pink) 0%, var(--pink-dark) 70%); color: #fff; }
.cta-band__blob { position: absolute; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(232,116,74,.5), transparent 65%); top: -160px; right: -120px; }
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-block: clamp(2.6rem, 5vw, 4rem); flex-wrap: wrap; }
.cta-band__text h2 { color: #fff; font-size: clamp(1.6rem, 3.2vw, 2.3rem); }
.cta-band__text p { color: rgba(255,255,255,.88); margin-top: .6rem; max-width: 46ch; }
.cta-band__actions { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ------------------------------ Blog ------------------------------ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.section--related { background: var(--cream); padding-top: clamp(1.4rem, 3vw, 2.2rem); }

/* ------------------------------ FAQ ------------------------------- */
.faq { display: flex; flex-direction: column; gap: .9rem; }
.faq__item { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .2s ease; }
.faq__item[open] { box-shadow: var(--shadow); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: var(--card-pad); cursor: pointer; list-style: none; font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; color: var(--ink); transition: color .2s ease; }
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--pink-dark); }
.faq__icon { position: relative; flex: 0 0 auto; width: 22px; height: 22px; }
.faq__icon::before, .faq__icon::after { content: ""; position: absolute; background: var(--pink); border-radius: 2px; transition: transform .25s ease; }
.faq__icon::before { top: 10px; left: 2px; right: 2px; height: 2px; }
.faq__icon::after { left: 10px; top: 2px; bottom: 2px; width: 2px; }
.faq__item[open] .faq__icon::after { transform: scaleY(0); }
.faq__a { padding: 0 var(--card-pad) var(--card-pad); color: var(--body); }
.faq__a p { margin: 0; line-height: 1.7; }
.faq__a a { font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.faq__cta { margin-top: clamp(2.4rem, 5vw, 3.6rem); text-align: center; background: var(--blush); border-radius: var(--r-lg); padding: var(--card-pad); }
.faq__cta h2 { font-size: 1.5rem; margin-bottom: .5rem; }
.faq__cta p { color: var(--body); margin-bottom: 1.4rem; }
.faq__cta-actions { display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* ----------------------------- Storitve --------------------------- */
.service__lead { margin-top: 1rem; font-size: 1.12rem; color: var(--body); max-width: 60ch; position: relative; z-index: 1; }
.single__cat--plain { color: var(--pink-dark); }

.svc-incl { margin-top: clamp(1.6rem, 3vw, 2.2rem); background: linear-gradient(180deg, var(--blush) 0%, #fff 100%); border: 1px solid var(--line-soft); border-radius: var(--r-lg); padding: clamp(1.4rem, 2.6vw, 2rem); }
.svc-incl__title { display: flex; align-items: center; gap: .5rem; font-size: 1.25rem; margin-bottom: 1.1rem; }
.svc-incl__title .icon { color: var(--pink); }
.svc-incl__list { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem 1.5rem; }
.svc-incl__list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .98rem; color: var(--ink); line-height: 1.4; }
.svc-incl__list .icon { color: var(--pink); flex: 0 0 auto; margin-top: .15rem; }
@media (max-width: 560px) { .svc-incl__list { grid-template-columns: 1fr; } }

/* Široka storitvena postavitev (pedimed-slog) */
.swide__hero-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 1.4rem 2rem; flex-wrap: wrap; margin-top: .3rem; }
.swide__hero-head { min-width: 0; }
.swide__hero-cta { display: flex; gap: .7rem; flex-wrap: wrap; }
.swide__hero .service__lead { margin-top: 1rem; max-width: 70ch; }
.swide__banner { margin-top: clamp(1.4rem, 3vw, 2.2rem); }
.swide__banner-img { width: 100%; height: clamp(250px, 33vw, 430px); object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 26px 50px -28px rgba(42, 26, 36, .4); display: block; }
.single__hero.swide__hero { padding-bottom: clamp(.5rem, 1.2vw, .9rem); }
.swide__body { padding-block: clamp(.4rem, 1vw, .7rem) clamp(1rem, 2vw, 1.4rem); }
.swide__content { font-size: 1.08rem; max-width: none; }
.swide__incl { background: var(--blush); border-block: 1px solid var(--line-soft); padding-block: clamp(2.4rem, 5vw, 3.6rem); }
.swide__incl .section-head { margin-bottom: clamp(1.6rem, 3vw, 2.2rem); }
.swide__incl-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.3rem, 2.5vw, 2rem); }
.swide__incl-item { text-align: center; }
.swide__incl-icon { display: inline-flex; align-items: center; justify-content: center; width: 62px; height: 62px; border-radius: var(--pill); background: #fff; box-shadow: var(--shadow-sm); color: var(--pink-dark); margin-bottom: .9rem; }
.swide__incl-icon .icon { width: 26px; height: 26px; }
.swide__incl-item p { font-weight: 600; color: var(--ink); line-height: 1.4; font-size: .98rem; }
@media (max-width: 880px) {
    .swide__incl-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
    .swide__incl-grid { grid-template-columns: 1fr; }
}
.swide__gallery { padding-block: clamp(2.4rem, 5vw, 3.4rem); }
.swide__gallery .ba__grid { max-width: 940px; margin-inline: auto; }
.swide__gallery .ba__note { text-align: center; }

.svc-group { display: grid; grid-template-columns: minmax(0, 290px) 1fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: start; padding: clamp(2.2rem, 4vw, 3.2rem) 0; border-top: 1px solid var(--line-soft); }
.svc-group:first-child { border-top: none; padding-top: 0; }
.svc-group__head { position: sticky; top: 110px; }
.svc-group__icon { display: inline-flex; align-items: center; justify-content: center; width: 66px; height: 66px; border-radius: var(--r); background: linear-gradient(135deg, var(--pink-soft), #fff); color: var(--pink-dark); margin-bottom: 1.1rem; }
.svc-group__icon .icon { width: 32px; height: 32px; }
.svc-group__title { font-size: clamp(1.4rem, 2.6vw, 1.85rem); margin-bottom: .55rem; }
.svc-group__desc { color: var(--body); font-size: .98rem; line-height: 1.6; max-width: 32ch; }
.svc-group--nohti .svc-group__icon { background: linear-gradient(135deg, var(--orange-soft), #fff); color: var(--orange); }
.svc-group--koza .svc-group__icon { background: linear-gradient(135deg, #fce4ee, #fff); color: var(--pink-dark); }
.svc-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
.svc-card { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-lg); box-shadow: var(--shadow-sm); padding: var(--card-pad); overflow: hidden; transition: transform .25s ease, box-shadow .25s ease; }
.svc-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink), var(--orange)); transform: scaleX(0); transform-origin: left; transition: transform .3s ease; }
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__title { font-size: 1.18rem; margin-bottom: .5rem; color: var(--ink); }
.svc-card__desc { color: var(--body); font-size: .94rem; line-height: 1.55; margin-bottom: 1.1rem; }
.svc-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--pink-dark); font-size: .9rem; }
.svc-card:hover .svc-card__more .icon { transform: translateX(4px); }
.svc-card__more .icon { transition: transform .2s ease; }
@media (max-width: 860px) { .svc-group { grid-template-columns: 1fr; gap: 1.3rem; padding: clamp(1.8rem, 5vw, 2.4rem) 0; } .svc-group__head { position: static; } .svc-group__desc { max-width: none; } }
@media (max-width: 560px) { .svc-cards { grid-template-columns: 1fr; } }

.ba { margin-top: clamp(2rem, 4vw, 2.8rem); padding-top: clamp(1.6rem, 3vw, 2.2rem); border-top: 1px solid var(--line-soft); }
.ba__title { font-size: 1.5rem; margin-bottom: 1.2rem; }
.ba__grid { display: flex; flex-direction: column; gap: var(--grid-gap); }
.ba__pair { display: grid; grid-template-columns: 1fr 1fr; gap: .8rem; }
.ba__item { position: relative; margin: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); background: var(--blush); aspect-ratio: 4 / 3; }
.ba__img { width: 100%; height: 100%; object-fit: cover; }
.ba__item figcaption { position: absolute; top: 12px; left: 12px; z-index: 2; }
.ba__tag { display: inline-block; font-size: .8rem; font-weight: 700; padding: .35rem .85rem; border-radius: var(--pill); color: #fff; letter-spacing: .01em; box-shadow: 0 4px 14px -2px rgba(42, 26, 36, .55); }
.ba__tag--before { background: var(--ink); }
.ba__tag--after { background: var(--pink-dark); }
.ba__note { margin-top: 1rem; font-size: .85rem; color: var(--muted); }

.service-links { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.service-link { display: flex; align-items: center; justify-content: space-between; gap: 1rem; background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r); box-shadow: var(--shadow-sm); padding: 1.1rem 1.3rem; font-weight: 600; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease, color .2s ease; }
.service-link:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: var(--pink-dark); }
.service-link .icon { color: var(--pink); flex: 0 0 auto; }

@media (max-width: 768px) {
    .svc-cards, .service-links { grid-template-columns: 1fr; }
}
.post-card { background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); display: flex; flex-direction: column; transition: transform .25s ease, box-shadow .25s ease; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.post-card__media { display: block; aspect-ratio: 16 / 10; background: var(--blush); overflow: hidden; }
.post-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.post-card:hover .post-card__img { transform: scale(1.05); }
.post-card__placeholder { position: relative; display: flex; align-items: center; justify-content: center; height: 100%; overflow: hidden; color: var(--pink-dark); background: linear-gradient(135deg, var(--pink-soft), var(--blush-warm)); }
.post-card__placeholder::before { content: ""; position: absolute; width: 200px; height: 200px; border-radius: 50%; background: rgba(255, 255, 255, .38); top: -70px; left: -55px; }
.post-card__placeholder::after { content: ""; position: absolute; width: 130px; height: 130px; border-radius: 50%; background: rgba(255, 255, 255, .22); bottom: -45px; right: -25px; }
.post-card__badge { position: relative; z-index: 1; display: inline-flex; align-items: center; justify-content: center; width: 74px; height: 74px; border-radius: var(--r-sm); background: rgba(255, 255, 255, .6); box-shadow: 0 14px 30px -14px rgba(42, 26, 36, .3); }
.post-card__badge .icon { width: 34px; height: 34px; opacity: .9; }
.post-card__placeholder.pv--nohti { color: var(--pink-dark); background: linear-gradient(135deg, #f7d8e6, #fbeee8); }
.post-card__placeholder.pv--koza  { color: var(--orange);    background: linear-gradient(135deg, #f8d9cb, #fbeee8); }
.post-card__placeholder.pv--nega  { color: var(--pink-dark); background: linear-gradient(135deg, #f5ede7, #f7d8e6); }
.post-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; flex: 1; }
.post-card__meta { display: flex; align-items: center; gap: .8rem; font-size: .82rem; color: var(--muted); margin-bottom: .7rem; }
.post-card__cat { color: var(--pink-dark); font-weight: 700; background: var(--blush); padding: .2rem .6rem; border-radius: var(--pill); }
.post-card__title { font-size: 1.25rem; line-height: 1.25; margin-bottom: .6rem; }
.post-card__title a { color: var(--ink); }
.post-card__title a:hover { color: var(--pink-dark); }
.post-card__excerpt { color: var(--body); font-size: .98rem; margin-bottom: 1.1rem; }
.post-card__more { margin-top: auto; display: inline-flex; align-items: center; gap: .4rem; font-weight: 700; color: var(--pink-dark); font-size: .92rem; }
.post-card:hover .post-card__more .icon { transform: translateX(3px); }
.post-card__more .icon { transition: transform .2s ease; }

/* --------------------------- Page hero ---------------------------- */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blush-warm) 0%, var(--cream) 100%); padding-block: var(--hero-pad); border-bottom: 1px solid var(--line-soft); }
.page-hero__title { font-size: clamp(2rem, 4.5vw, 3rem); position: relative; z-index: 1; }
.page-hero__sub { margin-top: 1rem; color: var(--body); position: relative; z-index: 1; }
.page-hero--compact { padding-block: clamp(1.4rem, 3vw, 2.1rem); }
.section--tight-top { padding-top: clamp(1.3rem, 2.6vw, 1.8rem); }

/* ----------------------------- Prose ------------------------------ */
.prose { color: var(--body); font-size: 1.08rem; }
.prose > * + * { margin-top: 1.25rem; }
.prose h2 { font-size: 1.6rem; margin-top: 2.4rem; color: var(--ink); }
.prose h3 { font-size: 1.3rem; margin-top: 2rem; color: var(--ink); }
.prose p { color: var(--body); }
.prose a { font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose ul, .prose ol { padding-left: 1.3rem; display: flex; flex-direction: column; gap: .5rem; }
.prose ul { list-style: none; padding-left: 0; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .65em; width: 8px; height: 8px; border-radius: 50%; background: var(--pink); }
.prose ol { list-style: decimal; padding-left: 1.4rem; }
.prose blockquote { border-left: 4px solid var(--pink); padding: .4rem 0 .4rem 1.3rem; font-family: var(--font-head); font-size: 1.2rem; color: var(--ink); font-style: italic; }
.prose img { border-radius: var(--r); margin-block: 1.5rem; }
.prose strong { color: var(--ink); }

/* ---------------------------- O nas ------------------------------- */
.section--about-hero, .section--contact-hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blush-warm) 0%, var(--cream) 100%); }
.about-hero__inner, .contact-hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--col-gap); align-items: center; }
.about-hero__media, .contact-hero__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 3; position: relative; z-index: 1; }
.about-hero__img, .contact-hero__img { width: 100%; height: 100%; object-fit: cover; }
/* Kontakt hero — bolj kompakten, manj prazen */
.section--about-hero, .section--contact-hero { padding-block: var(--hero-pad); }
.contact-hero__inner { gap: var(--col-gap); }
.about-hero__content .hero__title, .contact-hero__content .hero__title { font-size: clamp(1.8rem, 3.3vw, 2.55rem); }
.about-hero__content .hero__lead, .contact-hero__content .hero__lead { margin-top: 1rem; max-width: 44ch; }
.about-hero__content .hero__actions, .contact-hero__content .hero__actions { margin-top: 1.6rem; }
.about-hero__media, .contact-hero__media { aspect-ratio: 3 / 2; }

.timeline { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--grid-gap); }
.timeline__item { position: relative; padding: var(--card-pad); background: #fff; border-radius: var(--r-lg); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.timeline__item::before { content: ""; position: absolute; top: 1.8rem; left: 1.6rem; width: 38px; height: 4px; border-radius: 4px; background: linear-gradient(90deg, var(--pink), var(--orange)); }
.timeline__year { display: block; font-family: var(--font-head); font-size: 1.7rem; font-weight: 700; color: var(--pink-dark); margin: 1rem 0 .5rem; }
.timeline__item p { color: var(--body); }

.section--story { background: var(--cream); }
.story__inner { display: grid; grid-template-columns: 1.4fr 1fr; gap: var(--col-gap); align-items: stretch; }
.story__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); min-height: 380px; }
.story__img { display: block; width: 100%; height: 100%; object-fit: cover; object-position: 18% center; }
@media (max-width: 980px) {
    .story__inner { grid-template-columns: 1fr; }
    .story__media { min-height: 0; margin-top: 1.6rem; }
    .story__img { height: auto; }
}
.section--team-full { background: var(--cream); }
.team-cards { display: grid; grid-template-columns: 1fr 1fr; gap: var(--grid-gap); }
.team-member { display: grid; grid-template-columns: minmax(150px, 200px) 1fr; background: #fff; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); }
.team-member__photo { overflow: hidden; background: var(--blush); }
.team-member__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-member__body { padding: var(--card-pad); align-self: center; }
.team-member__role { display: inline-block; font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: var(--orange); margin-bottom: .5rem; }
.team-member__name { font-size: 1.5rem; margin-bottom: .7rem; }
.team-member__body p { color: var(--body); }
@media (max-width: 540px) { .team-member { grid-template-columns: 120px 1fr; } }

/* ---------------------------- Kontakt ----------------------------- */
.info-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--grid-gap); }
.info-card { display: block; background: #fff; border-radius: var(--r-lg); padding: var(--card-pad); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); text-align: left; transition: transform .25s ease, box-shadow .25s ease; }
a.info-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); color: inherit; }
.info-card__icon { display: inline-flex; align-items: center; justify-content: center; width: 54px; height: 54px; border-radius: var(--r-sm); background: linear-gradient(135deg, var(--pink-soft), #fff); color: var(--pink-dark); margin-bottom: 1rem; }
.info-card__title { font-size: 1.15rem; margin-bottom: .4rem; }
.info-card__main { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.info-card__note { color: var(--muted); font-size: .88rem; margin-top: .3rem; }
.info-hours { display: flex; flex-direction: column; gap: .42rem; margin-top: .2rem; width: 100%; }
.info-hours li { display: flex; justify-content: space-between; gap: .8rem; font-size: .9rem; }
.info-hours li span:first-child { color: var(--body); }
.info-hours li span:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.info-hours li span.is-closed { color: var(--muted); font-weight: 500; }

.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: var(--col-gap); align-items: stretch; }
.contact-cta__head { max-width: none; margin-bottom: clamp(1.6rem, 3vw, 2.4rem); }
.contact-cta__actions { display: flex; gap: .8rem; flex-wrap: wrap; margin: 1.6rem 0 2rem; }
.contact-cta .contact-pre { margin-top: 0; }
.contact-form { background: #fff; border-radius: var(--r-lg); padding: var(--card-pad); box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); margin-top: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-field { display: block; margin-bottom: 1.1rem; }
.form-field > span { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .4rem; }
.form-field input, .form-field textarea { width: 100%; padding: .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background: var(--cream); transition: border-color .2s ease, box-shadow .2s ease; }
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(214,58,122,.12); background: #fff; }
.form-field textarea { resize: vertical; }
.form-field span em { font-weight: 500; font-style: normal; color: var(--muted); }
.form-field select { width: 100%; padding: .85rem 2.6rem .85rem 1rem; border: 1.5px solid var(--line); border-radius: var(--r-sm); background-color: var(--cream); color: var(--ink); cursor: pointer; appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235d5158' stroke-width='2' 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 1rem center; transition: border-color .2s ease, box-shadow .2s ease; }
.form-field select:focus { outline: none; border-color: var(--pink); box-shadow: 0 0 0 4px rgba(214, 58, 122, .12); background-color: #fff; }
.form-consent { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--body); margin-bottom: 1.3rem; }
.form-consent input { margin-top: .25rem; accent-color: var(--pink); }
.form-fallback { text-align: center; margin-top: 1rem; font-size: .92rem; color: var(--muted); }

.contact-side { display: flex; }
.contact-map { flex: 1; min-height: 340px; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line-soft); background: var(--blush); }
.contact-map iframe { width: 100%; height: 100%; }
.contact-pre { background: var(--blush); border-radius: var(--r-lg); padding: var(--card-pad); }
.contact-pre h3 { font-size: 1.3rem; margin-bottom: 1.2rem; }
.contact-pre__item { display: flex; gap: .9rem; margin-bottom: 1.2rem; }
.contact-pre__item:last-child { margin-bottom: 0; }
.contact-pre__icon { flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--r-sm); background: #fff; color: var(--pink-dark); box-shadow: var(--shadow-sm); }
.contact-pre__item strong { display: block; color: var(--ink); margin-bottom: .2rem; font-size: 1.02rem; }
.contact-pre__item p { font-size: .94rem; color: var(--body); }

/* --------------------------- Posamezna ---------------------------- */
.single__hero { position: relative; overflow: hidden; background: linear-gradient(180deg, var(--blush-warm) 0%, var(--cream) 100%); padding-block: clamp(2rem, 4vw, 3rem) clamp(.9rem, 1.8vw, 1.3rem); }
.single__hero-inner { margin-top: .3rem; }
.single__hero--media .single__hero-inner { display: grid; grid-template-columns: 1fr clamp(280px, 36%, 440px); gap: clamp(1.6rem, 4vw, 3rem); align-items: center; }
.single__hero--media .service__lead { margin-bottom: 0; }
.single__hero-img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--r-lg); box-shadow: 0 24px 44px -26px rgba(42, 26, 36, .4); display: block; }
@media (max-width: 820px) {
    .single__hero--media .single__hero-inner { grid-template-columns: 1fr; }
    .single__hero-media { max-width: 440px; }
}
.single__back { display: inline-block; font-weight: 600; font-size: .9rem; margin-bottom: 1.2rem; position: relative; z-index: 1; }
.single__meta { display: flex; align-items: center; gap: .9rem; font-size: .85rem; color: var(--muted); margin-bottom: 1rem; position: relative; z-index: 1; flex-wrap: wrap; }
.single__cat { color: var(--pink-dark); font-weight: 700; background: var(--blush); padding: .25rem .7rem; border-radius: var(--pill); }
.single__title { font-size: clamp(1.9rem, 4vw, 3rem); position: relative; z-index: 1; max-width: 28ch; }
.single__cover { margin-top: 0; border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow); }
.single__cover img { display: block; width: 100%; height: clamp(240px, 34vw, 440px); object-fit: cover; }
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .4rem; font-size: .85rem; margin-bottom: 1rem; position: relative; z-index: 1; }
.breadcrumbs a { color: var(--pink-dark); font-weight: 600; }
.breadcrumbs a:hover { color: var(--pink); }
.breadcrumbs__sep { color: var(--muted); opacity: .6; }
.breadcrumbs__current { color: var(--muted); }
.single__share { display: flex; align-items: center; gap: .55rem; margin-top: 2.4rem; padding-top: 1.6rem; border-top: 1px solid var(--line-soft); flex-wrap: wrap; }
.single__share-label { font-weight: 600; color: var(--ink); font-size: .92rem; margin-right: .2rem; }
.share-btn { display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; background: var(--blush); color: var(--pink-dark); transition: background .2s ease, color .2s ease, transform .2s ease; cursor: pointer; border: 0; }
.share-btn:hover { background: var(--pink); color: #fff; transform: translateY(-2px); }
.share-copy.is-copied { background: var(--pink); color: #fff; }
.single__layout { display: grid; grid-template-columns: minmax(0, 760px) minmax(280px, 340px); justify-content: space-between; gap: var(--col-gap); align-items: start; padding-block: clamp(1.5rem, 3vw, 2.1rem) clamp(1.2rem, 2.5vw, 1.8rem); }
.single__main { min-width: 0; }
.single__content { font-size: 1.08rem; }
.single__tags { margin-top: 2rem; display: flex; gap: .5rem; flex-wrap: wrap; align-items: center; font-size: .9rem; }
.single__tags a { background: var(--blush); padding: .3rem .8rem; border-radius: var(--pill); font-weight: 600; }
.single__aside { position: sticky; top: 118px; }
.single__cta-card { background: var(--blush); border-radius: var(--r-lg); padding: var(--card-pad); border: 1px solid var(--line-soft); }
.single__cta-icon { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: var(--r-sm); background: #fff; color: var(--pink-dark); box-shadow: var(--shadow-sm); margin-bottom: 1rem; }
.single__cta-icon .icon { width: 26px; height: 26px; }
.single__cta-card h2 { font-size: 1.35rem; margin-bottom: .5rem; }
.single__cta-card p { color: var(--body); font-size: .96rem; margin-bottom: 1.2rem; }
.single__cta-card .btn { margin-bottom: .6rem; }
.single__cta-hours { margin-top: 1.1rem; padding-top: 1.1rem; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: .5rem; }
.single__cta-hours li { display: flex; justify-content: space-between; gap: .8rem; font-size: .88rem; }
.single__cta-hours li span:first-child { color: var(--body); }
.single__cta-hours li span:last-child { color: var(--ink); font-weight: 600; white-space: nowrap; }
.single__cta-hours li span.is-closed { color: var(--muted); font-weight: 500; }
.single .post-nav { margin-bottom: clamp(2.4rem, 5vw, 3.6rem); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.post-nav__link { padding: 1.2rem 1.4rem; border-radius: var(--r); background: #fff; border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.post-nav__link--next { text-align: right; }
.post-nav__link span { display: block; font-size: .8rem; color: var(--muted); margin-bottom: .3rem; }
.post-nav__link strong { color: var(--ink); font-weight: 600; }
.post-nav__link:hover strong { color: var(--pink-dark); }
@media (max-width: 980px) {
    .single__layout { grid-template-columns: 1fr; gap: 2.4rem; }
    .single__aside { position: static; }
    .single__title { max-width: none; }
    .single__cover img { height: clamp(200px, 48vw, 320px); }
}

/* -------------------------- Paginacija ---------------------------- */
.urt-pagination { margin-top: 3rem; }
.urt-pagination .nav-links { display: flex; gap: .5rem; justify-content: center; flex-wrap: wrap; }
.urt-pagination a, .urt-pagination span { display: inline-flex; align-items: center; justify-content: center; min-width: 44px; height: 44px; padding: 0 .8rem; border-radius: var(--pill); font-weight: 700; background: #fff; border: 1px solid var(--line-soft); color: var(--ink); }
.urt-pagination .current { background: var(--pink); color: #fff; border-color: var(--pink); }
.urt-pagination a:hover { background: var(--blush); color: var(--pink-dark); }

.empty-state { text-align: center; color: var(--muted); padding: 3rem 1rem; font-size: 1.1rem; }
.search-again { max-width: 460px; margin: 1.5rem auto 0; }

/* ------------------------------ 404 ------------------------------- */
.section--404 { position: relative; overflow: hidden; }
.error-404 { text-align: center; }
.error-404__code { font-family: var(--font-head); font-size: clamp(4rem, 14vw, 8rem); font-weight: 700; color: var(--pink); line-height: 1; display: block; margin-bottom: .5rem; }
.error-404 p { max-width: 46ch; margin: 1rem auto 2rem; }
.error-404 .hero__actions { justify-content: center; }

/* ----------------------------- Footer ----------------------------- */
.site-footer { position: relative; overflow: hidden; background: var(--ink); color: rgba(255, 255, 255, .72); }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--pink) 0%, var(--orange) 100%); z-index: 2; }
.site-footer__glow { position: absolute; top: -170px; right: -120px; width: 480px; height: 480px; border-radius: 50%; background: radial-gradient(circle at 30% 30%, rgba(214, 58, 122, .16), transparent 62%); pointer-events: none; z-index: 0; }
.site-footer__grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.7fr 1.1fr 1fr 1fr; gap: var(--col-gap); padding-block: clamp(2.6rem, 4.5vw, 3.8rem); }

.foot-logo { margin-bottom: 1.3rem; }
.foot-logo img, .foot-logo .custom-logo { height: 58px; width: auto; filter: brightness(0) invert(1); opacity: .96; }
.foot-logo .brand-text { color: #fff; }
.foot-tagline { font-size: .97rem; line-height: 1.7; margin-bottom: 1.8rem; max-width: 36ch; color: rgba(255, 255, 255, .66); }
.foot-cta { box-shadow: 0 14px 28px -16px rgba(232, 116, 74, .6); }
.foot-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.foot-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: var(--pill); background: rgba(255, 255, 255, .08); color: #fff; transition: background .2s ease, transform .2s ease; }
.foot-social a:hover { background: var(--pink); transform: translateY(-2px); }
.foot-social .icon { width: 20px; height: 20px; }

.foot-title { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .82rem; letter-spacing: .09em; text-transform: uppercase; opacity: .85; margin-bottom: 1.3rem; }

.foot-list { display: flex; flex-direction: column; gap: 1.05rem; }
.foot-list li { display: flex; align-items: flex-start; gap: .7rem; font-size: .95rem; line-height: 1.45; }
.foot-list .icon { color: var(--orange); margin-top: 2px; flex: 0 0 auto; }
.foot-list a { color: rgba(255, 255, 255, .72); transition: color .2s ease; }
.foot-list a:hover { color: #fff; }

.foot-hours { display: flex; flex-direction: column; gap: .85rem; }
.foot-hours__main { display: flex; align-items: flex-start; gap: .6rem; }
.foot-hours__main .icon { color: var(--orange); margin-top: 3px; flex: 0 0 auto; }
.foot-hours__text { display: flex; flex-direction: column; line-height: 1.4; }
.foot-hours__day { color: #fff; font-weight: 600; font-size: .95rem; }
.foot-hours__time { color: var(--orange); font-weight: 700; font-size: .95rem; }
.foot-note { color: rgba(255, 255, 255, .48); font-size: .82rem; line-height: 1.55; max-width: 30ch; }
.foot-hours-list { display: flex; flex-direction: column; gap: .55rem; margin-bottom: .9rem; }
.foot-hours-list li { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: .9rem; }
.foot-hours-list__day { color: rgba(255, 255, 255, .7); }
.foot-hours-list__time { color: #fff; font-weight: 600; white-space: nowrap; }
.foot-hours-list__time.is-closed { color: rgba(255, 255, 255, .4); font-weight: 500; }

.foot-menu { display: flex; flex-direction: column; gap: .9rem; align-items: flex-start; }
.foot-menu a { color: rgba(255, 255, 255, .72); font-size: .95rem; transition: color .2s ease, transform .2s ease; }
.foot-menu a:hover { color: var(--orange); transform: translateX(4px); }

.site-footer__bottom { position: relative; z-index: 1; border-top: 1px solid rgba(255, 255, 255, .1); }
.site-footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 1.3rem; font-size: .85rem; color: rgba(255, 255, 255, .5); flex-wrap: wrap; }
.site-footer__bottom a { color: rgba(255, 255, 255, .68); transition: color .2s ease; }
.site-footer__bottom a:hover { color: #fff; }
.foot-legal .sep { margin-inline: .5rem; opacity: .4; }

/* --------------------------- Responsive --------------------------- */
@media (max-width: 980px) {
    .hero__inner, .feature__inner, .team__inner, .about-hero__inner, .contact-hero__inner, .contact-grid { grid-template-columns: 1fr; }
    .feature__media { order: -1; }
    .services-grid, .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid, .info-grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: 1fr; }
    .team-cards { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr 1fr; }
    .hero__media { max-width: 460px; margin-inline: auto; }
    .team__photo--b { margin-top: 0; }
    .post-nav { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .site-nav, .site-header__actions { display: none; }
    .nav-toggle { display: flex; margin-left: auto; }
    .topbar__item--mail, .topbar__item--loc { display: none; }
    .topbar__inner { justify-content: center; gap: 1.4rem; }
    .section-head--row { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
    .services-grid, .blog-grid, .values-grid, .info-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .site-footer__grid { grid-template-columns: 1fr; }
    .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
    .team__media { grid-template-columns: 1fr 1fr; }
    .single__footer-cta { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
}

/* ---------------------------- Piškotki ---------------------------- */
.cookie { position: fixed; left: clamp(12px, 2vw, 22px); bottom: clamp(12px, 2vw, 22px); z-index: 1200; width: min(400px, calc(100vw - 24px)); }
.cookie[hidden] { display: none; }
.cookie__card { background: #fff; border-radius: var(--r-lg); box-shadow: 0 24px 60px -20px rgba(42, 26, 36, .4); border: 1px solid var(--line-soft); padding: var(--card-pad); animation: cookie-in .35s ease; }
@keyframes cookie-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.cookie__head { display: flex; align-items: center; gap: .6rem; margin-bottom: .7rem; }
.cookie__emoji { font-size: 1.4rem; line-height: 1; }
.cookie__title { font-size: 1.3rem; }
.cookie__text { font-size: .92rem; color: var(--body); margin-bottom: 1.1rem; line-height: 1.6; }
.cookie__text a { font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.cookie__opts { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1.2rem; }
.cookie__opt { display: flex; align-items: flex-start; gap: .6rem; font-size: .9rem; color: var(--ink); cursor: pointer; }
.cookie__opt input { margin-top: .15rem; width: 18px; height: 18px; accent-color: var(--pink); flex: 0 0 auto; }
.cookie__opt--locked { opacity: .75; cursor: default; }
.cookie__opt strong { font-weight: 700; }
.cookie__actions { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: .6rem; }
.cookie__btn { padding: .78rem 1rem; border-radius: var(--pill); font-weight: 700; font-size: .9rem; transition: transform .15s ease, opacity .2s ease, background .2s ease; }
.cookie__btn:hover { transform: translateY(-1px); }
.cookie__btn--dark { background: var(--ink); color: #fff; }
.cookie__btn--dark:hover { background: #1d1019; }
.cookie__btn--ghost { background: #fff; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.cookie__btn--ghost:hover { box-shadow: inset 0 0 0 1.5px var(--ink); }
.cookie__btn--save { width: 100%; }

.cookie-reopen { position: fixed; left: clamp(12px, 2vw, 22px); bottom: clamp(12px, 2vw, 22px); z-index: 1199; width: 50px; height: 50px; border-radius: 50%; background: var(--ink); color: #fff; box-shadow: 0 12px 28px -10px rgba(42, 26, 36, .55); display: flex; align-items: center; justify-content: center; transition: transform .2s ease, background .2s ease; }
.cookie-reopen[hidden] { display: none; }
.cookie-reopen:hover { transform: translateY(-2px) scale(1.05); background: var(--pink-dark); }
.cookie-reopen svg { width: 26px; height: 26px; }

/* Map placeholder (privolitev) */
.map-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; height: 100%; padding: 1.5rem; gap: .8rem; background: var(--blush); }
.map-placeholder__icon { display: inline-flex; align-items: center; justify-content: center; width: 48px; height: 48px; border-radius: 50%; background: #fff; color: var(--pink-dark); box-shadow: var(--shadow-sm); }
.map-placeholder p { font-size: .92rem; color: var(--body); max-width: 32ch; }
