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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    background: #f7f4ee;
    color: #123524;
    font-family: 'Manrope', sans-serif;
}

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

button {
    font: inherit;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    padding: 24px 6%;
    border-bottom: 1px solid rgba(18, 53, 36, 0.12);
    background: rgba(247, 244, 238, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}


.navbar {
    width: 100%;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    flex-shrink: 0;
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 600;
    letter-spacing: 3px;
}.logo img {
    height: 200px;
    width: auto;
    display: block;
}

.logo span {
    color: #b78d46;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    position: relative;
    color: #173c2b;
    font-size: 14px;
    font-weight: 500;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: #b78d46;
    transition: width 0.3s ease;
}

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

.language-switch {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #9f8358;
}

.language-switch button {
    border: none;
    background: transparent;
    color: #9b9b8e;
    font-size: 12px;
    cursor: pointer;
}

.language-switch button.active {
    color: #123524;
    font-weight: 700;
}

.hero {
    width: 100%;
    min-height: 620px;
    padding: 54px 6% 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    gap: 42px;
}

.hero-content {
    max-width: 700px;
    padding: 55px 0 55px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eyebrow {
    margin-bottom: 24px;
    color: #b78d46;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
}

h1 {
    max-width: 650px;
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(58px, 7vw, 102px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -3px;
}

h1 span {
    color: #b78d46;
    font-style: italic;
}

.hero-text {
    max-width: 580px;
    margin-top: 30px;
    color: #385141;
    font-size: 17px;
    line-height: 1.75;
}

.hero-text-en {
    max-width: 580px;
    margin-top: 12px;
    color: #8f8a78;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
}

.hero-buttons {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.btn {
    min-width: 205px;
    padding: 16px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #123524;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.primary-btn {
    border-color: #123524;
    color: #f7f4ee;
    background: #123524;
}

.primary-btn:hover {
    border-color: #b78d46;
    background: #b78d46;
}

.secondary-btn {
    color: #123524;
    background: transparent;
}

.secondary-btn:hover {
    color: #f7f4ee;
    background: #123524;
}

.hero-visual {
    min-height: 590px;
}

.visual-frame {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 590px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.4),
            rgba(18, 53, 36, 0.05)
        ),
        #ded5c4;
}

.visual-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            transparent 0 19%,
            rgba(183, 141, 70, 0.7) 19.2% 19.45%,
            transparent 19.7% 67%,
            rgba(183, 141, 70, 0.55) 67.2% 67.45%,
            transparent 67.7%
        );
}

.visual-text {
    position: absolute;
    left: 12%;
    bottom: 11%;
}

.visual-text p {
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: 40px;
    font-weight: 600;
}

.visual-text span {
    color: #7e765f;
    font-size: 13px;
    letter-spacing: 1.5px;
}

.features {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: #123524;
}

.feature-card {
    min-height: 230px;
    padding: 38px 6%;
    border-right: 1px solid rgba(183, 141, 70, 0.45);
}

.feature-card:last-child {
    border-right: none;
}

.feature-number {
    margin-bottom: 28px;
    color: #b78d46;
    font-size: 12px;
    letter-spacing: 2px;
}

.feature-card h2 {
    margin-bottom: 12px;
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: 31px;
    font-weight: 500;
}

.feature-card p:last-child {
    max-width: 350px;
    color: #d9ddd5;
    font-size: 14px;
    line-height: 1.7;
}
.feature-card {
    position: relative;
    overflow: hidden;
    transition: all .35s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: #c7a467;
    transition: .4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    background: #173d2c;
    box-shadow: 0 20px 45px rgba(0,0,0,.18);
}

.feature-card:hover::before {
    left: 0;
}

.feature-card:hover .feature-number {
    color: #e2bf82;
}

.feature-card:hover h2 {
    color: #c7a467;
}

