:root {
    --espresso: #1b1512;
    --deep-brown: #2a211d;
    --champagne: #c9a96e;
    --ivory: #f4efe7;
    --soft-ivory: #ddd3c6;
    --line: rgba(244, 239, 231, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--espresso);
    color: var(--ivory);
    font-family: "Manrope", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

/* HEADER */

.site-header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;

    width: 100%;
    height: 96px;
    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-bottom: 1px solid var(--line);
}

.logo {
    flex-shrink: 0;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.35rem;
    font-weight: 500;
    letter-spacing: 0.22em;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    position: relative;

    color: var(--soft-ivory);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--champagne);

    transition: width 0.35s ease;
}

.nav a:hover::after {
    width: 100%;
}

.header-actions,
.language-switcher {
    display: flex;
    align-items: center;
}

.header-actions {
    flex-shrink: 0;
    gap: 24px;
}

.language-switcher {
    gap: 7px;

    color: rgba(244, 239, 231, 0.4);
    font-size: 0.66rem;
    letter-spacing: 0.12em;
}

.lang-btn {
    border: 0;
    background: transparent;

    color: rgba(244, 239, 231, 0.5);
    cursor: pointer;

    transition: color 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    color: var(--champagne);
}

.header-button {
    padding: 13px 20px;

    border: 1px solid rgba(201, 169, 110, 0.75);

    font-size: 0.66rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.header-button:hover {
    background: var(--champagne);
    color: var(--espresso);
}

/* HERO */

.hero {
    min-height: 100vh;

    display: grid;
    grid-template-columns: 42% 58%;
}

.hero-content {
    min-height: 100vh;
    padding: 165px 10% 55px 14%;

    display: flex;
    flex-direction: column;
    justify-content: center;

    background:
        radial-gradient(
            circle at 20% 25%,
            rgba(201, 169, 110, 0.09),
            transparent 34%
        ),
        var(--espresso);
}

.hero-eyebrow {
    margin-bottom: 30px;

    color: var(--champagne);
    font-size: 0.7rem;
    letter-spacing: 0.28em;
    text-transform: uppercase;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 6.5vw, 7.3rem);
    font-weight: 400;
    line-height: 0.82;
    letter-spacing: -0.04em;
}

.hero h1 span {
    display: block;
}

.hero-description {
    max-width: 430px;
    margin-top: 40px;

    color: var(--soft-ivory);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
}

.hero-button {
    width: fit-content;
    margin-top: 36px;
    padding: 17px 22px;

    display: flex;
    align-items: center;
    gap: 38px;

    border: 1px solid var(--champagne);

    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;

    transition:
        background 0.35s ease,
        color 0.35s ease;
}

.hero-button:hover {
    background: var(--champagne);
    color: var(--espresso);
}

.hero-details {
    margin-top: auto;
    padding-top: 50px;

    display: flex;
    justify-content: space-between;
    gap: 20px;

    color: rgba(244, 239, 231, 0.52);
    font-size: 0.61rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

/* HERO SLIKA */

.hero-visual {
    position: relative;
    min-height: 100vh;
    padding: 135px 8% 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 65% 45%,
            rgba(201, 169, 110, 0.12),
            transparent 32%
        ),
        #211a17;

    overflow: hidden;
}

.decorative-line {
    position: absolute;
    top: 17%;
    right: 4%;

    width: 72%;
    height: 72%;

    border: 1px solid rgba(201, 169, 110, 0.18);
    transform: translate(25px, -18px);
}

.image-frame {
    position: relative;
    z-index: 2;

    width: min(78%, 600px);
    height: 72vh;
    min-height: 530px;

    overflow: hidden;

    border: 1px solid rgba(201, 169, 110, 0.55);

    box-shadow:
        0 28px 70px rgba(0, 0, 0, 0.48),
        0 0 70px rgba(201, 169, 110, 0.07);
}

.image-frame img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    transform: scale(1.02);
    transition: transform 1.2s ease;
}

.image-frame:hover img {
    transform: scale(1.06);
}

.image-shade {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(27, 21, 18, 0.04),
            transparent 55%,
            rgba(27, 21, 18, 0.7)
        );
}

.image-number {
    position: absolute;
    top: 24px;
    left: 26px;

    color: var(--champagne);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
}

.image-caption {
    position: absolute;
    left: 28px;
    bottom: 27px;
}

.image-caption span {
    color: var(--champagne);
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.image-caption p {
    margin-top: 6px;

    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
    letter-spacing: 0.04em;
}

.visual-note {
    position: absolute;
    z-index: 3;
    right: 5%;
    bottom: 6%;

    color: rgba(244, 239, 231, 0.55);
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-style: italic;
    letter-spacing: 0.04em;
}

/* O SALONU */

.about {
    position: relative;
    min-height: 82vh;
    padding: 120px 8%;

    display: grid;
    grid-template-columns: 12% 44% 44%;
    align-items: start;

    background: var(--ivory);
    color: var(--espresso);

    border-top: 1px solid rgba(201, 169, 110, 0.35);
}

.about-number {
    padding-top: 13px;

    color: var(--champagne);
    font-size: 0.68rem;
    letter-spacing: 0.16em;
}

.section-label {
    margin-bottom: 25px;

    color: #98784a;
    font-size: 0.68rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
}

.about-heading {
    padding-right: 12%;
}

.about-heading h2 {
    max-width: 620px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.6rem, 6vw, 6.8rem);
    font-weight: 400;
    line-height: 0.93;
    letter-spacing: -0.04em;
}

.about-content {
    max-width: 520px;
    padding-top: 58px;
    padding-left: 12%;

    border-left: 1px solid rgba(27, 21, 18, 0.18);
}

