/* ======================================
   GLOBAL STYLES & HELVETICA CONFIGURATION
   ====================================== */
:root {
    --max-width: 1140px;
    --page-padding: 24px;
    --black: #000000;
    --off-black: #111111;
    --white: #ffffff;
    --muted: #666666;
    --border-color: #e0e0e0;
    --font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

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

html, body {
    background-color: var(--white);
    color: var(--black);
    font-family: var(--font-family);
    -webkit-font-smoothing: antialiased;
    line-height: 1.5;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--page-padding);
}

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

/* ======================================
   NAVBAR & HEADER
   ====================================== */
.site-header {
    padding: 40px 0 30px 0;
    background: var(--white);
    position: relative;
    z-index: 1002;
}

.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    z-index: 1002;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--black);
    padding-bottom: 2px;
}

.nav-links a.active,
.nav-links a:hover {
    font-weight: 700;
    border-bottom: 1px solid var(--black);
}

/* HAMBURGER GUMB */
.nav-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    padding: 0;
    z-index: 1002;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--black);
    transition: all 0.3s ease-in-out;
}

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

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.editorial-subtitle {
    display: block;
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--muted);
}

/* ======================================
   LANDING PAGE HERO (CIJELA SLIKA)
   ====================================== */
.editorial-hero-image {
    width: 100%;
    margin-bottom: 60px;
}

.hero-img-wrap {
    width: 100%;
    height: auto;
}

.hero-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: none;
}

.editorial-statement {
    padding: 40px var(--page-padding) 90px;
}

.editorial-statement h1 {
    font-weight: 400;
    font-size: clamp(32px, 5.5vw, 80px);
    line-height: 1.05;
    letter-spacing: -1px;
    text-transform: uppercase;
    max-width: 1000px;
}

.editorial-text-block {
    margin-bottom: 120px;
}

.editorial-text-block h2 {
    font-weight: 400;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.editorial-text-block p {
    font-weight: 300;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 700px;
}

/* ======================================
   MREŽA SLIKA OD RUBA DO RUBA (LANDING & GALLERY)
   ====================================== */
.gallery-editorial,
.editorial-grid {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: 80px;
}

#landingGrid,
#galleryGrid {
    width: 100%;
    margin: 0;
}

#landingGrid .grid-sizer,
#landingGrid .grid-item {
    width: calc(50% - 8px);
    margin-bottom: 16px;
}

#galleryGrid .grid-sizer,
#galleryGrid .grid-item {
    width: calc(33.333% - 11px);
    margin-bottom: 16px;
}

.grid-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================
   ABOUT PAGE
   ====================================== */
.about-editorial {
    padding-top: 40px;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 100px;
}

.editorial-headline {
    font-weight: 700;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.about-split-text p {
    font-weight: 300;
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-split-text .lead-paragraph {
    font-size: 17px;
    font-weight: 400;
}

.about-split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.about-philosophy {
    margin-bottom: 100px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.philosophy-card h2 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.philosophy-card p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #333;
}

/* ======================================
   EDITORIAL FAQ (DARK SECTION)
   ====================================== */
.editorial-faq-dark {
    background-color: var(--black);
    color: var(--white);
    padding: 100px 0;
}

.faq-main-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 60px;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px 40px;
}

.faq-item h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.faq-item p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #cccccc;
}

/* ======================================
   PRICING PAGE
   ====================================== */
.pricing-hero {
    padding: 60px var(--page-padding);
    text-align: center;
}

.pricing-amount {
    font-size: clamp(48px, 8vw, 50px);
    font-weight: 900;
    letter-spacing: -2px;
    margin: 10px 0 20px 0;
}

.pricing-intro {
    font-size: 16px;
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.pricing-features {
    margin-bottom: 100px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 30px;
}

.price-box {
    border-top: 1px solid var(--black);
    padding-top: 20px;
}

.box-num {
    font-size: 12px;
    font-weight: 700;
    color: var(--muted);
    display: block;
    margin-bottom: 12px;
}

.price-box h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.price-box p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #444;
}

/* ======================================
   DARK CTA BLOCK & OPTIONS GRID
   ====================================== */
.editorial-cta-dark {
    background: var(--black);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.cta-inner {
    max-width: 800px;
}

.editorial-cta-dark h2 {
    font-size: clamp(20px, 3.5vw, 36px);
    font-weight: 400;
    line-height: 1.3;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.dark-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
    text-align: left;
    margin: 40px 0;
}

.dark-option-item h3 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.dark-option-item p {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: #cccccc;
    opacity: 0.9;
    margin-bottom: 0;
}

.dark-options-note {
    font-size: 12px;
    font-weight: 300;
    opacity: 0.65;
    margin-bottom: 30px;
    line-height: 1.5;
}

.cta-link {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--white);
    border-bottom: 1px solid var(--white);
    padding-bottom: 6px;
}

/* ======================================
   LIGHTBOX (Z-INDEX 2000 FIX)
   ====================================== */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
}

.lightbox.hidden {
    display: none;
}

.lb-inner img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
}

.lb-btn {
    position: absolute;
    background: none;
    border: none;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
}

.lb-close { top: 20px; right: 30px; font-size: 40px; }
.lb-prev { left: 30px; }
.lb-next { right: 30px; }
.lb-counter { position: absolute; bottom: 20px; color: var(--white); font-size: 12px; letter-spacing: 2px; }

/* ======================================
   CONTACT PAGE & SUCCESS MESSAGE
   ====================================== */
.contact-editorial {
    padding-top: 40px;
    padding-bottom: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.info-group {
    margin-bottom: 30px;
}

.info-group label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--muted);
    display: block;
    margin-bottom: 6px;
}

.info-group p {
    font-size: 18px;
    font-weight: 400;
}

.editorial-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.editorial-input {
    width: 100%;
    border: none;
    border-bottom: 1px solid var(--black);
    padding: 10px 0;
    font-family: var(--font-family);
    font-size: 14px;
    background: transparent;
    outline: none;
}

.editorial-input:focus {
    border-bottom-width: 2px;
}

.editorial-submit-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 16px 32px;
    font-family: var(--font-family);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    align-self: flex-start;
    margin-top: 10px;
}

.form-success-msg {
    padding: 40px 0;
    border-top: 1px solid var(--black);
    animation: fadeIn 0.4s ease-in-out;
}

.form-success-msg h3 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.form-success-msg p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: var(--muted);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ======================================
   FOOTER
   ====================================== */
.editorial-footer {
    padding: 60px 0 40px 0;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    margin-bottom: 24px;
}

.footer-nav a {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-subtitle {
    font-size: 11px;
    font-weight: 400;
    color: var(--muted);
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.footer-copy {
    font-size: 10px;
    font-weight: 300;
    color: var(--muted);
}

/* ======================================
   RESPONSIVE (MOBILE NAV & LAYOUT)
   ====================================== */
@media (max-width: 768px) {
    .site-header {
        padding: 20px 0;
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        background-color: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 32px;
        z-index: 1001;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        font-size: 14px;
        letter-spacing: 3px;
    }

    .editorial-grid,
    .about-split,
    .philosophy-grid,
    .faq-grid,
    .pricing-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    #landingGrid .grid-sizer,
    #landingGrid .grid-item,
    #galleryGrid .grid-sizer,
    #galleryGrid .grid-item {
        width: 100%;
    }
}


/* ======================================
   SCROLL REVEAL ANIMATIONS
   ====================================== */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.reveal.reveal-visible {
    opacity: 1;
    transform: translateY(0);
}