/* =========================================================
   MAMOMA INTERIJERI — VISUAL REFRESH 2026
   Sloj stilova učitan nakon postojećeg styles.css-a.
   ========================================================= */

:root {
    --color-dark: #1f1c19;
    --color-dark-soft: #2a2521;
    --color-dark-menu: #171411;
    --color-bg: #f4f0ea;
    --color-bg-deep: #ebe4da;
    --color-white: #ffffff;
    --color-surface: #fffdf9;
    --color-text-muted: #6c6259;
    --color-gold: #a66f47;
    --color-gold-light: #d9b98f;
    --color-gold-dark: #7e4e2e;
    --color-line: rgba(31, 28, 25, 0.12);

    --shadow-soft: 0 24px 70px rgba(31, 28, 25, 0.08);
    --shadow-card: 0 28px 80px rgba(31, 28, 25, 0.15);
    --shadow-floating: 0 30px 90px rgba(18, 15, 13, 0.22);

    --radius-small: 12px;
    --radius-medium: 18px;
    --radius-large: 28px;
    --container-width: 1240px;

    --font-body: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    --font-display: "Cormorant Garamond", "Iowan Old Style", Baskerville, Georgia, serif;
}

html {
    scroll-padding-top: 96px;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background:
        radial-gradient(circle at 7% 14%, rgba(166, 111, 71, 0.055), transparent 28rem),
        var(--color-bg);
    font-size: 16px;
    line-height: 1.72;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

::selection {
    color: var(--color-white);
    background: var(--color-gold);
}

img {
    height: auto;
}

h1,
h2,
h3,
.subpage-main-text h2,
.contact-info h2,
.legal-content h2 {
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.025em;
}

h1 em,
h2 em {
    color: var(--color-gold);
    font-weight: 500;
}

.container {
    width: min(var(--container-width), calc(100% - 72px));
}

.section-padding {
    padding: 118px 0;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
}

.section-label::before {
    content: "";
    width: 32px;
    height: 1px;
    background: currentColor;
}

.section-heading {
    max-width: 790px;
    margin-bottom: 58px;
}

.section-heading-split {
    max-width: none;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.62fr);
    align-items: end;
    gap: 80px;
}

.section-heading h2,
.about h2,
.contact-info h2,
.subpage-main-text h2 {
    margin-bottom: 0;
    color: var(--color-dark);
    font-size: clamp(2.65rem, 5.1vw, 4.65rem);
    line-height: 0.98;
}

.section-heading > p:last-child,
.section-heading-split > p,
.about-text > p,
.contact-info > p {
    color: var(--color-text-muted);
    font-size: 1.02rem;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline,
.header-cta,
.mobile-menu-cta {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 23px;
    border-radius: 13px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.025em;
    line-height: 1.1;
    transition:
        transform 220ms ease,
        background-color 220ms ease,
        color 220ms ease,
        border-color 220ms ease,
        box-shadow 220ms ease;
}

.btn-primary {
    background: var(--color-gold);
    box-shadow: 0 12px 28px rgba(126, 78, 46, 0.2);
}

.btn-primary::after,
.btn-outline::after {
    content: "↗";
    font-size: 1.03em;
    transition: transform 220ms ease;
}

.btn-primary:hover,
.btn-outline:hover {
    transform: translateY(-3px);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    box-shadow: 0 18px 36px rgba(126, 78, 46, 0.26);
}

.btn-primary:hover::after,
.btn-outline:hover::after {
    transform: translate(2px, -2px);
}

.btn-secondary {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-3px);
}

.btn-outline {
    border-color: rgba(166, 111, 71, 0.55);
    color: var(--color-gold-dark);
    background: transparent;
}

.btn-outline:hover {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: var(--color-gold);
}

/* =========================================================
   HEADER / NAVIGACIJA
   ========================================================= */

.site-header {
    min-height: 88px;
    background: linear-gradient(180deg, rgba(13, 11, 10, 0.62), rgba(13, 11, 10, 0));
    transition:
        background-color 260ms ease,
        box-shadow 260ms ease,
        border-color 260ms ease,
        min-height 260ms ease;
}

.site-header.scrolled {
    min-height: 76px;
    background: rgba(247, 243, 237, 0.9);
    border-bottom-color: rgba(31, 28, 25, 0.09);
    box-shadow: 0 12px 40px rgba(31, 28, 25, 0.08);
    backdrop-filter: blur(18px) saturate(145%);
}

.header-container {
    min-height: 88px;
    transition: min-height 260ms ease;
}

.site-header.scrolled .header-container {
    min-height: 76px;
}

.logo {
    gap: 12px;
}

.logo-symbol {
    width: 72px;
}

.logo-text {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0.09em;
}

.logo-text strong {
    color: var(--color-gold-light);
    font-weight: 600;
}

.main-nav ul {
    gap: 28px;
}

.main-nav a {
    position: relative;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.main-nav a:not(.header-cta)::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: -8px;
    height: 1px;
    background: currentColor;
    transition: right 220ms ease;
}