.about-intro {
    margin-bottom: 28px;

    font-family: "Cormorant Garamond", serif;
    font-size: 1.8rem;
    line-height: 1.25;
}

.about-text {
    color: rgba(27, 21, 18, 0.68);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.95;
}

.about-link {
    width: fit-content;
    margin-top: 42px;
    padding-bottom: 8px;

    display: flex;
    align-items: center;
    gap: 35px;

    border-bottom: 1px solid rgba(27, 21, 18, 0.5);

    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 0.3s ease,
        border-color 0.3s ease;
}

.about-link:hover {
    color: #98784a;
    border-color: #98784a;
}

/* TABLET */

@media (max-width: 1100px) {
    .nav {
        display: none;
    }

    .hero {
        grid-template-columns: 48% 52%;
    }
}

@media (max-width: 900px) {
    .about {
        min-height: auto;
        padding: 90px 7%;

        grid-template-columns: 1fr;
        gap: 28px;
    }

    .about-number {
        padding-top: 0;
    }

    .about-heading {
        padding-right: 0;
    }

    .about-content {
        max-width: 650px;
        padding: 35px 0 0;

        border-top: 1px solid rgba(27, 21, 18, 0.18);
        border-left: 0;
    }
}

/* MOBILNI */

@media (max-width: 820px) {
    .site-header {
        height: 80px;
        padding: 0 5%;
    }

    .header-button {
        display: none;
    }

    .hero {
        display: block;
    }

    .hero-content {
        min-height: 100vh;
        padding: 130px 7% 40px;

        background:
            linear-gradient(
                0deg,
                rgba(27, 21, 18, 0.98) 8%,
                rgba(27, 21, 18, 0.62) 65%,
                rgba(27, 21, 18, 0.77)
            ),
            url("images/hero-nails.jpg") center 40% / cover no-repeat;
    }

    .hero h1 {
        font-size: clamp(4rem, 15vw, 6.2rem);
    }

    .hero-visual {
        display: none;
    }

    .hero-details {
        margin-top: 50px;
    }
}

@media (max-width: 520px) {
    .logo {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .header-actions {
        gap: 0;
    }

    .hero-eyebrow {
        margin-bottom: 25px;
    }

    .hero h1 {
        font-size: clamp(3.5rem, 16vw, 5rem);
        line-height: 0.86;
    }

    .hero-description {
        margin-top: 32px;
        font-size: 0.81rem;
    }

    .hero-button {
        gap: 22px;
        padding: 15px 17px;
        font-size: 0.61rem;
    }

    .hero-details {
        flex-direction: column;
        gap: 10px;
    }

    .about {
        padding: 75px 7%;
    }

    .about-heading h2 {
        font-size: clamp(3rem, 14vw, 4.5rem);
    }

    .about-intro {
        font-size: 1.55rem;
    }
}/* USLUGE */

.services {
    padding: 130px 8%;
    background: #211a17;
    color: var(--ivory);
}

.services-top {
    display: grid;
    grid-template-columns: 58% 42%;
    align-items: end;
    gap: 50px;

    padding-bottom: 75px;
    border-bottom: 1px solid var(--line);
}

.services-top h2 {
    max-width: 850px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.8rem, 6vw, 7rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.04em;
}

.services-intro {
    max-width: 470px;
    padding-bottom: 10px;

    color: rgba(244, 239, 231, 0.62);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.9;
}

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

.service-item {
    position: relative;
    min-height: 330px;
    padding: 45px 45px 50px;

    border-bottom: 1px solid var(--line);
    border-right: 1px solid var(--line);

    transition:
        background 0.4s ease,
        transform 0.4s ease;
}

.service-item:nth-child(even) {
    border-right: 0;
}

.service-item:hover {
    background: rgba(201, 169, 110, 0.06);
}

.service-number {
    display: block;
    margin-bottom: 55px;

    color: var(--champagne);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
}

.service-item h3 {
    margin-bottom: 22px;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.8rem;
    font-weight: 400;
}

.service-item p {
    max-width: 410px;

    color: rgba(244, 239, 231, 0.58);
    font-size: 0.82rem;
    font-weight: 300;
    line-height: 1.85;
}

.service-arrow {
    position: absolute;
    right: 38px;
    bottom: 38px;

    color: var(--champagne);
    font-size: 1.15rem;

    transition: transform 0.35s ease;
}

.service-item:hover .service-arrow {
    transform: translate(5px, -5px);
}

@media (max-width: 900px) {
    .services {
        padding: 95px 7%;
    }

    .services-top {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-bottom: 55px;
    }

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

    .service-item,
    .service-item:nth-child(even) {
        border-right: 0;
    }
}

@media (max-width: 520px) {
    .services {
        padding: 75px 7%;
    }

    .services-top h2 {
        font-size: clamp(3rem, 14vw, 4.8rem);
    }

    .service-item {
        min-height: 290px;
        padding: 38px 25px 45px;
    }

    .service-item h3 {
        font-size: 2.3rem;
    }

    .service-arrow {
        right: 25px;
        bottom: 28px;
    }
}/* ========================================
   NOVA O SALONU SEKCIJA
======================================== */

.about {
    position: relative;
    min-height: 100vh;
    padding: 130px 8%;

    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
    align-items: center;
    gap: clamp(70px, 9vw, 150px);

    background:
        radial-gradient(
            circle at 18% 48%,
            rgba(201, 169, 110, 0.1),
            transparent 28%
        ),
        var(--ivory);

    color: var(--espresso);
    overflow: hidden;
}

/* FOTOGRAFIJA */

.about-image {
    position: relative;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 22px;
    isolation: isolate;
}

/* Spoljašnji zlatni ram */

.about-image::before {
    content: "";
    position: absolute;
    inset: 2px 40px 42px 0;
    z-index: -1;

    border: 1px solid rgba(201, 169, 110, 0.75);

    transition:
        transform 0.7s ease,
        box-shadow 0.7s ease,
        border-color 0.7s ease;
}

/* Mali dekorativni kvadrat */

.about-image::after {
    content: "✦";
    position: absolute;
    right: 8px;
    bottom: 12px;

    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(201, 169, 110, 0.65);
    background: var(--ivory);
    color: #98784a;

    font-size: 0.8rem;

    transform: rotate(45deg);
    transition:
        background 0.5s ease,
        color 0.5s ease,
        transform 0.7s ease;
}

.image-border {
    position: relative;
    z-index: 3;

    width: 100%;
    height: clamp(520px, 68vh, 720px);

    overflow: hidden;

    border: 1px solid rgba(201, 169, 110, 0.55);
    background: var(--deep-brown);

    box-shadow:
        0 28px 65px rgba(27, 21, 18, 0.2),
        0 0 50px rgba(201, 169, 110, 0.07);
}

.image-border img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter: saturate(0.92) contrast(1.03);

    transform: scale(1.015);
    transition:
        transform 1.2s ease,
        filter 1.2s ease;
}