.feature-card:hover p:last-child {
    color: #f1eee7;
}

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

    .hero {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .hero-content {
        max-width: none;
        padding-top: 25px;
    }

    .hero-visual,
    .visual-frame {
        min-height: 430px;
    }

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

    .feature-card {
        border-right: none;
        border-bottom: 1px solid rgba(183, 141, 70, 0.45);
    }

    .feature-card:last-child {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    .site-header {
        padding: 20px 5%;
    }

    .logo {
        font-size: 30px;
    }

    .hero {
        min-height: auto;
        padding: 30px 5% 0;
    }

    h1 {
        font-size: 58px;
        letter-spacing: -2px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-visual,
    .visual-frame {
        min-height: 340px;
    }

    .visual-circle {
        width: 180px;
        height: 180px;
    }

    .visual-text p {
        font-size: 31px;
    }
}.about {
    width: 100%;
    padding: 95px 6%;
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 70px;
    background: #ece6da;
}

.about-image {
    min-height: 520px;
}

.about-image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 38px;
    overflow: hidden;
    background:
        linear-gradient(
            145deg,
            rgba(18, 53, 36, 0.92),
            rgba(18, 53, 36, 0.62)
        ),
        #123524;
}

.about-image-inner::before {
    content: "";
    position: absolute;
    top: 12%;
    left: 12%;
    width: 58%;
    height: 58%;
    border: 1px solid rgba(183, 141, 70, 0.75);
    border-radius: 50%;
}

.about-image-inner::after {
    content: "";
    position: absolute;
    right: 10%;
    bottom: 12%;
    width: 1px;
    height: 68%;
    background: rgba(183, 141, 70, 0.65);
}

.about-image-inner span {
    position: relative;
    z-index: 2;
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(70px, 9vw, 130px);
    letter-spacing: 8px;
}

.about-content {
    max-width: 700px;
}

.section-label {
    margin-bottom: 22px;
    color: #b78d46;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
}

.about h2 {
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6vw, 82px);
    font-weight: 500;
    line-height: 0.98;
}

.about h2 span {
    display: block;
    color: #b78d46;
    font-style: italic;
}

.about-content > p:not(.section-label) {
    max-width: 640px;
    margin-top: 26px;
    color: #385141;
    font-size: 16px;
    line-height: 1.8;
}

.about-content .about-en {
    margin-top: 12px;
    color: #8f8a78;
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-style: italic;
    line-height: 1.5;
}

.text-link {
    display: inline-block;
    margin-top: 30px;
    padding-bottom: 5px;
    border-bottom: 1px solid #b78d46;
    color: #123524;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}.services{
    padding:100px 6%;
    background:#f7f4ee;
}

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

.services-heading h2{
    font-family:'Cormorant Garamond',serif;
    font-size:72px;
    font-weight:500;
    color:#123524;
    line-height:1;
}

.services-heading h2 span{
    display:block;
    color:#B78D46;
    font-style:italic;
}

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

.service-card{
    padding:45px;
    background:white;
    border:1px solid rgba(18,53,36,.08);
    transition:.35s;
}

.service-card:hover{
    background:#123524;
    transform:translateY(-8px);
}

.service-card span{
    color:#B78D46;
    font-size:13px;
    letter-spacing:2px;
}

.service-card h3{
    margin:20px 0;
    font-size:36px;
    font-family:'Cormorant Garamond',serif;
    color:#123524;
}

.service-card p{
    color:#5d665f;
    line-height:1.8;
}

.service-card:hover h3,
.service-card:hover p{
    color:white;
}.vizije-section {
    width: 100%;
    padding: 105px 6%;
    background: #123524;
}

.vizije-heading {
    max-width: 950px;
    margin-bottom: 65px;
}

.vizije-heading .section-label {
    color: #c7a467;
}

.vizije-heading h2 {
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 500;
    line-height: 0.95;
}

.vizije-heading h2 span {
    display: block;
    color: #c7a467;
    font-style: italic;
}

.vizije-intro{
    max-width:620px;
    margin-top:28px;
    color:#d8cdbb;
    font-size:16px;
    line-height:1.8;
}

.vizije-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 28px;
}

.project-card {
    overflow: hidden;
}

.project-large {
    grid-row: span 2;
}

.project-wide {
    grid-column: 1 / -1;
}