.main-nav a:not(.header-cta):hover::after {
    right: 0;
}

.main-nav .header-cta,
.site-header.scrolled .main-nav .header-cta {
    min-height: 42px;
    padding: 11px 17px;
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: none;
}

.site-header.scrolled .main-nav .header-cta {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: var(--color-gold);
}

.main-nav .header-cta:hover {
    color: var(--color-white);
    border-color: var(--color-gold);
    background: var(--color-gold);
    transform: translateY(-2px);
}

/* Prevent the mobile-only CTA from competing with the desktop navigation. */
.mobile-menu-cta {
    display: none;
}

/* =========================================================
   HOME HERO
   ========================================================= */

.home-page .hero {
    position: relative;
    isolation: isolate;
    min-height: min(960px, 94svh);
    overflow: hidden;
    background-image:
        linear-gradient(90deg, rgba(13, 11, 10, 0.84) 0%, rgba(13, 11, 10, 0.64) 38%, rgba(13, 11, 10, 0.14) 72%, rgba(13, 11, 10, 0.08) 100%),
        linear-gradient(180deg, rgba(13, 11, 10, 0.18) 0%, rgba(13, 11, 10, 0.04) 58%, rgba(13, 11, 10, 0.48) 100%),
        url("../images/refresh/home-hero.webp");
    background-position: center 52%;
    background-size: cover;
}

.home-page .hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 76% 40%, transparent 0 18%, rgba(12, 10, 9, 0.08) 55%, rgba(12, 10, 9, 0.24) 100%);
}

.hero-overlay {
    width: 100%;
    min-height: inherit;
    position: relative;
}

.hero-shell {
    min-height: inherit;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    align-items: center;
    gap: 70px;
    padding-top: 118px;
    padding-bottom: 96px;
}

.hero-content {
    max-width: 780px;
    padding-top: 0;
    color: var(--color-white);
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 24px;
    color: var(--color-gold-light);
    font-size: 0.73rem;
    font-weight: 800;
    letter-spacing: 0.19em;
}

.hero-subtitle > span {
    display: inline-block;
    width: 34px;
    height: 1px;
    background: currentColor;
}

.hero h1 {
    max-width: 760px;
    margin-bottom: 28px;
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 6.3vw, 6.35rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.88;
    text-wrap: balance;
}

.hero h1 em {
    display: block;
    color: var(--color-gold-light);
    font-weight: 500;
}

.hero-text {
    max-width: 610px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.04rem;
    line-height: 1.78;
}

.hero-actions {
    gap: 12px;
}

.hero-badges {
    gap: 18px 26px;
    margin-top: 32px;
}

.hero-badges span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border: none;
    border-radius: 0;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    backdrop-filter: none;
    font-size: 0.82rem;
    font-weight: 600;
}

.hero-badges svg {
    width: 16px;
    height: 16px;
    fill: none;
    stroke: var(--color-gold-light);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-project-card {
    width: 100%;
    align-self: end;
    display: grid;
    grid-template-columns: 104px 1fr 24px;
    align-items: center;
    gap: 16px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    color: var(--color-white);
    background: rgba(18, 15, 13, 0.42);
    box-shadow: var(--shadow-floating);
    backdrop-filter: blur(16px) saturate(120%);
    text-decoration: none;
    transition: transform 260ms ease, background-color 260ms ease, border-color 260ms ease;
}

.hero-project-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(18, 15, 13, 0.58);
}

.hero-project-card img {
    width: 104px;
    height: 84px;
    border-radius: 13px;
    object-fit: cover;
}

.hero-project-copy {
    min-width: 0;
}

.hero-project-copy small,
.gallery-card figcaption small {
    display: block;
    margin-bottom: 4px;
    color: var(--color-gold-light);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.hero-project-copy strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.22rem;
    font-weight: 600;
    line-height: 1.1;
}

.hero-project-card > svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: transform 220ms ease;
}

.hero-project-card:hover > svg {
    transform: translate(3px, -3px);
}

.hero-scroll-cue {
    position: absolute;
    left: 50%;
    bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-decoration: none;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.hero-scroll-cue > span {
    width: 22px;
    height: 34px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.42);
    border-radius: 999px;
}

.hero-scroll-cue > span::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    border-radius: 999px;
    background: var(--color-gold-light);
    transform: translateX(-50%);
    animation: mamoma-scroll-cue 1.8s ease-in-out infinite;
}

@keyframes mamoma-scroll-cue {
    0%, 100% { transform: translate(-50%, 0); opacity: 0.45; }
    50% { transform: translate(-50%, 9px); opacity: 1; }
}

/* Trust strip */
.trust-strip {
    position: relative;
    z-index: 15;
    margin-top: -36px;
}

.trust-strip-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid rgba(31, 28, 25, 0.08);
    border-radius: 24px;
    background: rgba(255, 253, 249, 0.96);
    box-shadow: var(--shadow-soft);
    backdrop-filter: blur(16px);
}