/* Blagi preliv preko slike */

.image-border::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(27, 21, 18, 0.2)
        );

    pointer-events: none;
}

/* STILIZOVANA KRILA */

.wing {
    position: absolute;
    z-index: 1;
    top: 50%;

    width: 190px;
    height: 330px;

    opacity: 0.3;

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.wing::before,
.wing::after {
    content: "";
    position: absolute;

    border: 1px solid rgba(152, 120, 74, 0.62);
    border-top-color: transparent;
    border-bottom-color: transparent;
}

.wing::before {
    inset: 0;

    border-radius: 60% 25% 70% 30%;
}

.wing::after {
    inset: 34px 30px;

    border-radius: 70% 30% 65% 35%;
}

.wing-left {
    left: -105px;

    transform:
        translateY(-50%)
        rotate(-12deg);
}

.wing-right {
    right: -105px;

    transform:
        translateY(-50%)
        rotate(12deg)
        scaleX(-1);
}

/* HOVER NA RAČUNARU */

.about-image:hover .image-border img {
    transform: scale(1.055);
    filter: saturate(1) contrast(1.05);
}

.about-image:hover::before {
    border-color: var(--champagne);

    box-shadow:
        0 0 35px rgba(201, 169, 110, 0.18);

    transform: translate(-8px, 8px);
}

.about-image:hover::after {
    background: var(--champagne);
    color: var(--espresso);

    transform:
        rotate(135deg)
        scale(1.05);
}

.about-image:hover .wing {
    opacity: 0.58;
}

.about-image:hover .wing-left {
    transform:
        translateY(-50%)
        translateX(-10px)
        rotate(-16deg);
}

.about-image:hover .wing-right {
    transform:
        translateY(-50%)
        translateX(10px)
        rotate(16deg)
        scaleX(-1);
}

/* TEKST */

.about-textbox {
    position: relative;
    z-index: 3;

    max-width: 690px;
    padding: 20px 0;
}

.about-textbox .section-label {
    margin-bottom: 30px;

    color: #98784a;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
}

.about-textbox h2 {
    max-width: 680px;
    margin-bottom: 42px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 6vw, 7.2rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.045em;
}

.about-textbox .about-intro {
    max-width: 610px;
    margin-bottom: 26px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.55rem, 2.2vw, 2rem);
    line-height: 1.32;
}

.about-textbox .about-text {
    max-width: 580px;

    color: rgba(27, 21, 18, 0.65);
    font-family: "Manrope", sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.95;
}

/* Tanka dekorativna linija ispod teksta */

.about-textbox::after {
    content: "";
    display: block;

    width: 95px;
    height: 1px;
    margin-top: 42px;

    background: var(--champagne);
}

/* TABLET */

@media (max-width: 1000px) {
    .about {
        padding: 110px 7%;

        grid-template-columns: minmax(280px, 0.9fr) minmax(360px, 1.1fr);
        gap: 60px;
    }

    .image-border {
        height: 580px;
    }

    .wing {
        width: 150px;
        height: 280px;
    }

    .wing-left {
        left: -75px;
    }

    .wing-right {
        right: -75px;
    }
}

/* TELEFON */

@media (max-width: 820px) {
    .about {
        min-height: auto;
        padding: 95px 7% 105px;

        display: flex;
        flex-direction: column;
        gap: 68px;

        background:
            radial-gradient(
                circle at 50% 25%,
                rgba(201, 169, 110, 0.12),
                transparent 25%
            ),
            var(--ivory);
    }

    .about-image {
        width: min(100%, 460px);
        padding: 15px;
    }

    .about-image::before {
        inset: 0 30px 30px 0;
    }

    .about-image::after {
        right: 2px;
        bottom: 4px;

        width: 40px;
        height: 40px;
    }

    .image-border {
        height: min(135vw, 610px);
        min-height: 470px;
    }

    .wing {
        top: 53%;
        width: 125px;
        height: 240px;

        opacity: 0.24;
    }

    .wing-left {
        left: -54px;
    }

    .wing-right {
        right: -54px;
    }

    .about-textbox {
        width: 100%;
        max-width: 620px;
        padding: 0;
    }

    .about-textbox .section-label {
        margin-bottom: 22px;
    }

    .about-textbox h2 {
        margin-bottom: 32px;

        font-size: clamp(3.7rem, 15vw, 5.5rem);
        line-height: 0.9;
    }

    .about-textbox .about-intro {
        margin-bottom: 22px;

        font-size: 1.55rem;
    }

    .about-textbox .about-text {
        font-size: 0.82rem;
        line-height: 1.85;
    }

    .about-textbox::after {
        margin-top: 34px;
    }
}