.project-image {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.project-large .project-image {
    min-height: 868px;
}

.project-wide .project-image {
    min-height: 500px;
}

.project-image::before,
.project-image::after {
    content: "";
    position: absolute;
}

.project-boutique {
    background:
        linear-gradient(rgba(18, 53, 36, 0.08), rgba(18, 53, 36, 0.24)),
        linear-gradient(135deg, #d8c8b0 0%, #f0e7db 48%, #94765b 100%);
}

.project-boutique::before {
    inset: 12% 16% 10%;
    border: 1px solid rgba(18, 53, 36, 0.32);
}

.project-boutique::after {
    top: 18%;
    left: 23%;
    width: 54%;
    height: 64%;
    border-radius: 48% 48% 8px 8px;
    background: rgba(247, 244, 238, 0.46);
    box-shadow: 22px 22px 0 rgba(183, 141, 70, 0.2);
}

.project-salon {
    background:
        radial-gradient(circle at 70% 30%, rgba(247, 244, 238, 0.8), transparent 25%),
        linear-gradient(145deg, #b99d93, #eaded7);
}

.project-salon::before {
    right: 11%;
    bottom: 10%;
    width: 45%;
    height: 68%;
    border-radius: 50% 50% 4px 4px;
    background: rgba(255, 255, 255, 0.42);
}

.project-cafe {
    background:
        linear-gradient(rgba(18, 53, 36, 0.16), rgba(18, 53, 36, 0.3)),
        linear-gradient(135deg, #cab49a, #7b5f47);
}

.project-cafe::before {
    left: 12%;
    bottom: 14%;
    width: 76%;
    height: 34%;
    border: 1px solid rgba(247, 244, 238, 0.5);
}

.project-dentist {
    background:
        radial-gradient(circle at 72% 40%, rgba(255,255,255,0.85), transparent 22%),
        linear-gradient(135deg, #dbe5df, #b6cbc0);
}

.project-dentist::before {
    top: 15%;
    left: 12%;
    width: 42%;
    height: 70%;
    border: 1px solid rgba(18, 53, 36, 0.28);
    border-radius: 50%;
}

.project-tag {
    position: absolute;
    top: 24px;
    left: 24px;
    z-index: 2;
    padding: 10px 14px;
    color: #123524;
    background: rgba(247, 244, 238, 0.86);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
}

.project-info {
    padding: 24px 0 10px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
}

.project-info p {
    margin-bottom: 7px;
    color: #c7a467;
    font-size: 11px;
    letter-spacing: 2px;
}

.project-info h3 {
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    font-weight: 500;
}

.project-info a {
    padding-bottom: 4px;
    border-bottom: 1px solid rgba(199, 164, 103, 0.7);
    color: #d8cdbb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.project-card:hover .project-image {
    transform: scale(1.015);
}

.project-card:hover .project-info a {
    color: #c7a467;
}

@media (max-width: 900px) {
    .vizije-grid {
        grid-template-columns: 1fr;
    }

    .project-large,
    .project-wide {
        grid-row: auto;
        grid-column: auto;
    }

    .project-image,
    .project-large .project-image,
    .project-wide .project-image {
        min-height: 430px;
    }
}

@media (max-width: 600px) {
    .vizije-section {
        padding: 70px 5%;
    }

    .project-image,
    .project-large .project-image,
    .project-wide .project-image {
        min-height: 330px;
    }

    .project-info {
        align-items: flex-start;
        flex-direction: column;
    }

    .project-info h3 {
        font-size: 32px;
    }
}.process-section {
    width: 100%;
    padding: 100px 6%;
    background: #ece6da;
}

.process-heading {
    max-width: 900px;
    margin-bottom: 60px;
}

.process-heading h2 {
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(52px, 6vw, 86px);
    font-weight: 500;
    line-height: 0.96;
}

.process-heading h2 span {
    display: block;
    color: #b78d46;
    font-style: italic;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(18, 53, 36, 0.2);
    border-left: 1px solid rgba(18, 53, 36, 0.2);
}

.process-step {
    min-height: 290px;
    padding: 34px;
    border-right: 1px solid rgba(18, 53, 36, 0.2);
    border-bottom: 1px solid rgba(18, 53, 36, 0.2);
}

.process-step span {
    display: block;
    margin-bottom: 48px;
    color: #b78d46;
    font-size: 12px;
    letter-spacing: 2px;
}

.process-step h3 {
    margin-bottom: 16px;
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
}

.process-step p {
    color: #53675a;
    font-size: 14px;
    line-height: 1.75;
}

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

@media (max-width: 600px) {
    .process-section {
        padding: 70px 5%;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }
}.logo,
.nav-links a,
.btn,
.service-card,
.process-step,
.project-info a {
    transition: 0.35s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(18, 53, 36, 0.14);
}

.process-step {
    transition: 0.35s ease;
}

.process-step:hover {
    background: #123524;
    transform: translateY(-6px);
}

.process-step:hover h3 {
    color: #f7f4ee;
}

.process-step:hover p {
    color: #d8ddd7;
}

.process-step:hover span {
    color: #c7a467;
}/* Fade-in animacija */

.reveal {
    opacity: 0;
    transform: translateY(70px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}/* Premium portfolio hover */

.project-card {
    position: relative;
}

.project-image {
    transition: transform 0.6s ease, filter 0.6s ease;
}

.project-card:hover .project-image {
    transform: scale(1.035);
    filter: brightness(0.78);
}

.project-info {
    transition: transform 0.4s ease;
}

.project-card:hover .project-info {
    transform: translateY(-6px);
}

.project-info h3,
.project-info a {
    transition: color 0.35s ease;
}

.project-card:hover .project-info h3 {
    color: #c7a467;
}

.project-card:hover .project-info a {
    color: #f7f4ee;
}/* ===========================
   FOOTER
=========================== */

.site-footer {
    padding: 90px 6% 35px;
    background: #123524;
    text-align: center;
    border-top: 1px solid rgba(199, 164, 103, 0.35);
}

.footer-logo img {
    height: 190px;
    width: auto;
    display: block;
    margin: 0 auto 35px;
}

.footer-quote h2 {
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: 42px;
    font-weight: 500;
    line-height: 1.1;
}

.footer-quote p {
    margin-top: 22px;
    color: #c7a467;
    font-family: 'Cormorant Garamond', serif;
    font-size: 19px;
    font-style: italic;
    line-height: 1.6;
}

.footer-nav {
    margin-top: 55px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
}

.footer-nav a {
    color: #f7f4ee;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #c7a467;
}

.footer-copy {
    margin-top: 55px;
    color: #8fa095;
    font-size: 11px;
    letter-spacing: 1px;
}

@media (max-width: 700px) {
    .site-footer {
        padding: 70px 5% 30px;
    }

    .footer-logo img {
        height: 125px;
    }

    .footer-quote h2 {
        font-size: 40px;
    }

    .footer-nav {
        gap: 20px;
    }
}/* Ulazna animacija sajta */

body {
    animation: pageFadeIn 1s ease forwards;
}

@keyframes pageFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}.hero-content {
    animation: heroSlideIn 1s ease 0.2s both;
}

.hero-visual {
    animation: heroVisualIn 1.2s ease 0.35s both;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroVisualIn {
    from {
        opacity: 0;
        transform: translateX(35px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}/* ===========================
   CONTACT
=========================== */

.contact{

    padding:140px 6%;

    text-align:center;

}

.contact h2{

    font-family:'Cormorant Garamond',serif;

    font-size:50px;

    color:#123524;

    font-weight:500;

    line-height:1.1;

}

.contact-subtitle{

    margin-top:20px;

    color:#6b756f;

    font-size:20px;

    font-style:italic;

}

.contact-links{

    margin-top:65px;

    display:flex;

    flex-direction:column;

    gap:8px;

}

.contact-links a{

    color:#123524;

    font-size:22px;

    transition:.35s;

}

.contact-links a:hover{

    color:#C8A35A;

    letter-spacing:1px;

}

.contact-note{

    margin-top:6px;

    color:#8EA094;

    font-size:14px;

    letter-spacing:1px;

}.contact-warm-note {
    margin-top: 45px;
    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: 27px;
    font-style: italic;
}
.feature-card:nth-child(1)::after,
.feature-card:nth-child(2)::after,
.feature-card:nth-child(3)::after {
    content: "";
    position: absolute;
    top: 24px;
    right: 24px;
    background: rgba(199, 164, 103, 0.42);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.feature-card:nth-child(1)::after {
    width: 1px;
    height: 42px;
}

.feature-card:nth-child(2)::after {
    width: 38px;
    height: 1px;
}

.feature-card:nth-child(3)::after {
    width: 22px;
    height: 22px;
    background: transparent;
    border: 1px solid rgba(199, 164, 103, 0.42);
    border-radius: 50%;
}

.feature-card:hover::after {
    opacity: 1;
    transform: scale(1.18);
}/* ===========================
   VISION TEXT
=========================== */

.vision-text {
    margin-top: 18px;
    max-width: 420px;
    color: #d8cdbb;
    font-size: 15px;
    line-height: 1.8;
}

.project-info {
    align-items: flex-start;
}

.project-info > div {
    display: flex;
    flex-direction: column;
}

.project-info h3 {
    margin-bottom: 10px;
}/* ===========================
   VIZIJE — KORACI
=========================== */

.vizije-steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 70px;
}

/* Zlatna linija koja povezuje korake */

.vizije-steps::before {
    content: "";
    position: absolute;
    top: 58px;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(199, 164, 103, 0.55);
}

.vision-step {
    position: relative;
    min-height: 330px;
    padding: 0 34px 35px;
    border-right: 1px solid rgba(247, 244, 238, 0.12);
    transition: transform 0.35s ease;
}

.vision-step:first-child {
    padding-left: 0;
}

.vision-step:last-child {
    padding-right: 0;
    border-right: none;
}

.vision-step:hover {
    transform: translateY(-8px);
}

.vision-number {
    display: block;
    margin-bottom: 32px;
    color: #c7a467;
    font-family: 'Cormorant Garamond', serif;
    font-size: 34px;
    font-weight: 500;
}

.vision-dot {
    position: relative;
    z-index: 2;
    width: 13px;
    height: 13px;
    margin-bottom: 40px;
    border: 2px solid #c7a467;
    border-radius: 50%;
    background: #123524;
    transition: 0.35s ease;
}

.vision-step:hover .vision-dot {
    background: #c7a467;
    transform: scale(1.25);
    box-shadow: 0 0 0 7px rgba(199, 164, 103, 0.12);
}

.vision-step h3 {
    max-width: 260px;
    margin-bottom: 20px;
    color: #f7f4ee;
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 500;
    line-height: 1.05;
    transition: color 0.35s ease;
}

.vision-step:hover h3 {
    color: #c7a467;
}

.vision-step p {
    max-width: 290px;
    color: #d8cdbb;
    font-size: 14px;
    line-height: 1.8;
}

/* Tablet */

@media (max-width: 950px) {

    .vizije-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 0;
    }

    .vizije-steps::before {
        display: none;
    }

    .vision-step {
        min-height: 300px;
        padding: 30px;
        border-top: 1px solid rgba(199, 164, 103, 0.45);
    }

    .vision-step:first-child {
        padding-left: 30px;
    }

    .vision-step:last-child {
        padding-right: 30px;
    }
}

/* Telefon */

@media (max-width: 600px) {

    .vizije-steps {
        grid-template-columns: 1fr;
        margin-top: 50px;
        gap: 0;
    }

    .vision-step {
        min-height: auto;
        padding: 34px 0 45px 45px;
        border-top: none;
        border-right: none;
        border-left: 1px solid rgba(199, 164, 103, 0.55);
    }

    .vision-step:first-child {
        padding-left: 45px;
    }

    .vision-step:last-child {
        padding-right: 0;
    }

    .vision-dot {
        position: absolute;
        top: 42px;
        left: -7px;
    }

    .vision-number {
        margin-bottom: 22px;
        font-size: 30px;
    }

    .vision-step h3 {
        max-width: none;
        font-size: 34px;
    }

    .vision-step p {
        max-width: 100%;
    }
}/* ===========================
   MOBILE — O NAMA
=========================== */

@media (max-width: 700px) {

    .about {
        padding: 70px 5%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .about-image-inner {
        min-height: 380px;
    }

    .about-image-inner {
        padding: 28px;
    }

    .about-image-inner span {
        font-size: 72px;
        letter-spacing: 5px;
    }

    .about-content {
        max-width: 100%;
    }

    .about h2 {
        font-size: 48px;
        line-height: 0.98;
    }

    .about-content > p:not(.section-label) {
        margin-top: 22px;
        font-size: 15px;
        line-height: 1.75;
    }

    .text-link {
        margin-top: 26px;
        font-size: 11px;
    }
}/* ===========================
   MOBILE — USLUGE
=========================== */

@media (max-width: 700px) {

    .services {
        padding: 70px 5%;
    }

    .services-heading {
        margin-bottom: 40px;
    }

    .services-heading h2 {
        font-size: 50px;
        line-height: 0.95;
    }

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

    .service-card {
        padding: 32px 26px;
    }

    .service-card h3 {
        margin: 16px 0 12px;
        font-size: 32px;
    }

    .service-card p {
        font-size: 14px;
        line-height: 1.7;
    }
}/* ===========================
   MOBILE — PROCES
=========================== */

@media (max-width: 700px) {

    .process-section {
        padding: 70px 5%;
    }

    .process-heading {
        margin-bottom: 40px;
    }

    .process-heading h2 {
        font-size: 50px;
        line-height: 0.95;
    }

    .process-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .process-step {
        min-height: auto;
        padding: 32px 26px;
        border-left: 1px solid rgba(18, 53, 36, 0.15);
    }

    .process-step span {
        margin-bottom: 24px;
    }

    .process-step h3 {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .process-step p {
        font-size: 14px;
        line-height: 1.7;
    }
}/* ===========================
   MOBILE MENU BUTTON
=========================== */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 1px;
    margin: 6px 0;
    background: #123524;
    transition: 0.3s ease;
}

@media (max-width: 1000px) {
    .menu-toggle {
        display: block;
    }
}/* MOBILE HEADER FIX */

@media (max-width: 1000px) {

    .site-header {
        padding: 12px 5%;
    }

    .navbar {
        gap: 12px;
    }

    .logo img {
        height: 90px;
    }

    .language-switch {
        margin-left: auto;
    }

    .menu-toggle {
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        width: 38px;
        height: 38px;
        padding: 6px;
    }

    .menu-toggle span {
        display: block;
        width: 26px;
        height: 2px;
        margin: 3px 0;
        background: #123524;
    }
}/* HAMBURGER U X */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}/* ===========================
   MOBILE MENU
=========================== */


/* ===========================
   MOBILE DROPDOWN MENU
=========================== */

.mobile-menu {
    position: fixed;
    top: 114px;
    left: 0;
    width: 100%;
    padding: 24px 5% 30px;

    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    background: rgba(247, 244, 238, 0.98);
    border-top: 1px solid rgba(18, 53, 36, 0.12);
    box-shadow: 0 18px 35px rgba(18, 53, 36, 0.14);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-18px);
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease;

    z-index: 999;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mobile-menu a {
    width: 100%;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(18, 53, 36, 0.1);

    color: #123524;
    font-family: 'Cormorant Garamond', serif;
    font-size: 26px;
    font-weight: 500;
}

.mobile-menu a:last-child {
    border-bottom: none;
}
/* AKTIVNA STAVKA U MOBILNOM MENIJU */

.mobile-menu a.active-link {
    color: #b78d46;
    padding-left: 14px;
    border-left: 2px solid #b78d46;
}/* HEADER SCROLL */

.site-header.scrolled {
    background: rgba(247, 244, 238, 0.97);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 8px 30px rgba(18, 53, 36, 0.08);
    transition: all .35s ease;
}/* SELEKCIJA TEKSTA */

::selection {
    background: #c7a467;
    color: #123524;
}

::-moz-selection {
    background: #c7a467;
    color: #123524;
}/* ===========================
   DESKTOP ACTIVE NAVIGATION
=========================== */

.nav-links a.active-link {
    color: #b78d46;
}

.nav-links a.active-link::after {
    width: 100%;
    background: #b78d46;
}