.trust-item {
    min-height: 116px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 27px;
    border-right: 1px solid rgba(31, 28, 25, 0.09);
}

.trust-item:last-child {
    border-right: none;
}

.trust-item > svg {
    width: 32px;
    height: 32px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--color-gold);
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.trust-item strong,
.trust-item small {
    display: block;
}

.trust-item strong {
    margin-bottom: 4px;
    font-size: 0.88rem;
    line-height: 1.25;
}

.trust-item small {
    color: var(--color-text-muted);
    font-size: 0.73rem;
    line-height: 1.45;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
    padding-top: 140px;
    background:
        linear-gradient(180deg, rgba(244, 240, 234, 0) 0%, rgba(235, 228, 218, 0.42) 100%);
}

.about-grid {
    grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
    gap: 96px;
}

.about-text h2 {
    margin-bottom: 30px;
}

.about-lead {
    margin-bottom: 22px;
    color: var(--color-dark) !important;
    font-family: var(--font-display);
    font-size: clamp(1.42rem, 2.3vw, 1.9rem) !important;
    line-height: 1.25;
}

.about-text > p:not(.section-label):not(.about-lead) {
    max-width: 590px;
}

.about-points {
    display: grid;
    gap: 0;
    margin-top: 38px;
    border-top: 1px solid var(--color-line);
}

.about-points span {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 15px 0;
    border-bottom: 1px solid var(--color-line);
    color: var(--color-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.about-points strong {
    color: var(--color-gold);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
}

.about-visual {
    min-height: 700px;
    position: relative;
}

.about-image-main,
.about-image-detail {
    position: absolute;
    overflow: hidden;
    margin: 0;
    border-radius: 24px;
    box-shadow: var(--shadow-card);
}

.about-image-main {
    top: 0;
    right: 0;
    width: 76%;
    height: 620px;
}

.about-image-detail {
    left: 0;
    bottom: 0;
    width: 42%;
    height: 340px;
    border: 8px solid var(--color-bg);
}

.about-image-main img,
.about-image-detail img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.about-image-main img {
    object-position: center 55%;
}

.about-image-detail img {
    object-position: 57% center;
}

.about-image-detail::after,
.gallery-card::after,
.specialization-card::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 48%, rgba(15, 13, 11, 0.5) 100%);
}

.about-image-detail figcaption {
    position: absolute;
    z-index: 2;
    left: 20px;
    bottom: 18px;
    color: var(--color-white);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.about-card {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 3;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    color: var(--color-white);
    background: rgba(31, 28, 25, 0.94);
    box-shadow: var(--shadow-floating);
    backdrop-filter: blur(12px);
}

.about-card-mark {
    width: 48px;
    height: 48px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 1px solid rgba(217, 185, 143, 0.42);
    border-radius: 50%;
    color: var(--color-gold-light);
    font-family: var(--font-display);
    font-size: 1.55rem;
}

.about-card h3 {
    margin-bottom: 4px;
    color: var(--color-white);
    font-size: 1.22rem;
    line-height: 1.1;
}

.about-card p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.75rem;
    line-height: 1.5;
}

/* =========================================================
   SERVICES
   ========================================================= */

.services {
    background: var(--color-surface);
}

.services-grid {
    grid-template-columns: minmax(0, 1.28fr) minmax(320px, 0.72fr);
    grid-template-rows: repeat(2, minmax(265px, 1fr));
    gap: 20px;
}

.service-card {
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 34px;
    border: 1px solid rgba(31, 28, 25, 0.09);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(244, 240, 234, 0.78));
    box-shadow: none;
    transition: transform 260ms ease, box-shadow 260ms ease, border-color 260ms ease;
}

.service-card::before {
    content: none;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: rgba(166, 111, 71, 0.24);
    box-shadow: var(--shadow-card);
}

.service-card-featured {
    grid-row: 1 / span 2;
    min-height: 550px;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--color-white);
    border: none;
    background-image:
        linear-gradient(180deg, rgba(16, 14, 12, 0.05) 15%, rgba(16, 14, 12, 0.74) 100%),
        var(--service-image);
    background-position: center;
    background-size: cover;
    box-shadow: 0 26px 60px rgba(31, 28, 25, 0.14);
}

.service-card-featured::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: inherit;
    pointer-events: none;
}

.service-card-content {
    max-width: 540px;
}

.service-number {
    position: absolute;
    top: 28px;
    right: 30px;
    color: rgba(31, 28, 25, 0.32);
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
}

.service-card-featured .service-number {
    color: rgba(255, 255, 255, 0.66);
}

.service-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 26px;
    border: 1px solid rgba(166, 111, 71, 0.24);
    border-radius: 16px;
    color: var(--color-gold);
    background: rgba(166, 111, 71, 0.08);
}