/* MANJI TELEFONI */

@media (max-width: 480px) {
    .about {
        padding: 80px 6% 90px;
        gap: 58px;
    }

    .about-image {
        padding: 12px;
    }

    .image-border {
        height: 125vw;
        min-height: 420px;
        max-height: 560px;
    }

    .wing {
        width: 105px;
        height: 210px;
    }

    .wing-left {
        left: -42px;
    }

    .wing-right {
        right: -42px;
    }

    .about-textbox h2 {
        font-size: clamp(3.25rem, 15vw, 4.5rem);
    }

    .about-textbox .about-intro {
        font-size: 1.4rem;
    }
}/* DODATNO UREĐENJE TRETMANA */

.service-item-featured {
    grid-column: 1 / -1;
    min-height: 280px;

    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(201, 169, 110, 0.11),
            transparent 30%
        ),
        rgba(201, 169, 110, 0.025);

    border-right: 0;
}

.service-item-featured h3 {
    font-size: clamp(3rem, 5vw, 5.2rem);
}

.service-item-featured p {
    max-width: 560px;
}

@media (max-width: 820px) {
    .services-top h2 {
        font-size: clamp(3.5rem, 14vw, 5.3rem);
        line-height: 0.9;
    }

    .services-intro {
        max-width: 100%;
    }

    .service-item {
        min-height: auto;
        padding: 42px 22px 78px;
    }

    .service-number {
        margin-bottom: 42px;
    }

    .service-item h3,
    .service-item-featured h3 {
        max-width: 90%;
        font-size: clamp(2.35rem, 10vw, 3.3rem);
        line-height: 1;
    }

    .service-item p {
        max-width: 90%;
        font-size: 0.8rem;
    }

    .service-item-featured {
        grid-column: auto;
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .services-top {
        padding-bottom: 45px;
    }

    .service-item {
        padding: 38px 18px 72px;
    }

    .service-arrow {
        right: 18px;
        bottom: 25px;
    }
}/* ========================================
   IZDVOJENI RADOVI
======================================== */

.portfolio {
    padding: 135px 8%;
    background: var(--ivory);
    color: var(--espresso);
    overflow: hidden;
}

.portfolio-heading {
    display: grid;
    grid-template-columns: 62% 38%;
    align-items: end;
    gap: 50px;

    margin-bottom: 90px;
}

.portfolio-heading h2 {
    max-width: 900px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 6.5vw, 7.4rem);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.045em;
}

.portfolio-intro {
    max-width: 440px;
    padding-bottom: 12px;

    color: rgba(27, 21, 18, 0.62);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
}

/* EDITORIAL MREŽA */

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    align-items: start;
    gap: 65px 26px;
}

.portfolio-item {
    margin: 0;
}

.portfolio-item-large {
    grid-column: span 7;
}

.portfolio-item-small {
    grid-column: span 5;
    padding-top: 130px;
}

.portfolio-item-wide {
    grid-column: span 8;
}

.portfolio-item-tall {
    grid-column: span 4;
    padding-top: 90px;
}

.portfolio-item-medium {
    grid-column: span 5;
}

.portfolio-image {
    position: relative;
    overflow: hidden;

    background: var(--deep-brown);
    border: 1px solid rgba(201, 169, 110, 0.45);

    box-shadow:
        0 25px 55px rgba(27, 21, 18, 0.13),
        0 0 35px rgba(201, 169, 110, 0.05);
}

.portfolio-item-large .portfolio-image {
    aspect-ratio: 4 / 4.4;
}

.portfolio-item-small .portfolio-image {
    aspect-ratio: 4 / 4.8;
}

.portfolio-item-wide .portfolio-image {
    aspect-ratio: 5 / 3.5;
}

.portfolio-item-tall .portfolio-image {
    aspect-ratio: 3 / 4.2;
}

.portfolio-item-medium .portfolio-image {
    aspect-ratio: 4 / 4.7;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;

    filter: saturate(0.94) contrast(1.02);

    transform: scale(1.015);
    transition:
        transform 1.2s ease,
        filter 1.2s ease;
}

.portfolio-image::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            transparent 55%,
            rgba(27, 21, 18, 0.28)
        );

    opacity: 0.5;
    transition: opacity 0.7s ease;

    pointer-events: none;
}

.portfolio-number {
    position: absolute;
    z-index: 2;
    top: 20px;
    left: 22px;

    color: var(--ivory);
    font-size: 0.63rem;
    letter-spacing: 0.16em;
}

/* OPIS ISPOD FOTOGRAFIJE */

.portfolio-item figcaption {
    position: relative;
    padding: 22px 0 0 24px;
}

.portfolio-item figcaption::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;

    width: 1px;
    height: 58px;

    background: var(--champagne);
}

.portfolio-item figcaption span {
    color: #98784a;
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.portfolio-item figcaption p {
    margin-top: 7px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 2.1vw, 2rem);
    line-height: 1.1;
}

/* HOVER */

.portfolio-item:hover .portfolio-image img {
    filter: saturate(1) contrast(1.04);
    transform: scale(1.065);
}

.portfolio-item:hover .portfolio-image::after {
    opacity: 0.2;
}

/* DONJI DEO */

.portfolio-footer {
    margin-top: 110px;
    padding-top: 42px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    border-top: 1px solid rgba(27, 21, 18, 0.16);
}

.portfolio-footer p {
    color: rgba(27, 21, 18, 0.58);
    font-size: 0.8rem;
    font-weight: 300;
}

.portfolio-link {
    padding-bottom: 8px;

    display: flex;
    align-items: center;
    gap: 35px;

    border-bottom: 1px solid rgba(27, 21, 18, 0.55);

    font-size: 0.67rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;

    transition:
        color 0.35s ease,
        border-color 0.35s ease;
}

.portfolio-link:hover {
    color: #98784a;
    border-color: #98784a;
}

/* TABLET */

@media (max-width: 900px) {
    .portfolio {
        padding: 105px 7%;
    }

    .portfolio-heading {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 70px;
    }

    .portfolio-grid {
        gap: 65px 24px;
    }

    .portfolio-item-small,
    .portfolio-item-tall {
        padding-top: 65px;
    }
}

/* TELEFON */

@media (max-width: 700px) {
    .portfolio {
        padding: 90px 6%;
    }

    .portfolio-heading {
        margin-bottom: 60px;
    }

    .portfolio-heading h2 {
        font-size: clamp(3.45rem, 14.5vw, 5rem);
        line-height: 0.9;
    }

    .portfolio-grid {
        display: flex;
        flex-direction: column;
        gap: 72px;
    }

    .portfolio-item,
    .portfolio-item-small,
    .portfolio-item-tall {
        width: 100%;
        padding-top: 0;
    }

    .portfolio-item:nth-child(even) {
        width: 88%;
        align-self: flex-end;
    }

    .portfolio-item:nth-child(3n) {
        width: 92%;
        align-self: flex-start;
    }

    .portfolio-item-large .portfolio-image,
    .portfolio-item-small .portfolio-image,
    .portfolio-item-wide .portfolio-image,
    .portfolio-item-tall .portfolio-image,
    .portfolio-item-medium .portfolio-image {
        aspect-ratio: 4 / 5;
    }

    .portfolio-item:nth-child(3) .portfolio-image,
    .portfolio-item:nth-child(8) .portfolio-image {
        aspect-ratio: 4 / 4.2;
    }

    .portfolio-item figcaption {
        padding: 18px 0 0 18px;
    }

    .portfolio-item figcaption::before {
        height: 50px;
    }

    .portfolio-item figcaption p {
        font-size: 1.65rem;
    }

    .portfolio-footer {
        margin-top: 80px;

        flex-direction: column;
        align-items: flex-start;
    }
}

/* MANJI TELEFONI */

@media (max-width: 480px) {
    .portfolio {
        padding: 78px 5.5%;
    }

    .portfolio-heading h2 {
        font-size: clamp(3.2rem, 15vw, 4.4rem);
    }

    .portfolio-grid {
        gap: 62px;
    }

    .portfolio-item:nth-child(even) {
        width: 91%;
    }

    .portfolio-number {
        top: 16px;
        left: 17px;
    }

    .portfolio-footer {
        margin-top: 70px;
    }

    .portfolio-link {
        width: 100%;
        justify-content: space-between;
    }
}

/* CENOVNIK */

.pricing {
    padding: 130px 8%;
    background: var(--ivory);
    color: var(--espresso);
}

.pricing-heading {
    max-width: 900px;
    margin-bottom: 80px;
}

.pricing-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 6vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.04em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.pricing-group {
    padding: 38px 34px;
    border: 1px solid rgba(27, 21, 18, 0.14);
    background: rgba(255, 255, 255, 0.18);
}

.pricing-group h3 {
    margin-bottom: 30px;

    color: #98784a;
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2rem;
    font-weight: 500;
}

.price-row {
    padding: 16px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    border-bottom: 1px solid rgba(27, 21, 18, 0.12);
}

.price-row:last-child {
    border-bottom: 0;
}

.price-row span {
    color: rgba(27, 21, 18, 0.72);
    font-size: 0.84rem;
}

.price-row strong {
    flex-shrink: 0;

    color: var(--espresso);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.04em;
}

.pricing-group-wide {
    grid-column: 1 / -1;
}

@media (max-width: 800px) {
    .pricing {
        padding: 90px 6%;
    }

    .pricing-heading {
        margin-bottom: 55px;
    }

    .pricing-heading h2 {
        font-size: clamp(3.3rem, 14vw, 5rem);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .pricing-group,
    .pricing-group-wide {
        grid-column: auto;
        padding: 30px 22px;
    }

    .price-row {
        gap: 18px;
    }
}

@media (max-width: 480px) {
    .pricing {
        padding: 78px 5.5%;
    }

    .pricing-group h3 {
        font-size: 1.9rem;
    }

    .price-row span {
        font-size: 0.79rem;
    }

    .price-row strong {
        font-size: 0.73rem;
    }
}/* ========================================
   DODATNI EFEKTI ZA CENOVNIK
======================================== */

.pricing-group {
    position: relative;
    overflow: hidden;

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease,
        border-color 0.45s ease,
        background 0.45s ease;
}

.pricing-group::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 169, 110, 0.14),
            transparent 35%
        );

    opacity: 0.35;
    pointer-events: none;

    transition: opacity 0.45s ease;
}

.pricing-group:hover {
    transform: translateY(-8px);

    border-color: rgba(201, 169, 110, 0.75);

    background: rgba(255, 255, 255, 0.28);

    box-shadow:
        0 22px 48px rgba(27, 21, 18, 0.12),
        0 0 35px rgba(201, 169, 110, 0.08);
}

.pricing-group:hover::before {
    opacity: 0.8;
}

.pricing-group h3,
.price-row {
    position: relative;
    z-index: 2;
}

.price-row {
    overflow: hidden;
}

.price-row::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;

    width: 0;
    height: 1px;

    background: var(--champagne);

    transition: width 0.45s ease;
}

.price-row span,
.price-row strong {
    transition:
        color 0.35s ease,
        transform 0.35s ease,
        letter-spacing 0.35s ease;
}

.price-row:hover::after {
    width: 100%;
}