.service-card-featured .service-icon {
    color: var(--color-gold-light);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.service-icon svg {
    width: 26px;
    height: 26px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.45;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: clamp(1.7rem, 2.7vw, 2.25rem);
    line-height: 1.02;
}

.service-card-featured h3 {
    color: var(--color-white);
    font-size: clamp(2.6rem, 4.4vw, 4rem);
}

.service-card p {
    color: var(--color-text-muted);
    line-height: 1.68;
}

.service-card-featured p {
    max-width: 530px;
    color: rgba(255, 255, 255, 0.78);
}

/* =========================================================
   CTA
   ========================================================= */

.cta-section {
    position: relative;
    overflow: hidden;
    margin: 0 24px;
    padding: 88px 0;
    border-radius: 30px;
    background:
        radial-gradient(circle at 90% 20%, rgba(217, 185, 143, 0.16), transparent 23rem),
        linear-gradient(120deg, #171411 0%, #2b2520 100%);
}

.cta-section::before,
.cta-section::after {
    content: "";
    position: absolute;
    border: 1px solid rgba(217, 185, 143, 0.12);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::before {
    width: 440px;
    height: 440px;
    right: -120px;
    top: -250px;
}

.cta-section::after {
    width: 270px;
    height: 270px;
    right: -42px;
    top: -170px;
}

.cta-container {
    position: relative;
    z-index: 1;
    gap: 64px;
}

.cta-container h2 {
    max-width: 820px;
    margin-bottom: 18px;
    font-size: clamp(2.45rem, 5vw, 4.65rem);
    line-height: 0.98;
}

.cta-container p {
    color: rgba(255, 255, 255, 0.68);
}

.cta-container > .btn-primary {
    flex: 0 0 auto;
    background: var(--color-white);
    color: var(--color-dark);
    box-shadow: none;
}

.cta-container > .btn-primary:hover {
    color: var(--color-white);
    background: var(--color-gold);
}

/* =========================================================
   FEATURES — DARK EDITORIAL PANEL
   ========================================================= */

.features {
    background: var(--color-bg);
}

.features > .container {
    padding: 76px;
    border-radius: 32px;
    background:
        radial-gradient(circle at 12% 0%, rgba(166, 111, 71, 0.17), transparent 24rem),
        var(--color-dark);
    box-shadow: var(--shadow-soft);
}

.features .section-heading h2,
.features .feature-card h3 {
    color: var(--color-white);
}

.features .section-heading > p:last-child {
    color: rgba(255, 255, 255, 0.62);
}

.features .section-label {
    color: var(--color-gold-light);
}

.features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0 44px;
    counter-reset: mamoma-feature;
}

.feature-card {
    counter-increment: mamoma-feature;
    min-height: 205px;
    position: relative;
    padding: 30px 48px 22px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
}

.feature-card::before {
    content: "";
    position: static;
    display: block;
    width: 8px;
    height: 8px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: var(--color-gold-light);
    transform: none;
}

.feature-card::after {
    content: "0" counter(mamoma-feature);
    position: absolute;
    top: 25px;
    right: 0;
    color: rgba(255, 255, 255, 0.22);
    font-family: var(--font-display);
    font-size: 1.18rem;
}

.feature-card:hover::before {
    transform: none;
}

.feature-card h3 {
    margin-bottom: 12px;
    font-size: 1.62rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.92rem;
}

/* =========================================================
   PROCESS — TIMELINE
   ========================================================= */

.process {
    background: var(--color-surface);
}

.process-grid {
    position: relative;
    grid-template-columns: repeat(5, 1fr);
    gap: 28px;
}

.process-grid::before {
    content: "";
    position: absolute;
    top: 31px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(166, 111, 71, 0.45) 10%, rgba(166, 111, 71, 0.45) 90%, transparent);
}

.process-step {
    min-width: 0;
    padding: 0 10px;
    border: none;
    border-radius: 0;
    background: transparent;
    text-align: center;
    overflow: visible;
}

.process-step::before {
    content: none;
}

.process-number {
    width: 64px;
    height: 64px;
    position: relative;
    z-index: 1;
    margin-bottom: 26px;
    color: var(--color-gold);
    border: 1px solid rgba(166, 111, 71, 0.34);
    background: var(--color-surface);
    box-shadow: 0 12px 30px rgba(31, 28, 25, 0.08);
}

.process-number small {
    color: var(--color-text-muted);
}

.process-step h3 {
    font-size: 1.42rem;
}

.process-step p {
    font-size: 0.87rem;
    line-height: 1.65;
}

/* =========================================================
   SPACE TYPES — EDITORIAL LIST
   ========================================================= */

.spaces {
    background: var(--color-bg);
}

.spaces-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0 72px;
    counter-reset: mamoma-space;
}