.price-row:hover span {
    color: #98784a;
    letter-spacing: 0.035em;
}

.price-row:hover strong {
    color: #98784a;
    transform: translateX(-7px);
}

/* EFEKAT KOJI SE VIDI I NA TELEFONU */

@media (max-width: 800px) {
    .pricing-group {
        border-color: rgba(201, 169, 110, 0.32);

        box-shadow:
            0 14px 30px rgba(27, 21, 18, 0.07),
            0 0 24px rgba(201, 169, 110, 0.04);
    }

    .pricing-group::before {
        opacity: 0.55;
    }

    .pricing-group:nth-child(even) {
        transform: translateX(8px);
    }

    .pricing-group:nth-child(odd) {
        transform: translateX(-4px);
    }

    .price-row::after {
        width: 32px;
    }
}

/* KADA SE KARTICA PRITISNE NA TELEFONU */

.pricing-group:active {
    transform: scale(0.985);

    border-color: var(--champagne);

    box-shadow:
        0 12px 25px rgba(27, 21, 18, 0.1),
        0 0 28px rgba(201, 169, 110, 0.12);
}

@media (max-width: 480px) {
    .pricing-group:nth-child(even),
    .pricing-group:nth-child(odd) {
        transform: none;
    }

    .pricing-group {
        border-left: 2px solid rgba(201, 169, 110, 0.65);
    }
}/* ========================================
   KONTAKT
======================================== */

.contact {
    padding: 130px 8%;
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(201, 169, 110, 0.1),
            transparent 30%
        ),
        var(--espresso);

    color: var(--ivory);
}

.contact-top {
    max-width: 1000px;
    margin-bottom: 85px;
}

.contact-top .section-label {
    color: var(--champagne);
}

.contact-top h2 {
    max-width: 930px;

    font-family: "Cormorant Garamond", serif;
    font-size: clamp(4rem, 7vw, 8rem);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: -0.045em;
}

.contact-intro {
    max-width: 560px;
    margin-top: 38px;

    color: rgba(244, 239, 231, 0.64);
    font-size: 0.86rem;
    font-weight: 300;
    line-height: 1.9;
}

.contact-button {
    width: fit-content;
    margin-top: 38px;
    padding: 18px 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 65px;

    border: 1px solid var(--champagne);

    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;

    transition:
        background 0.4s ease,
        color 0.4s ease,
        box-shadow 0.4s ease,
        transform 0.4s ease;
}

.contact-button:hover {
    background: var(--champagne);
    color: var(--espresso);

    box-shadow:
        0 18px 38px rgba(0, 0, 0, 0.25),
        0 0 28px rgba(201, 169, 110, 0.15);

    transform: translateY(-5px);
}

.contact-button:active {
    transform: scale(0.97);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.contact-card {
    position: relative;
    min-height: 270px;
    padding: 35px;

    display: flex;
    flex-direction: column;

    border-right: 1px solid var(--line);
    overflow: hidden;

    transition:
        background 0.45s ease,
        transform 0.45s ease,
        border-color 0.45s ease;
}

.contact-card:last-child {
    border-right: 0;
}

.contact-card::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(
            circle at 85% 15%,
            rgba(201, 169, 110, 0.18),
            transparent 38%
        );

    opacity: 0.28;
    pointer-events: none;

    transition: opacity 0.45s ease;
}

.contact-card > span,
.contact-card h3,
.contact-card p,
.contact-card strong {
    position: relative;
    z-index: 2;
}

.contact-card > span {
    color: var(--champagne);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
}

.contact-card h3 {
    margin-top: auto;

    font-family: "Cormorant Garamond", serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.contact-card p {
    max-width: 80%;
    margin-top: 10px;

    color: rgba(244, 239, 231, 0.58);
    font-size: 0.78rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
}

.contact-card strong {
    position: absolute;
    right: 30px;
    bottom: 30px;

    color: var(--champagne);
    font-size: 1.1rem;

    transition: transform 0.4s ease;
}

.contact-card:hover {
    background: rgba(201, 169, 110, 0.055);
    transform: translateY(-7px);
}

.contact-card:hover::before {
    opacity: 0.85;
}

.contact-card:hover strong {
    transform: translate(6px, -6px);
}

.contact-card:active {
    transform: scale(0.985);
}

/* FOOTER */

.site-footer {
    padding: 34px 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    background: #15100e;
    color: rgba(244, 239, 231, 0.5);

    border-top: 1px solid var(--line);
}

.footer-logo {
    color: var(--ivory);
    font-family: "Cormorant Garamond", serif;
    font-size: 1.05rem;
    letter-spacing: 0.2em;
}

.site-footer p,
.footer-top {
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-top {
    display: flex;
    align-items: center;
    gap: 14px;

    color: var(--champagne);
}

/* TELEFON */

@media (max-width: 800px) {
    .contact {
        padding: 90px 6%;
    }

    .contact-top {
        margin-bottom: 58px;
    }

    .contact-top h2 {
        font-size: clamp(3.5rem, 15vw, 5.4rem);
        line-height: 0.9;
    }

    .contact-button {
        width: 100%;
    }

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

    .contact-card {
        min-height: 210px;
        padding: 28px 22px;

        border-right: 0;
        border-bottom: 1px solid var(--line);
        border-left: 1px solid rgba(201, 169, 110, 0.35);
    }

    .contact-card:last-child {
        border-bottom: 0;
    }

    .contact-card::before {
        opacity: 0.55;
    }

    .contact-card strong {
        right: 22px;
        bottom: 24px;
    }

    .site-footer {
        padding: 36px 6%;

        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .contact {
        padding: 78px 5.5%;
    }

    .contact-card h3 {
        font-size: 2.2rem;
    }
}/* KOMPLETNA GALERIJA */

.full-gallery {
    padding: 130px 8%;
    background: var(--espresso);
    color: var(--ivory);
}

.full-gallery-heading {
    max-width: 760px;
    margin: 0 auto 65px;
    text-align: center;
}

.full-gallery-heading h2 {
    margin: 20px 0 22px;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.8rem, 6vw, 7rem);
    font-weight: 500;
    line-height: 0.95;
}

.full-gallery-heading > p:last-child {
    max-width: 600px;
    margin: 0 auto;
    color: rgba(244, 239, 231, 0.65);
    line-height: 1.8;
}

.full-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.full-gallery-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border: 1px solid rgba(201, 169, 110, 0.28);
    transition:
        transform 0.45s ease,
        border-color 0.45s ease,
        box-shadow 0.45s ease;
}

.full-gallery-grid img:hover {
    z-index: 2;
    transform: translateY(-5px) scale(1.025);
    border-color: var(--champagne);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.28);
}

.full-gallery-button {
    width: fit-content;
    margin: 65px auto 0;
    padding: 18px 25px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 45px;
    border: 1px solid var(--champagne);
    color: var(--ivory);
    font-size: 0.7rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.full-gallery-button:hover {
    background: var(--champagne);
    color: var(--espresso);
    transform: translateY(-3px);
}

@media (max-width: 950px) {
    .full-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 650px) {
    .full-gallery {
        padding: 90px 5%;
    }

    .full-gallery-heading {
        margin-bottom: 45px;
        text-align: left;
    }

    .full-gallery-heading h2 {
        font-size: clamp(3.2rem, 14vw, 4.8rem);
    }

    .full-gallery-heading > p:last-child {
        margin: 0;
    }

    .full-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 9px;
    }

    .full-gallery-button {
        width: 100%;
        margin-top: 45px;
    }
}/* MOBILE MENU */

.menu-toggle {
    display: none;
    position: relative;
    z-index: 1001;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    position: absolute;
    left: 8px;
    width: 28px;
    height: 1px;
    background: var(--ivory);
    transition:
        transform 0.35s ease,
        top 0.35s ease;
}

.menu-toggle span:first-child {
    top: 17px;
}

.menu-toggle span:last-child {
    top: 26px;
}

.menu-toggle.active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}

@media (max-width: 900px) {
    .site-header {
        position: absolute;
        height: 82px;
        padding: 0 5%;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu-toggle {
        display: block;
    }

    .nav {
        position: fixed;
        inset: 0;

        width: 100vw;
        height: 100vh;
        max-width: none;
        border-radius: 0;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;

        z-index: 999;
        padding: 125px 7% 45px;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 0;
        background:
            radial-gradient(
                circle at 85% 15%,
                rgba(201, 169, 110, 0.13),
                transparent 35%
            ),
            var(--espresso);

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(-18px);
        transition:
            opacity 0.35s ease,
            visibility 0.35s ease,
            transform 0.35s ease;
    }

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

    .nav a {
        width: 100%;
        padding: 18px 0;
        border-bottom: 1px solid rgba(244, 239, 231, 0.14);
        font-family: "Cormorant Garamond", serif;
        font-size: clamp(2.2rem, 10vw, 3.8rem);
        font-weight: 500;
        line-height: 1;
        color: var(--ivory);
        text-transform: none;
        letter-spacing: 0;
    }

    .nav a:first-child {
        border-top: 1px solid rgba(244, 239, 231, 0.14);
    }

    .header-actions {
        position: fixed;
        left: 7%;
        right: 7%;
        bottom: 35px;
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: space-between;

        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease;
    }

    body.menu-open .header-actions {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .header-button {
        padding: 13px 16px;
        font-size: 0.62rem;
    }

    body.menu-open {
        overflow: hidden;
    }
}/* ===== SCROLL REVEAL ===== */

.reveal {
    opacity: 0;
    transform: translateY(80px) scale(0.98);
    filter: blur(8px);
    transition:
        opacity 0.9s ease,
        transform 0.9s cubic-bezier(.22,.61,.36,1),
        filter 0.9s ease;
    will-change: opacity, transform, filter;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}/* ===== STAGGER ANIMATION ===== */

.service-item {
    opacity: 0;
    transform: translateY(50px);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22,.61,.36,1);
}

.service-item.active {
    opacity: 1;
    transform: translateY(0);
}/* ===== PARALLAX ===== */

.image-frame,
.portfolio-image,
.full-gallery-grid img {
    will-change: transform;
    transition: transform .15s linear;
}/* ===== PREMIUM HOVER ===== */

.portfolio-item,
.service-item,
.pricing-group,
.contact-card {
    transition:
        transform .45s cubic-bezier(.22,.61,.36,1),
        box-shadow .45s ease,
        border-color .45s ease;
}

.portfolio-item:hover,
.service-item:hover,
.pricing-group:hover,
.contact-card:hover {

    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18),
        0 0 30px rgba(201,164,92,.12);

    border-color: rgba(201,164,92,.35);
}/* ===== MOBILE DEPTH ===== */

.portfolio-image,
.full-gallery-grid img,
.image-frame{

    transition:
        transform .25s linear,
        opacity .25s linear;

    transform-origin:center;

}/* ===== PRICE SHINE EFFECT ===== */

.pricing {
    position: relative;
    overflow: hidden;
}

.pricing::after{
    content:"";

    position:absolute;

    top:0;
    left:-150%;

    width:45%;
    height:100%;

    background:
        linear-gradient(
            115deg,
            transparent,
            rgba(255,255,255,.28),
            rgba(214,175,85,.35),
            transparent
        );

    transform:skewX(-25deg);

    pointer-events:none;
}

.pricing.shine::after{

    animation:pricingShine .9s ease forwards;

}