.space-card {
    counter-increment: mamoma-space;
    min-height: 0;
    position: relative;
    padding: 31px 14px 34px 82px;
    border: none;
    border-top: 1px solid var(--color-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    overflow: visible;
    transition: padding-left 220ms ease;
}

.space-card::before {
    content: "0" counter(mamoma-space);
    position: absolute;
    top: 32px;
    left: 0;
    width: auto;
    color: var(--color-gold);
    background: none;
    font-family: var(--font-display);
    font-size: 1.2rem;
    transform: none;
}

.space-card:hover {
    padding-left: 90px;
    transform: none;
    box-shadow: none;
}

.space-card:hover::before {
    transform: none;
}

.space-card h3 {
    margin-bottom: 8px;
    font-size: 1.72rem;
}

.space-card p {
    max-width: 490px;
    font-size: 0.92rem;
}

/* =========================================================
   SPECIALIZATIONS — IMAGE-LED CARDS
   ========================================================= */

.specializations {
    background: var(--color-surface);
}

.specializations-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

.specialization-card {
    min-height: 390px;
    position: relative;
    isolation: isolate;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
    border: none;
    border-radius: 24px;
    color: var(--color-white);
    background-image:
        linear-gradient(180deg, rgba(16, 14, 12, 0.04) 20%, rgba(16, 14, 12, 0.82) 100%),
        var(--card-image);
    background-position: center;
    background-size: 104%;
    box-shadow: none;
    overflow: hidden;
    transition: transform 280ms ease, background-size 500ms ease, box-shadow 280ms ease;
}

.specialization-card:nth-child(1),
.specialization-card:nth-child(4) {
    grid-column: span 7;
}

.specialization-card:nth-child(2),
.specialization-card:nth-child(3) {
    grid-column: span 5;
}

.specialization-card:nth-child(5),
.specialization-card:nth-child(6) {
    grid-column: span 6;
    min-height: 330px;
}

.specialization-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    width: auto;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: inherit;
    background: none;
    transform: none;
    pointer-events: none;
}

.specialization-card::after {
    z-index: -1;
    background: linear-gradient(180deg, transparent 38%, rgba(13, 11, 10, 0.58) 74%, rgba(13, 11, 10, 0.88) 100%);
}

.specialization-card:hover {
    transform: translateY(-7px);
    background-size: 111%;
    box-shadow: var(--shadow-card);
}

.specialization-card:hover::before {
    transform: none;
}

.specialization-card h3,
.specialization-card p,
.specialization-card .card-more {
    position: relative;
    z-index: 2;
}

.specialization-card h3 {
    margin-bottom: 9px;
    color: var(--color-white);
    font-size: clamp(1.9rem, 3vw, 2.55rem);
    line-height: 1;
}

.specialization-card p {
    max-width: 570px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.87rem;
    line-height: 1.55;
}

.specialization-card .card-more {
    margin-top: 18px;
    color: var(--color-gold-light);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.specialization-card .card-more::after {
    content: " ↗";
}

/* =========================================================
   GALLERY — BENTO
   ========================================================= */

.gallery {
    background: var(--color-bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 278px;
    gap: 18px;
}

.gallery-link {
    min-width: 0;
    border-radius: 24px;
}

.gallery-link:nth-child(1) {
    grid-column: span 7;
    grid-row: span 2;
}

.gallery-link:nth-child(2),
.gallery-link:nth-child(3) {
    grid-column: span 5;
}

.gallery-link:nth-child(4) {
    grid-column: span 5;
}

.gallery-link:nth-child(5) {
    grid-column: span 7;
}

.gallery-card {
    min-height: 0;
    height: 100%;
    border-radius: 24px;
    box-shadow: 0 18px 50px rgba(31, 28, 25, 0.08);
}

.gallery-card::after {
    z-index: 1;
    background: linear-gradient(180deg, rgba(13, 11, 10, 0.02) 22%, rgba(13, 11, 10, 0.72) 100%);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
    transition: transform 650ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 350ms ease;
}

.gallery-link:nth-child(1) img {
    object-position: center 55%;
}

.gallery-card:hover img {
    transform: scale(1.035);
    filter: none;
}

.gallery-card figcaption {
    left: 28px;
    right: 70px;
    bottom: 26px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    color: var(--color-white);
    font-size: 1rem;
}

.gallery-card figcaption span {
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.5vw, 2.25rem);
    font-weight: 600;
    line-height: 1;
}

.gallery-card figcaption::after {
    content: "↗";
    position: absolute;
    right: -40px;
    bottom: 2px;
    font-family: var(--font-body);
    font-size: 1.25rem;
    transition: transform 220ms ease;
}

.gallery-link:hover figcaption::after {
    transform: translate(3px, -3px);
}

.gallery-actions {
    margin-top: 40px;
    text-align: center;
}

/* =========================================================
   FAQ / QUOTE / CONTACT / FOOTER
   ========================================================= */

.faq {
    background: var(--color-surface);
}

.faq-list {
    gap: 10px;
}

.faq-item {
    padding: 0;
    border: 1px solid rgba(31, 28, 25, 0.1);
    border-radius: 16px;
    background: var(--color-bg);
    overflow: hidden;
}

.faq-item summary {
    position: relative;
    padding: 22px 64px 22px 24px;
    list-style: none;
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(166, 111, 71, 0.34);
    border-radius: 50%;
    color: var(--color-gold);
    font-family: var(--font-body);
    font-size: 1.1rem;
    transform: translateY(-50%);
}

.faq-item[open] summary::after {
    content: "−";
}

.faq-item p {
    max-width: 850px;
    margin: 0;
    padding: 0 64px 24px 24px;
}

.quote-prep,
.contact {
    background: var(--color-bg);
}

.contact {
    background: var(--color-surface);
}

.contact-form,
.quote-note,
.quote-checklist-item,
.subpage-side-card {
    border-radius: 20px;
}

.contact-form {
    padding: 42px;
    border-color: rgba(31, 28, 25, 0.1);
    background: var(--color-bg);
    box-shadow: 0 20px 60px rgba(31, 28, 25, 0.06);
}

.form-group input,
.form-group textarea,
.form-group select {
    min-height: 52px;
    border-radius: 12px;
    border-color: rgba(31, 28, 25, 0.14);
    background: var(--color-surface);
}

.form-group textarea {
    min-height: 156px;
}

.site-footer {
    padding: 42px 0;
    background:
        radial-gradient(circle at 90% 0%, rgba(166, 111, 71, 0.16), transparent 22rem),
        var(--color-dark);
}

.footer-container {
    font-size: 0.78rem;
    letter-spacing: 0.015em;
}

/* =========================================================
   SUBPAGES / LEGAL PAGES
   ========================================================= */

.subpage-hero {
    min-height: 78svh;
    padding: 150px 0 96px;
    background-size: cover;
    background-position: center;
}

.subpage-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(90deg, rgba(13, 11, 10, 0.18), transparent 58%);
}

.subpage-hero {
    position: relative;
    isolation: isolate;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
}

.subpage-hero h1 {
    margin-bottom: 26px;
    font-family: var(--font-display);
    font-size: clamp(3.4rem, 6.5vw, 6rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.9;
}

.subpage-hero p:not(.hero-subtitle) {
    color: rgba(255, 255, 255, 0.78);
}

.subpage-layout {
    gap: 74px;
}

.subpage-side-card {
    border-color: rgba(31, 28, 25, 0.1);
    background: var(--color-surface);
}

.category-gallery-card,
.category-gallery-card img {
    border-radius: 20px;
}

/* Fix svih mobilnih hero prikaza: bez sivih/praznih zona. */
@media (max-width: 992px) {
    .hero,
    .subpage-hero,
    .kuhinje-hero,
    .dnevni-hero,
    .ormari-hero,
    .kupaonice-hero,
    .poslovni-hero {
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 1180px) {
    .container {
        width: min(var(--container-width), calc(100% - 48px));
    }

    .main-nav ul {
        gap: 19px;
    }

    .main-nav a {
        font-size: 0.72rem;
    }

    .hero-shell {
        grid-template-columns: minmax(0, 1fr) 320px;
        gap: 44px;
    }

    .trust-strip-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-item:nth-child(2) {
        border-right: none;
    }

    .trust-item:nth-child(-n + 2) {
        border-bottom: 1px solid rgba(31, 28, 25, 0.09);
    }

    .about-grid {
        grid-template-columns: minmax(0, 0.9fr) minmax(440px, 1.1fr);
        gap: 60px;
    }

    .features > .container {
        padding: 60px;
    }

    .process-grid {
        grid-template-columns: repeat(5, minmax(150px, 1fr));
        overflow-x: auto;
        padding-bottom: 16px;
        scroll-snap-type: x proximity;
    }

    .process-step {
        scroll-snap-align: start;
    }

    .process-grid::before {
        left: 55px;
        right: 55px;
    }
}

@media (max-width: 1100px) {
    .site-header,
    .header-container,
    .site-header.scrolled,
    .site-header.scrolled .header-container {
        min-height: 72px;
    }

    .logo-symbol {
        width: 58px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        position: fixed;
        top: 72px;
        left: 0;
        width: 100%;
        height: calc(100svh - 72px);
        min-height: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
        padding: 28px 24px max(32px, env(safe-area-inset-bottom));
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        background:
            radial-gradient(circle at 100% 0%, rgba(166, 111, 71, 0.2), transparent 18rem),
            var(--color-dark-menu);
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-16px);
        pointer-events: none;
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
    }

    .main-nav.is-open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
    }

    .main-nav ul {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a,
    .site-header.scrolled .main-nav a {
        display: block;
        width: 100%;
        padding: 15px 0;
        color: var(--color-white);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        font-size: 0.86rem;
        letter-spacing: 0.05em;
    }

    .main-nav a:hover,
    .site-header.scrolled .main-nav a:hover {
        color: var(--color-gold-light);
    }

    .main-nav a:not(.header-cta)::after {
        display: none;
    }

    .desktop-nav-cta {
        display: none;
    }

    .mobile-menu-cta {
        display: block;
        flex-shrink: 0;
        width: 100%;
        min-height: 50px;
        margin-top: auto;
        padding: 14px 18px !important;
        color: var(--color-white) !important;
        border: 0 !important;
        border-radius: 12px;
        background: var(--color-gold);
    }

    body.menu-open {
        overflow: hidden;
    }
}

@media (max-width: 992px) {
    .section-padding {
        padding: 96px 0;
    }

    .section-heading-split {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .section-heading-split > p {
        max-width: 650px;
    }

    .home-page .hero {
        min-height: 920px;
        text-align: left;
        align-items: stretch;
        padding: 0;
        background-image:
            linear-gradient(90deg, rgba(13, 11, 10, 0.78), rgba(13, 11, 10, 0.3) 70%),
            linear-gradient(180deg, rgba(13, 11, 10, 0.1), rgba(13, 11, 10, 0.62)),
            url("../images/refresh/home-hero.webp");
        background-size: cover;
        background-position: center;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 38px;
        padding-top: 138px;
        padding-bottom: 90px;
    }

    .hero-content {
        margin: 0;
    }

    .hero-actions,
    .hero-badges {
        justify-content: flex-start;
    }

    .hero-project-card {
        width: min(360px, 100%);
        align-self: auto;
    }

    .hero-scroll-cue {
        display: none;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 52px;
    }

    .about-text > p:not(.section-label) {
        max-width: 720px;
    }

    .about-visual {
        width: min(720px, 100%);
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .service-card-featured {
        grid-column: 1 / -1;
        grid-row: auto;
        min-height: 520px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .spaces-grid {
        gap: 0 40px;
    }

    .specialization-card:nth-child(n) {
        grid-column: span 6;
        min-height: 360px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 320px;
    }

    .gallery-link:nth-child(n) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-link:nth-child(1) {
        grid-column: 1 / -1;
        min-height: 500px;
    }

    .cta-section {
        margin: 0 18px;
    }

    .cta-container {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    html {
        scroll-padding-top: 76px;
    }

    body {
        font-size: 15px;
    }

    .container {
        width: min(var(--container-width), calc(100% - 32px));
    }

    .section-padding {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 42px;
    }

    .section-heading h2,
    .about h2,
    .contact-info h2,
    .subpage-main-text h2 {
        font-size: clamp(2.5rem, 12vw, 3.65rem);
        line-height: 0.98;
    }

    .site-header,
    .header-container,
    .site-header.scrolled .header-container {
        min-height: 72px;
    }

    .site-header.scrolled {
        min-height: 72px;
    }

    .logo-symbol {
        width: 58px;
    }

    .logo-text {
        font-size: 0.8rem;
    }

    .main-nav {
        top: 72px;
        height: calc(100svh - 72px);
        min-height: 0;
        overflow-y: auto;
        padding: 28px 24px max(32px, env(safe-area-inset-bottom));
        background:
            radial-gradient(circle at 100% 0%, rgba(166, 111, 71, 0.2), transparent 18rem),
            var(--color-dark-menu);
    }

    .main-nav a,
    .site-header.scrolled .main-nav a {
        padding: 15px 0;
        font-size: 0.86rem;
        letter-spacing: 0.05em;
    }

    .main-nav a:not(.header-cta)::after {
        display: none;
    }

    .desktop-nav-cta {
        display: none;
    }

    .mobile-menu-cta {
        display: inline-flex;
        flex-shrink: 0;
        min-height: 50px;
        margin-top: auto;
        border-radius: 12px;
    }

    .home-page .hero {
        min-height: 100svh;
        padding: 0;
        text-align: left;
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.24) 0%, rgba(13, 11, 10, 0.54) 54%, rgba(13, 11, 10, 0.9) 100%),
            url("../images/refresh/home-hero-mobile.webp");
        background-size: cover;
        background-position: center 56%;
        background-color: var(--color-dark);
    }

    .hero-shell {
        min-height: 100svh;
        align-content: end;
        gap: 28px;
        padding-top: 112px;
        padding-bottom: 48px;
    }

    .hero-subtitle {
        font-size: 0.65rem;
        letter-spacing: 0.15em;
    }

    .hero h1 {
        max-width: 620px;
        margin-bottom: 22px;
        font-size: clamp(3.35rem, 15vw, 5rem);
        line-height: 0.85;
    }

    .hero-text {
        margin-bottom: 26px;
        font-size: 0.92rem;
        line-height: 1.65;
    }

    .hero-actions {
        justify-content: flex-start;
        gap: 10px;
    }

    .hero-badges {
        justify-content: flex-start;
        gap: 10px 18px;
        margin-top: 23px;
    }

    .hero-project-card {
        display: none;
    }

    .trust-strip {
        margin-top: 0;
        padding: 18px 0 0;
        background: var(--color-bg);
    }

    .trust-strip-grid {
        grid-template-columns: 1fr;
        border-radius: 18px;
    }

    .trust-item,
    .trust-item:nth-child(n) {
        min-height: 88px;
        padding: 18px 20px;
        border-right: none;
        border-bottom: 1px solid rgba(31, 28, 25, 0.09);
    }

    .trust-item:last-child {
        border-bottom: none;
    }

    .trust-item > svg {
        width: 28px;
        height: 28px;
    }

    .about {
        padding-top: 88px;
    }

    .about-visual {
        min-height: 570px;
    }

    .about-image-main {
        width: 84%;
        height: 500px;
    }

    .about-image-detail {
        width: 46%;
        height: 260px;
        border-width: 5px;
    }

    .about-card {
        right: 0;
        bottom: 8px;
        max-width: 315px;
        padding: 18px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card,
    .service-card-featured {
        min-height: 310px;
        padding: 28px;
    }

    .service-card-featured {
        min-height: 480px;
    }

    .cta-section {
        margin: 0 10px;
        padding: 68px 0;
        border-radius: 24px;
    }

    .features > .container {
        width: calc(100% - 20px);
        padding: 48px 24px;
        border-radius: 24px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        min-height: 0;
        padding-bottom: 28px;
    }

    .process-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 0;
        overflow: visible;
        padding-left: 70px;
    }

    .process-grid::before {
        top: 14px;
        bottom: 16px;
        left: 31px;
        right: auto;
        width: 1px;
        height: auto;
        background: rgba(166, 111, 71, 0.34);
    }

    .process-step,
    .process-step:last-child {
        grid-column: auto;
        min-height: 150px;
        position: relative;
        padding: 0 0 34px;
        text-align: left;
    }

    .process-number {
        position: absolute;
        top: 0;
        left: -70px;
        width: 62px;
        height: 62px;
        margin: 0;
    }

    .spaces-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .space-card {
        padding-right: 0;
    }

    .specializations-grid {
        grid-template-columns: 1fr;
    }

    .specialization-card:nth-child(n) {
        grid-column: auto;
        min-height: 390px;
        padding: 26px;
        background-size: cover;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .gallery-link:nth-child(n),
    .gallery-link:nth-child(1) {
        grid-column: auto;
        min-height: 0;
        height: 360px;
    }

    .gallery-link:nth-child(1) {
        height: 480px;
    }

    .gallery-card figcaption {
        left: 22px;
        bottom: 22px;
    }

    .contact-form {
        padding: 28px 22px;
    }

    .subpage-hero {
        min-height: 88svh;
        padding: 125px 0 70px;
        text-align: left;
        align-items: flex-end;
    }

    .subpage-hero h1 {
        font-size: clamp(3.2rem, 14vw, 4.7rem);
    }

    .breadcrumb-on-hero {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .container {
        width: min(var(--container-width), calc(100% - 24px));
    }

    .logo-symbol {
        width: 48px;
    }

    .logo-text {
        font-size: 0.72rem;
        letter-spacing: 0.06em;
    }

    .hero h1 {
        font-size: clamp(3rem, 16vw, 4.25rem);
    }

    .hero-actions {
        width: 100%;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
    }

    .hero-badges span {
        width: calc(50% - 9px);
        font-size: 0.73rem;
    }

    .about-visual {
        min-height: 510px;
    }

    .about-image-main {
        width: 90%;
        height: 445px;
    }

    .about-image-detail {
        width: 48%;
        height: 220px;
    }

    .about-card {
        width: 84%;
        max-width: none;
    }

    .about-card-mark {
        display: none;
    }

    .service-card-featured {
        min-height: 430px;
    }

    .specialization-card:nth-child(n) {
        min-height: 350px;
    }

    .gallery-link:nth-child(n) {
        height: 330px;
    }

    .gallery-link:nth-child(1) {
        height: 410px;
    }

    .faq-item summary {
        padding-left: 20px;
        font-size: 1.18rem;
    }

    .faq-item p {
        padding-left: 20px;
        padding-right: 28px;
    }
}

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

/* Portrait art direction for category heroes on tablets and phones. */
@media (max-width: 992px) {
    .kuhinje-hero {
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.48) 54%, rgba(13, 11, 10, 0.88) 100%),
            url("../images/kuhinje/kuhinje-hero-v2-mobile.webp");
    }

    .dnevni-hero {
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.48) 54%, rgba(13, 11, 10, 0.88) 100%),
            url("../images/dnevniboravci/dnevni-hero-v2-mobile.webp");
    }

    .ormari-hero {
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.48) 54%, rgba(13, 11, 10, 0.88) 100%),
            url("../images/ormari/ormari-hero-v2-mobile.webp");
    }

    .kupaonice-hero {
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.48) 54%, rgba(13, 11, 10, 0.88) 100%),
            url("../images/kupaonice/kupaonice-hero-v2-mobile.webp");
    }

    .poslovni-hero {
        background-image:
            linear-gradient(180deg, rgba(13, 11, 10, 0.22) 0%, rgba(13, 11, 10, 0.48) 54%, rgba(13, 11, 10, 0.88) 100%),
            url("../images/poslovniprostori/poslovni-hero-v2-mobile.webp");
    }
}