@keyframes pricingShine{

    from{

        left:-150%;

    }

    to{

        left:180%;

    }

}/* ===== CONTACT WAVE ===== */

.contact{
    position:relative;
    overflow:hidden;
}

.contact::before{

    content:"";

    position:absolute;

    inset:-40%;

    background:
    radial-gradient(circle,
    rgba(212,175,55,.18) 0%,
    transparent 65%);

    transform:translateY(120%);

    opacity:0;

    pointer-events:none;

}

.contact.wave::before{

    animation:contactWave 1.4s ease forwards;

}

@keyframes contactWave{

    0%{

        transform:translateY(120%);
        opacity:0;

    }

    25%{

        opacity:1;

    }

    100%{

        transform:translateY(-120%);
        opacity:0;

    }

}/* ===== HERO FRAME DRAW ===== */

.hero-image{
    position:relative;
}

.hero-image::after{

    content:"";

    position:absolute;

    inset:-10px;

    border:2px solid rgba(212,175,55,.75);

    clip-path: inset(0 100% 100% 0);

    pointer-events:none;

}

.hero-image.draw::after{

    animation:drawFrame 1.5s ease forwards;

}

@keyframes drawFrame{

    0%{
        clip-path: inset(0 100% 100% 0);
    }

    25%{
        clip-path: inset(0 0 100% 0);
    }

    50%{
        clip-path: inset(0 0 0 100%);
    }

    75%{
        clip-path: inset(100% 0 0 0);
    }

    100%{
        clip-path: inset(0);
    }

}/* ===== SCROLL PROGRESS ===== */

.scroll-progress{

    position:fixed;

    top:0;
    left:0;

    width:0%;

    height:3px;

    z-index:9999;

    background:linear-gradient(
        90deg,
        #d4af37,
        #f5d77a,
        #d4af37
    );

    box-shadow:0 0 12px rgba(212,175,55,.45);

    transition:width .08s linear;

}/* ===== HAMBURGER GLOW ===== */

.mobile-menu-btn{

    position:relative;
    overflow:visible;

}

.mobile-menu-btn::after{

    content:"";

    position:absolute;

    inset:-10px;

    border-radius:50%;

    background:rgba(212,175,55,.18);

    transform:scale(0);

    opacity:0;

    transition:
        transform .35s ease,
        opacity .35s ease;

}

.mobile-menu-btn:active::after{

    transform:scale(1);

    opacity:1;

}/* ===== STICKY HEADER UPGRADE ===== */

.site-header{

    position: sticky;

    top: 0;

    z-index: 9999;

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    background: rgba(245, 237, 226, .72);

    border-bottom: 1px solid rgba(210, 180, 140, .28);

    box-shadow: 0 4px 20px rgba(80, 55, 35, .06);

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        box-shadow .35s ease;

}

.site-header.scrolled{

    background: rgba(40, 30, 12, 0.86);

    border-bottom: 1px solid rgba(210, 180, 140, .38);

    box-shadow:
        0 10px 30px rgba(80,55,35,.12);

}/* ===== LUXURY SPARKLE ===== */

body::after{

    content:"";

    position:fixed;

    inset:0;

    pointer-events:none;

    background:
        radial-gradient(circle at 18% 28%, rgba(212,175,55,.18) 0 1px, transparent 2px),
        radial-gradient(circle at 82% 22%, rgba(212,175,55,.12) 0 1px, transparent 2px),
        radial-gradient(circle at 30% 78%, rgba(212,175,55,.15) 0 1px, transparent 2px),
        radial-gradient(circle at 74% 66%, rgba(212,175,55,.14) 0 1px, transparent 2px);

    opacity:.18;

    animation:sparkleFloat 12s linear infinite;
}

@keyframes sparkleFloat{

    0%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-10px);

    }

    100%{

        transform:translateY(0);

    }

}/* ===== MOBILE MENU FIX ===== */

.mobile-menu{

    position: fixed !important;

    inset: 0;

    width: 100%;

    height: 100dvh;

    z-index: 99999;

    overflow-y: auto;

}.hero,
.hero-content,
.hero-text{

    z-index: 1;

}/* =========================
   RECENZIJE
========================= */

.testimonials{
    padding:120px 8%;
    background:#faf8f4;
}

.testimonials-heading{
    max-width:700px;
    margin:0 auto 70px;
    text-align:center;
}

.testimonials-heading h2{
    margin:20px 0;
    color: #2f2f2f;
}

.testimonials-intro{
    color:#6f6f6f;
    line-height:1.8;
}

.testimonials-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:30px;
}

.testimonial-card{
    background:#fff;
    padding:40px 35px;
    border-radius:22px;
    border:1px solid rgba(212,175,55,.18);
    box-shadow:0 15px 40px rgba(0,0,0,.05);
    transition:.35s;
}

.testimonial-card:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 60px rgba(0,0,0,.08);
}

.stars{
    color:#d4af37;
    font-size:20px;
    letter-spacing:4px;
    margin-bottom:22px;
}

.testimonial-card p{
    color:#555;
    line-height:1.9;
    font-style:italic;
}.testimonial-card h4{
    margin-top:24px;
    color:#b68d40;
    font-size:18px;
    font-weight:600;
    font-family:"Cormorant Garamond", serif;
}.footer-credit{
    margin:28px 0 20px;
}

.footer-credit a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    text-decoration:none;
    color:#9d9d9d;
    font-size:13px;
    transition:.3s;
}

.footer-credit a:hover{
    color:#b68d40;
}

.footer-credit img{
    width:28px;
    height:28px;
    object-fit:contain;
}

.footer-credit strong{
    color:#d4b16a;
    font-family:"Cormorant Garamond", serif;
    font-size:17px;
    font-weight:600;
}