/* ==========================================
   1. FONTY, PREMENNÉ A ZÁKLADNÝ RESET
   ========================================== */
@font-face { font-display: swap; font-family: 'Lato'; font-style: normal; font-weight: 300; src: url('/fonts/lato-v24-latin-ext_latin-300.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Lato'; font-style: italic; font-weight: 300; src: url('/fonts/lato-v24-latin-ext_latin-300italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Lato'; font-style: normal; font-weight: 400; src: url('/fonts/lato-v24-latin-ext_latin-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Lato'; font-style: italic; font-weight: 400; src: url('/fonts/lato-v24-latin-ext_latin-italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Lato'; font-style: normal; font-weight: 700; src: url('/fonts/lato-v24-latin-ext_latin-700.woff2') format('woff2'); }

@font-face { font-display: swap; font-family: 'Playfair Display'; font-style: normal; font-weight: 400; src: url('/fonts/playfair-display-v40-latin_latin-ext-regular.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Playfair Display'; font-style: italic; font-weight: 400; src: url('/fonts/playfair-display-v40-latin_latin-ext-italic.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Playfair Display'; font-style: normal; font-weight: 600; src: url('/fonts/playfair-display-v40-latin_latin-ext-600.woff2') format('woff2'); }
@font-face { font-display: swap; font-family: 'Playfair Display'; font-style: normal; font-weight: 700; src: url('/fonts/playfair-display-v40-latin_latin-ext-700.woff2') format('woff2'); }

:root {
    --bg-cream: #F9F8F4;
    --text-dark: #1A1A1A;
    --gold-accent: #C5A059;
    --gold-hover: #A68545;
    --white-clean: #FFFFFF;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-variant-ligatures: common-ligatures;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    color: var(--text-dark);
    background-color: var(--bg-cream);
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.5px;
}

h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; line-height: 1.3; }
h2 { font-size: 2.2rem; text-align: center; }
h3 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 20px; }
h4 { font-size: 1.35rem; font-weight: 700; margin-top: 30px; margin-bottom: 15px; line-height: 1.4; }

.lovable-container {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.readable-width {
    max-width: 800px;
    margin: 0 auto;
}

.gold-italic { font-style: italic; color: var(--gold-accent); }

/* ==========================================
   2. HLAVIČKA, MENU A LINKA ČÍTANIA
   ========================================== */
.top-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    background-color: rgba(249, 248, 244, 0.93);
    backdrop-filter: blur(12px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    border-bottom: 1px solid rgba(197, 160, 89, 0.12);
}

.top-navbar .logo-link { margin-right: 40px; display: block; text-decoration: none; cursor: pointer; z-index: 1001; }
.navbar-logo { max-height: 105px; width: auto; display: block; padding: 5px 0; filter: drop-shadow(0px 8px 16px rgba(0, 0, 0, 0.09)) drop-shadow(0px 2px 4px rgba(197, 160, 89, 0.15)); transition: all 0.3s ease; }
.navbar-logo:hover { transform: scale(1.03); }

.nav-menu { display: flex; list-style: none; gap: 35px; }
.nav-menu a { font-family: 'Lato', sans-serif; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; position: relative; }
.nav-menu a:hover { color: var(--gold-accent); }
.nav-menu a::after { content: ''; position: absolute; bottom: -6px; left: 0; width: 0; height: 1px; background-color: var(--gold-accent); transition: width 0.3s ease; }
.nav-menu a:hover::after { width: 100%; }

.nav-right-wrapper { display: flex; align-items: center; gap: 20px; }
.lang-switcher { font-family: 'Lato', sans-serif; font-size: 0.85rem; letter-spacing: 2px; font-weight: 700; min-width: 120px; text-align: right; text-transform: uppercase; }
.lang-switcher a, .lang-switcher a:visited { color: var(--text-dark); text-decoration: none; transition: color 0.3s ease; }
.lang-switcher a:hover { color: var(--gold-accent); }
.lang-switcher a.active { color: var(--gold-accent); pointer-events: none; }
.lang-separator { color: rgba(26, 26, 26, 0.2); margin: 0 5px; }

/* ZLATÁ LINKA ČÍTANIA (PROGRESS BAR) */
#readingProgressContainer { 
    position: fixed; 
    top: 120px; /* Na desktope presne pod 120px vysokým navbarom */
    left: 0; 
    width: 100%; 
    height: 3px; 
    background-color: transparent; 
    z-index: 1002; 
    pointer-events: none; 
}

#readingProgressBar { 
    width: 0%; 
    height: 100%; 
    background-color: var(--gold-accent); 
    transition: width 0.1s ease-out; 
}

/* RESPONSÍVNE PRISPÔSOBENIE PRE MOBIL */
@media (max-width: 768px) {
    #readingProgressContainer { 
        top: 95px; /* Na mobile sa automaticky prichytí presne pod 95px mobilný navbar */
    }
}
/* ==========================================
   3. TLAČIDLÁ A KOMPONENTY
   ========================================== */
.btn-solid-dark {
    font-family: 'Lato', sans-serif;
    background-color: var(--text-dark);
    color: var(--white-clean);
    padding: 16px 35px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.btn-solid-dark:hover { background-color: var(--gold-accent); color: var(--text-dark); }

.btn-text-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--text-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--text-dark);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}
.btn-text-link:hover { color: var(--gold-accent); border-color: var(--gold-accent); }

.gf-btn-center-wrapper { text-align: center; margin-top: 60px; }

.scroll-to-top {
    position: fixed; bottom: 30px; right: 30px; z-index: 999;
    background-color: rgba(249, 248, 244, 0.9); color: var(--gold-accent);
    border: 1px solid rgba(197, 160, 89, 0.2); width: 50px; height: 50px;
    display: flex; align-items: center; justify-content: center; text-decoration: none;
    font-size: 1.5rem; border-radius: 2px; backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04); transition: all 0.3s ease;
    opacity: 0; pointer-events: none;
}
.scroll-to-top.visible { opacity: 1; pointer-events: auto; }
.scroll-to-top:hover { background-color: var(--gold-accent); color: var(--white-clean); border-color: var(--gold-accent); transform: translateY(-3px); box-shadow: 0 10px 25px rgba(197, 160, 89, 0.25); }
/* ==========================================
   OBRYSOVÉ TLAČIDLO (OUTLINE) S HOVER EFEKTOM
   ========================================== */
.btn-outline-dark {
    display: inline-block;
    padding: 16px 36px;
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.btn-outline-dark:hover {
    background-color: var(--gold-accent);
    color: #fff;
    border-color: var(--gold-accent);
}

/* ==========================================
   4. ÚVODNÉ SEKCIE (HERO) A VIZUÁLY
   ========================================== */
.lovable-hero { background-color: var(--bg-cream); padding: 180px 0 100px 0; }
.hero-split { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.hero-eyebrow { font-family: 'Lato', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--gold-accent); margin-bottom: 25px; font-weight: 700; }
.hero-elegant-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.2rem); line-height: 1.05; margin-bottom: 30px; font-weight: 400; letter-spacing: -0.5px; }
.hero-description { font-size: 1.15rem; line-height: 1.7; color: rgba(26, 26, 26, 0.75); font-weight: 300; max-width: 550px; margin-bottom: 40px; }
.hero-main-img { width: 100%; height: auto; object-fit: cover; border-radius: 2px; }
.hero-buttons { display: flex; flex-wrap: wrap; align-items: center; gap: 30px; }

.gf-page-intro-section { padding: 200px 20px 80px 20px; text-align: center; background-color: var(--bg-cream); }
.gf-page-intro-title { font-size: clamp(3rem, 6vw, 4.5rem); margin-bottom: 0; }
.gf-page-intro-desc { margin: 30px auto 0 auto; max-width: 800px; }

.gf-visual-section { background-color: var(--bg-cream); padding-bottom: 100px; }
.gf-visual-img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); display: block; }

/* ==========================================
   5. OBSAHOVÉ BLOKY (TEXTY, PRÍBEHY, FILOZOFIA)
   ========================================== */
.lovable-reading-section { padding: 0 0 100px 0; background-color: var(--bg-cream); }
/* Globálne zjednotenie identity textu v článkoch */
.story-rich-text p, 
.story-rich-text ul, 
.story-rich-text ol, 
.story-rich-text li { 
    font-size: 1.15rem; 
    line-height: 1.9; 
    color: rgba(26, 26, 26, 0.75) !important; /* Vynútenie identickej prémiovej tmavosivej */
    font-weight: 300; 
}

.story-rich-text p {
    margin-bottom: 25px;
}
.story-rich-text strong { font-weight: 700; color: var(--text-dark); }

.gf-section { padding: 120px 0; background-color: var(--bg-cream); }
.gf-section-title { font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.2; margin-top: 0; margin-bottom: 20px; text-align: center; }
.gf-section-subtitle { font-size: 1.15rem; line-height: 1.8; color: rgba(26,26,26,0.75); font-weight: 300; text-align: center; max-width: 800px; margin: 0 auto 60px auto; }
.gf-section-label { font-size: 0.85rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-accent); font-weight: 700; margin-bottom: 60px; text-align: center; }
.gf-text-large { font-size: 1.25rem; line-height: 1.8; color: rgba(26,26,26,0.75); margin-bottom: 25px; }

.gf-philosophy-content { text-align: center; }
.gf-philosophy-content .hero-eyebrow { margin-bottom: 20px; }
.gf-philosophy-content .gf-section-title { margin-bottom: 40px; }
.gf-philosophy-text-last { margin-bottom: 0 !important; }
.gf-philosophy-btn-wrap { margin-top: 60px; text-align: center; }

/* ==========================================
   6. GRIDY (ŠTATISTIKY, BENEFITY, ROADMAP)
   ========================================== */
.lovable-stats-section { background-color: rgba(197, 160, 89, 0.04); border-top: 1px solid rgba(197, 160, 89, 0.15); border-bottom: 1px solid rgba(197, 160, 89, 0.15); padding: 100px 0; }
.lovable-stats-section .gf-section-title { margin-bottom: 15px; }
.stats-grid { display: grid; grid-template-columns: 1fr; gap: 50px; text-align: center; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 6vw, 4.5rem); color: var(--gold-accent); line-height: 1; margin-bottom: 15px; font-weight: 400; white-space: nowrap !important; }
.stat-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(26, 26, 26, 0.6); font-weight: 700; }
.gf-stats-btn-wrap { text-align: center; margin-top: 60px; }

.gf-features-section { background-color: #F4EFEA; padding: 120px 0; border-top: 1px solid rgba(197, 160, 89, 0.15); border-bottom: 1px solid rgba(197, 160, 89, 0.15); }
.gf-features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.gf-feature-card { background-color: var(--bg-cream); padding: 40px; border-radius: 2px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); }
.gf-feature-number { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold-accent); margin: 0 0 15px 0; line-height: 1; }
.gf-feature-title { font-size: 1.6rem; margin-top: 0; margin-bottom: 15px; font-weight: 400; }
.gf-feature-text { font-size: 1.05rem; line-height: 1.7; color: rgba(26,26,26,0.7); margin: 0; }

.gf-roadmap-section { padding: 100px 0; background-color: var(--white-clean); border-top: 1px solid rgba(197,160,89,0.2); }
.gf-roadmap-title { font-size: 2.5rem; text-align: center; margin-bottom: 15px; }
.gf-roadmap-subtitle { text-align: center; font-size: 1.1rem; color: rgba(26, 26, 26, 0.7); max-width: 600px; margin: 0 auto 60px auto; }
.protokol-roadmap-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; margin: 40px 0 60px 0; }
.roadmap-card { background-color: #F4EFEA; border: 1px solid rgba(197, 160, 89, 0.15); border-radius: 2px; padding: 30px; display: flex; flex-direction: column; justify-content: space-between; transition: all 0.3s ease; box-shadow: 0 4px 20px rgba(197, 160, 89, 0.02); }
.roadmap-card:hover { transform: translateY(-2px); border-color: rgba(197, 160, 89, 0.35); box-shadow: 0 8px 25px rgba(197, 160, 89, 0.06); }
.roadmap-card h4 { font-size: 0.95rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 700; margin-top: 0; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.roadmap-card span.badge { font-size: 0.7rem; background: rgba(197, 160, 89, 0.15); padding: 4px 8px; border-radius: 2px; color: var(--gold-accent); letter-spacing: 1px; }
.roadmap-card p { font-size: 0.95rem; color: #444; line-height: 1.6; margin: 0; }
.gf-cta-block { text-align: center; margin-top: 80px; }
.gf-cta-title { font-size: 1.8rem; margin-bottom: 20px; }
.gf-cta-text { max-width: 600px; margin: 0 auto 30px auto; color: rgba(26, 26, 26, 0.7); line-height: 1.6; }

/* ==========================================
   7. PROTOKOL (ŠPECIFICKÉ PRVKY)
   ========================================== */
.gf-invitation-section { background-color: rgba(197, 160, 89, 0.03); padding: 40px 0; border-top: 1px solid rgba(197, 160, 89, 0.1); }
.gf-invitation-box { background-color: #F4EFEA; padding: 40px; border-left: 3px solid var(--gold-accent); border-radius: 2px; margin: 0 auto 80px auto; max-width: 950px; text-align: center; box-shadow: 0 4px 20px rgba(197, 160, 89, 0.02); }
.gf-invitation-quote { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: rgba(26, 26, 26, 0.85); line-height: 1.7; margin-bottom: 25px; }
.gf-invitation-author-name { font-size: 1.1rem; color: var(--gold-accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }

.gf-benefits-section { padding: 50px 0 60px 0; background-color: var(--bg-cream); }
.gf-center-block { text-align: center; max-width: 850px; margin: 0 auto; }
.gf-benefits-intro-text, .gf-architecture-text, .gf-flexibility-text { font-size: 1.15rem; line-height: 1.8; color: rgba(26,26,26,0.8); margin-bottom: 40px; }
.gf-benefits-grid { display: grid; grid-template-columns: 1fr; gap: 30px; margin-top: 40px; }
.gf-benefit-card { background-color: var(--white-clean); border-top: 3px solid var(--gold-accent); padding: 40px 30px; box-shadow: 0 10px 30px rgba(0,0,0,0.03); border-radius: 2px; }
.gf-benefit-title { font-size: 1.4rem; margin-top: 0; margin-bottom: 15px; font-weight: 600; }
.gf-benefit-text { font-size: 1.05rem; line-height: 1.7; margin: 0; }

.gf-architecture-section { padding-top: 50px; padding-bottom: 40px; }
.gf-pillars-section { padding: 40px 0 100px 0; background-color: var(--bg-cream); }
.pillar-article { display: grid; grid-template-columns: 1fr; gap: 20px; border-bottom: 1px solid rgba(197, 160, 89, 0.2); padding-bottom: 50px; margin-bottom: 50px; align-items: flex-start; }
.pillar-article:last-child { border-bottom: none; margin-bottom: 40px; }
.pillar-number { font-family: 'Playfair Display', serif; font-size: clamp(3.5rem, 6vw, 4.5rem); color: var(--gold-accent); line-height: 1; margin: 0; }
.pillar-title { font-size: 2.2rem; margin-bottom: 15px; margin-top: 5px; text-align: left !important; }
.pillar-text { font-size: 1.15rem; line-height: 1.85; color: rgba(26, 26, 26, 0.75); font-weight: 300; text-align: left; margin: 0; }
.gf-flexibility-box { background-color: #F4EFEA; padding: 50px; border-radius: 2px; border-left: 3px solid var(--gold-accent); margin: 60px 0; }

/* ==========================================
   8. VÝSLEDKY & KAZUISTIKY (ŠIROKÉ KARTY)
   ========================================== */
.results-highlight-box { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; background-color: #F4EFEA; padding: 50px 30px; border: 1px solid rgba(197, 160, 89, 0.15); border-radius: 2px; box-shadow: 0 4px 30px rgba(197, 160, 89, 0.03); }
.results-huge-number-wrapper { text-align: center; }
.results-huge-number { font-family: 'Playfair Display', serif; font-size: clamp(6rem, 12vw, 9rem); color: var(--gold-accent); line-height: 0.9; margin: 0; font-weight: 400; }
.results-huge-label { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(26, 26, 26, 0.6); font-weight: 700; margin-top: 15px; }
.results-highlight-text { text-align: center; }

.gf-results-hero-title { font-size: clamp(2rem, 3.5vw, 2.8rem); margin-top: 0; margin-bottom: 25px; font-weight: 400; line-height: 1.2; }
.gf-results-text { font-size: 1.15rem; line-height: 1.8; color: rgba(26,26,26,0.75); font-weight: 300; margin-bottom: 20px; }
.gf-results-text-bold { font-size: 1.1rem; line-height: 1.8; font-weight: 400; margin-bottom: 0; }

.gf-casestudies-section { padding: 100px 0 120px 0; background-color: rgba(197, 160, 89, 0.02); border-top: 1px solid rgba(197, 160, 89, 0.1); }
.gf-stories-stack { display: flex; flex-direction: column; gap: 30px; max-width: 1000px; margin: 0 auto; }
.gf-story-wide-card { background-color: #F4EFEA; border: 1px solid rgba(197, 160, 89, 0.15); border-radius: 2px; padding: 35px; border-left: 3px solid var(--gold-accent); box-shadow: 0 4px 20px rgba(197, 160, 89, 0.02); transition: transform 0.3s ease; }
.gf-story-wide-card:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(197, 160, 89, 0.06); border-color: rgba(197, 160, 89, 0.3); }
.gf-story-wide-header { margin-bottom: 20px; }
.gf-card-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: rgba(26,26,26,0.5); font-weight: 700; margin-bottom: 25px; }
.gf-card-title { font-size: 1.8rem; font-style: italic; margin-bottom: 25px; line-height: 1.3; font-weight: 400; }
.gf-card-text { font-size: 1.15rem; line-height: 1.8; font-weight: 300; margin: 0; }

.gf-results-summary-section { padding: 0 0 80px 0; background-color: rgba(197, 160, 89, 0.02); }
.gf-results-summary-text { font-size: 1.25rem; line-height: 1.8; color: rgba(26,26,26,0.8); margin: 0 auto; max-width: 750px; text-align: center; }

.gf-final-cta-section { text-align: center; padding: 120px 20px; background-color: var(--bg-cream); }
.gf-final-cta-title { font-size: clamp(2rem, 4vw, 2.8rem); margin-top: 0; margin-bottom: 40px; font-weight: 400; }

/* ==========================================
   9. O MNE (PRÍBEH) & VIZUÁLNE CITÁTY
   ========================================== */
.lovable-story-section { padding: 120px 0; background-color: var(--bg-cream); }
.story-split { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.story-image-wrapper { position: relative; }
.story-image { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); }

.gf-story-hero-section { padding-top: 180px; }
.gf-story-hero-title { margin-bottom: 25px; }
.gf-story-heading { font-size: 2.2rem; margin: 50px 0 20px 0; }
.gf-story-heading-first { margin-top: 0; }
.gf-story-section-blank { padding-top: 30px; padding-bottom: 0; }
.gf-story-section-continuous { padding-top: 0; }

.gf-visual-quote-section { padding: 100px 20px; background-color: var(--gold-accent); text-align: center; margin: 60px 0; }
.gf-visual-quote-text { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3.2rem); color: var(--white-clean); max-width: 900px; margin: 0 auto; line-height: 1.3; font-style: italic; font-weight: 400; }

.gf-story-inline-wrap { margin: 60px 0; text-align: center; }
.gf-story-inline-img { width: 100%; max-width: 600px; height: auto; border-radius: 2px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.gf-story-highlight-text { font-size: 1.3rem; color: var(--gold-accent); font-family: 'Playfair Display', serif; font-weight: 600; text-align: center; margin: 50px 0; }
/* ZMENŠENIE MEDZERY POD ÚVODOM NA STRÁNKE O MNE */
.gf-story-hero-section {
    padding-bottom: 60px;
}

@media (max-width: 768px) {
    .gf-story-hero-section {
        padding-bottom: 40px; /* Na mobiloch ju stlačíme ešte viac */
    }
}
/* ==========================================
   10. ŽURNÁL A ČLÁNKY
   ========================================== */
.gf-journal-section { padding: 100px 0 80px 0; background-color: rgba(197, 160, 89, 0.02); border-top: 1px solid rgba(197, 160, 89, 0.1); }
.gf-journal-list-section { padding: 40px 0 150px 0; background-color: var(--bg-cream); }

.journal-list { margin-top: 20px; }
.journal-item-with-image { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 60px 0; border-bottom: 1px solid rgba(197, 160, 89, 0.15); align-items: center; }
.journal-image-link { display: block; overflow: hidden; border-radius: 2px; box-shadow: 0 10px 30px rgba(0,0,0,0.06); }
.journal-image { width: 100%; height: auto; display: block; transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); aspect-ratio: 16 / 10; object-fit: cover; }
.journal-item-with-image:hover .journal-image { transform: scale(1.04); }

.journal-content-wrap { display: flex; flex-direction: column; justify-content: center; }
.journal-date { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-accent); font-weight: 700; margin: 0 0 15px 0; }
.journal-title { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--text-dark); text-decoration: none; line-height: 1.25; margin: 0 0 20px 0; display: block; transition: color 0.3s ease; }
.journal-item-with-image:hover .journal-title { color: var(--gold-accent); }
.journal-excerpt { font-size: 1.15rem; line-height: 1.85; color: rgba(26, 26, 26, 0.75); font-weight: 300; margin: 0; }

.journal-read-more { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--text-dark); text-decoration: none; margin-top: 30px; display: inline-block; transition: all 0.3s ease; font-weight: 700; border-bottom: 1px solid transparent; padding-bottom: 4px; align-self: flex-start; }
.journal-read-more:hover { color: var(--gold-accent); border-bottom-color: var(--gold-accent); }

/* Teasery v Žurnále */
.gf-journal-teaser { border-bottom: none !important; grid-template-columns: 1fr !important; }
.gf-journal-teaser-content { text-align: center; max-width: 600px; margin: 40px auto 0 auto; padding: 40px; background-color: rgba(197, 160, 89, 0.03); border: 1px dashed rgba(197, 160, 89, 0.3); }
.gf-journal-teaser-title { display: block; color: rgba(26, 26, 26, 0.6) !important; cursor: default; margin-bottom: 15px; text-decoration: none; }
.gf-journal-teaser-text { color: rgba(26, 26, 26, 0.6); }
.gf-teaser-date { color: var(--gold-accent) !important; }

/* Detail Článku */
.article-header { padding: 200px 20px 60px 20px; background-color: var(--bg-cream); text-align: center; }
.article-back-link { color: var(--gold-accent); text-decoration: none; font-size: 0.75rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; margin-bottom: 40px; display: inline-block; transition: transform 0.3s ease; }
.article-back-link:hover { transform: translateX(-5px); }
.article-subtitle { font-size: 1.25rem; line-height: 1.8; color: rgba(26,26,26,0.7); margin-bottom: 30px; font-weight: 300; }
.article-meta { font-size: 0.75rem; color: rgba(26,26,26,0.5); text-transform: uppercase; letter-spacing: 0.22em; font-weight: 700; }
.article-hero-section { background-color: var(--bg-cream); padding-bottom: 80px; }
.article-hero-img { width: 100%; max-height: 700px; object-fit: cover; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.article-hero-caption { text-align: center; font-size: 0.85rem; color: rgba(26,26,26,0.6); font-style: italic; margin-top: 20px; }

/* Formátovanie textu v článku */
.article-h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin: 70px 0 25px 0; font-weight: 400; line-height: 1.25; }
.article-h4 { font-size: 1.2rem; font-weight: 700; margin: 50px 0 15px 0; text-transform: uppercase; letter-spacing: 1px; }
.article-ul { list-style: none; padding: 0; margin: 0 0 30px 0; }
.article-ul li { font-size: 1.15rem; line-height: 1.85; font-weight: 300; margin-bottom: 15px; padding-left: 30px; position: relative; }
.article-ul li::before { content: "—"; position: absolute; left: 0; color: var(--gold-accent); font-weight: bold; }
.article-figure { margin: 60px 0; text-align: center; }
.article-inline-img { width: 100%; height: auto; border-radius: 2px; box-shadow: 0 10px 40px rgba(0,0,0,0.06); }
.article-figcaption { font-size: 0.9rem; color: rgba(26, 26, 26, 0.5); font-style: italic; margin-top: 15px; line-height: 1.6; }

/* Obsah článku (TOC) */
.article-toc-box { background-color: #F4EFEA; border-left: 3px solid var(--gold-accent); border-top: 1px solid rgba(197, 160, 89, 0.1); border-right: 1px solid rgba(197, 160, 89, 0.1); border-bottom: 1px solid rgba(197, 160, 89, 0.1); padding: 50px 40px; margin-bottom: 60px; border-radius: 2px; box-shadow: 0 4px 20px rgba(197, 160, 89, 0.04); }
.article-toc-title { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-top: 0; margin-bottom: 30px; font-weight: 400; }
.article-toc-list { display: grid; gap: 15px; }
.article-toc-link { display: flex; gap: 15px; text-decoration: none; color: var(--text-dark); align-items: baseline; transition: color 0.3s ease; }
.article-toc-link:hover { color: var(--gold-accent); }
.article-toc-number { font-size: 0.8rem; font-weight: 700; color: var(--gold-accent); }
.article-toc-text { font-size: 1.05rem; }

/* Promo a Konverzné boxy v článku */
.article-promo-box { margin: 60px 0; padding: 30px; background-color: rgba(197, 160, 89, 0.03); border-left: 2px solid var(--gold-accent); border-radius: 2px; transition: transform 0.3s ease; }
.article-promo-box:hover { transform: translateX(5px); }
.article-promo-tag { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold-accent); font-weight: 700; margin-bottom: 10px; }
.article-promo-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin: 0; font-weight: 400; }
.article-promo-title a { color: inherit; text-decoration: none; }

.article-share-section { margin-top: 80px; padding-top: 40px; border-top: 1px solid rgba(197, 160, 89, 0.2); text-align: center; }
.article-share-title { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.22em; color: rgba(26,26,26,0.5); font-weight: 700; margin-bottom: 20px; }
.article-share-buttons { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }

.article-conversion-box { margin-top: 60px; padding: 60px 40px; background-color: #F4EFEA; border-top: 3px solid var(--gold-accent); text-align: center; border-radius: 2px; }
.article-conversion-title { font-family: 'Playfair Display', serif; font-size: 2rem; margin-top: 0; margin-bottom: 20px; font-weight: 400; }
.article-conversion-text { font-size: 1.15rem; line-height: 1.8; color: rgba(26,26,26,0.75); font-weight: 300; margin-bottom: 30px; }

/* ELEGANTNÉ ODKAZY V TEXTOCH ČLÁNKOV */

/* 1. Klasický zlatý odkaz v texte (pre nový článok) */
.article-link-gold {
    color: var(--gold-accent);
    font-weight: 400;
    text-decoration: none;
    transition: color 0.3s ease, opacity 0.3s ease;
}
.article-link-gold:hover {
    opacity: 0.8;
}

/* 2. Odkaz skrytý priamo v nadpise H3 (dedí farbu nadpisu, pri hoveri zozlatne) */
.article-title-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed var(--gold-accent);
    transition: color 0.3s ease;
}
.article-title-link:hover {
    color: var(--gold-accent) !important;
}

/* 3. Výrazný zlatý odkaz (tučný, napr. pre "základné piliere") */
.article-link-bold {
    color: var(--gold-accent);
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.article-link-bold:hover {
    opacity: 0.7;
}
/* Korekcia a odsadenie sekcie s referenciami */
.article-references-section {
    margin-top: 60px;
    padding-top: 45px;
    border-top: 1px dashed rgba(197, 160, 89, 0.2); /* Jemná prerušovaná čiara nad referenciami */
}

.article-references-title {
    margin-bottom: 25px;
}
.article-ref-counter { color: var(--gold-accent); text-decoration: none; font-size: 0.85rem; font-weight: 700; vertical-align: super; margin-left: 2px; transition: opacity 0.3s; } 
.article-ref-counter:hover { opacity: 0.7; }
/* 1. Presné lícovanie skoku tesne pod menu na MOBILOCH (navbar má 95px) */
.article-references-section,
.article-references-list li {
    scroll-margin-top: 96px !important; /* Presne lícuje s 95px mobilným menu */
}

/* 2. Presné lícovanie skoku tesne pod menu na DESKTOPE / PC (navbar má 120px) */
@media (min-width: 768px) {
    .article-references-section,
    .article-references-list li {
        scroll-margin-top: 121px !important; /* Presne lícuje so 120px desktopovým menu */
    }
}
/* ==========================================
   11. PRÁVNE STRÁNKY
   ========================================== */
.gf-policy-heading { font-size: 2rem; margin: 60px 0 20px 0; font-weight: 600; }
.gf-policy-heading:first-of-type { margin-top: 40px; }

/* ==========================================
   12. PÄTIČKA, KONTAKT A COOKIES
   ========================================== */
.gf-contact-section { padding: 60px 0; background-color: var(--bg-cream); margin: 0; border-top: 1px solid rgba(197, 160, 89, 0.1); }
.gf-contact-title { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 2px; color: var(--gold-accent); font-weight: 700; text-align: center; margin-bottom: 10px; }
.gf-contact-link-wrapper { text-align: center; }
.contact-email-link { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text-dark); text-decoration: none; display: inline-block; margin-top: 10px; transition: color 0.3s ease; }
.contact-email-link:hover { color: var(--gold-accent); }

footer { background-color: #F3F1E9; padding: 40px 0 20px 0; text-align: center; font-size: 0.85rem; color: #666; border-top: 1px solid rgba(197, 160, 89, 0.08); }

.gf-cookie-widget { position: fixed; bottom: -100%; right: 20px; width: calc(100% - 40px); max-width: 420px; background-color: #F4EFEA; border: 1px solid rgba(197, 160, 89, 0.2); border-radius: 4px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); padding: 30px; z-index: 9999; transition: bottom 0.6s cubic-bezier(0.25, 1, 0.5, 1); opacity: 0; }
.gf-cookie-widget.visible { bottom: 20px; opacity: 1; }
.gf-cookie-title { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-top: 0; margin-bottom: 12px; }
.gf-cookie-text { font-size: 0.95rem; line-height: 1.6; color: rgba(26,26,26,0.75); margin-bottom: 25px; }
.gf-cookie-buttons { display: flex; flex-direction: column; gap: 12px; }
@media (min-width: 480px) { .gf-cookie-buttons { flex-direction: row; align-items: center; } }
.gf-cookie-btn-accept { background-color: var(--text-dark); color: #fff; border: none; padding: 12px 24px; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; cursor: pointer; transition: background-color 0.3s ease; font-weight: 700; flex: 1; text-align: center; }
.gf-cookie-btn-accept:hover { background-color: var(--gold-accent); }
.gf-cookie-btn-reject { background-color: transparent; color: rgba(26,26,26,0.6); border: none; padding: 12px 15px; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: color 0.3s ease; font-weight: 700; text-decoration: underline; }
.gf-cookie-btn-reject:hover { color: var(--text-dark); }

/* ==========================================
   13. RESPONZÍVNE OPRAVY (MEDIA QUERIES)
   ========================================== */
@media (min-width: 768px) {
    .pillar-article { grid-template-columns: 2fr 10fr; gap: 40px; }
    .gf-benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .journal-item-with-image { grid-template-columns: 5fr 7fr; gap: 60px; }
    .menu-toggle { display: none; }
	 .stats-grid { 
        grid-template-columns: repeat(3, 1fr); 
        gap: 0; 
    }
    .stat-border { 
        border-left: 1px solid rgba(197, 160, 89, 0.2); 
        border-right: 1px solid rgba(197, 160, 89, 0.2); 
    }
}

@media (min-width: 992px) {
    .hero-split { grid-template-columns: 7fr 5fr; gap: 80px; }
    .hero-text-content { order: 1; }
    .hero-image-content { order: 2; }
    .story-split { grid-template-columns: 5fr 7fr; gap: 90px; }
    .results-highlight-box { grid-template-columns: 5fr 7fr; gap: 60px; padding: 70px 60px; }
    .results-huge-number-wrapper { text-align: left; border-right: 1px solid rgba(197, 160, 89, 0.2); padding-right: 40px; }
    .results-highlight-text { text-align: left; }
    .gf-story-wide-card { padding: 50px 60px; display: grid; grid-template-columns: 1fr 2fr; gap: 50px; align-items: center; }
    .gf-story-wide-header { margin-bottom: 0; border-right: 1px solid rgba(197, 160, 89, 0.2); padding-right: 40px; }
}

@media (max-width: 991px) {
    .story-image-wrapper { max-width: 480px; margin: 0 auto; }
}

@media (max-width: 992px) and (min-width: 768px) {
    .stat-number { font-size: clamp(2rem, 4vw, 3.5rem) !important; }
}

@media (max-width: 768px) {
    .top-navbar { height: 95px; padding: 0 24px; }
    .navbar-logo { max-height: 75px; }
    
    .nav-menu { position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background-color: #FAF8F4; flex-direction: column; justify-content: center; align-items: center; gap: 40px; z-index: 998; opacity: 0; pointer-events: none; transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1); transform: translateY(-20px); }
    .nav-menu.active { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav-menu a { font-size: 1.2rem; letter-spacing: 3px; }

    .menu-toggle { display: flex; flex-direction: column; justify-content: space-between; width: 26px; height: 18px; background: none; border: none; cursor: pointer; padding: 0; z-index: 1001; }
    .menu-toggle span { width: 100%; height: 2px; background-color: var(--text-dark); transition: all 0.3s ease; transform-origin: left center; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(2px, -2px); background-color: var(--gold-accent); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(2px, 2px); background-color: var(--gold-accent); }

    .scroll-to-top { bottom: 20px; right: 20px; width: 45px; height: 45px; }
    
    h3[id], h4[id] { scroll-margin-top: 120px; }
    section[id] { scroll-margin-top: 95px; }
}

@media (max-width: 500px) {
    .article-inline-promo { padding: 18px 20px; }
    .promo-heading { font-size: 1.05rem; }
}

@media (max-width: 480px) {
    .btn-solid-dark { display: inline-block; white-space: normal; line-height: 1.5; padding: 12px 20px; text-align: center; height: auto; }
    .btn-text-link { line-height: 2; display: inline-block; }
}

h3[id], h4[id], div[id].article-toc-box { scroll-margin-top: 155px; }
section[id] { scroll-margin-top: 120px; }

/* ==========================================
   KARTY ČLÁNKOV (PRE HLAVNÚ STRÁNKU)
   ========================================== */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 45px 35px;
    margin-bottom: 80px;
    margin-top: 20px;
}

.archive-card {
    background-color: #F4EFEA;
    border: 1px solid rgba(197, 160, 89, 0.12);
    border-radius: 2px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 4px 20px rgba(197, 160, 89, 0.02);
}

.archive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.3);
}

.archive-card-image-link {
    display: block;
    overflow: hidden;
    border-radius: 1px;
    margin-bottom: 25px;
}

.archive-card-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.archive-card:hover .archive-card-img {
    transform: scale(1.03);
}

.archive-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 15px 0;
}

.archive-card-title a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.archive-card-title a:hover {
    color: var(--gold-accent);
}

.archive-card-excerpt {
    font-family: 'Lato', sans-serif;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex-grow: 1;
}

.archive-card-link {
    font-family: 'Lato', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold-accent);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    transition: letter-spacing 0.3s ease;
}

.archive-card:hover .archive-card-link {
    letter-spacing: 2.5px;
}
/* ==========================================
   ELEGANTNÉ NADPISY (OPRAVA HRÚBKY)
   ========================================== */
.story-elegant-title {
    font-weight: 400; /* Toto vráti nadpisu jeho jemnú a luxusnú hrúbku */
    letter-spacing: -0.5px;
}
/* ==========================================
   PÄTIČKA (COPYRIGHT A ODKAZY)
   ========================================== */
.gf-footer-copyright {
    margin-bottom: 15px;
}

.gf-footer-link {
    color: #999;
    text-decoration: none;
    font-size: 0.75rem;
    transition: color 0.3s ease;
}

.gf-footer-link:hover {
    color: var(--gold-accent);
}
/* ZAROVNANIE NADPISU S KARTAMI V SEKCII VÝSLEDKY */
.gf-casestudies-section .hero-eyebrow {
    max-width: 1000px;
    margin: 0 auto 50px auto;
    text-align: left;
}
/* ==========================================
   14. FINÁLNE OPRAVY (FONTY A MOBIL)
   ========================================== */

/* Poistka pre Playfair Display font na všetkých nadpisoch */
.gf-story-heading, .gf-section-title, .pillar-title, .gf-results-hero-title, 
.gf-final-cta-title, .gf-roadmap-title, .article-h3, .article-toc-title, 
.gf-card-title, .gf-cookie-title {
    font-family: 'Playfair Display', serif !important;
}

/* Mobilné úpravy: Zmenšenie medzier a oprava zlatej linky */
@media (max-width: 768px) {
    /* Zmenšenie obrovských paddingov pre sekcie */
    .gf-page-intro-section { padding: 140px 20px 40px 20px !important; }
    .gf-section, .gf-features-section, .lovable-stats-section, 
    .gf-roadmap-section, .gf-casestudies-section { padding: 60px 0 !important; }
    .gf-benefits-section { padding: 40px 0 !important; }
    .gf-final-cta-section { padding: 60px 20px !important; }
    .article-header { padding: 140px 20px 30px 20px !important; }
    
    /* Zmenšenie medzier okolo nadpisov a podnadpisov */
    .gf-story-heading { margin: 30px 0 15px 0 !important; }
    .gf-section-subtitle { margin-bottom: 30px !important; }
    .gf-stories-eyebrow { margin-bottom: 30px !important; }
    
    /* Oprava pretekania textu cez zlatú linku v boxoch */
    .gf-invitation-box, .article-promo-box, .gf-story-wide-card { 
        padding: 25px 20px !important; 
    }
    .article-toc-box { 
        padding: 30px 20px !important; 
    }
    .gf-flexibility-box {
        padding: 30px 20px !important;
        margin: 30px 0 !important;
    }
}
/* Vynútenie elegantného fontu Lato a tenšej hrúbky pre podnadpisy a texty v kartách */
.gf-roadmap-subtitle, .roadmap-card p {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
}
/* Vynútenie elegantného fontu Lato a tenšej hrúbky pre texty v sekcii Protokol */
.gf-benefits-intro-text, 
.gf-architecture-text, 
.gf-flexibility-text, 
.gf-benefit-text {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
}

/* Poistka pre Playfair Display na nadpisoch v kartách */
.gf-benefit-title {
    font-family: 'Playfair Display', serif !important;
}
/* Vynútenie elegantného fontu Lato pre texty v sekcii Výsledky a Príbehy */
.gf-results-text, 
.gf-results-text-bold, 
.gf-card-text, 
.gf-results-summary-text {
    font-family: 'Lato', sans-serif !important;
}
/* Poistka pre font v kartách benefitov */
.gf-feature-text {
    font-family: 'Lato', sans-serif !important;
    font-weight: 300 !important;
}
/* ==========================================
   15. UNIFIKOVANÝ PRE-FOOTER (ZBER + KONTAKT)
   ========================================== */
.gf-prefooter-section {
    padding: 100px 20px;
    background-color: var(--bg-cream);
    border-top: 1px solid rgba(197, 160, 89, 0.1);
}

.prefooter-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background-color: #F4EFEA;
    padding: 60px 40px;
    border-top: 3px solid var(--gold-accent);
    border-radius: 2px;
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.04);
    text-align: center;
}

.prefooter-title {
    font-size: clamp(2.2rem, 4vw, 2.8rem);
    margin-top: 0;
    margin-bottom: 20px;
}

.prefooter-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(26,26,26,0.75);
    margin-bottom: 40px;
}

.prefooter-divider {
    width: 60px;
    height: 1px;
    background-color: rgba(197, 160, 89, 0.3);
    margin: 50px auto;
}

/* Formulár pre e-mail */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 550px;
    margin: 0 auto;
}

@media (min-width: 500px) {
    .newsletter-form {
        flex-direction: row;
    }
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    background-color: var(--white-clean);
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    border-radius: 2px;
    outline: none;
    transition: border-color 0.3s ease;
}

.newsletter-input:focus {
    border-color: var(--gold-accent);
}

/* Fix pre mobilné zobrazenie */
@media (max-width: 768px) {
    .prefooter-wrapper {
        padding: 40px 20px !important;
    }
}
/* Odľahčenie zlatého kurzívneho textu v pre-footeri */
.prefooter-title .gold-italic {
    font-weight: 400 !important;
}
/* Oprava zobrazenia a pretekania formulára na mobiloch */
@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column !important;
    }
    
    .newsletter-btn {
        width: 100% !important;
        white-space: normal !important; /* Dovolí textu zalomiť sa, ak by to bolo na veľmi malom displeji nutné */
    }
}
/* ==========================================
   KOREKCIA MEDZIER (SPACING FIXES)
   ========================================== */

/* Vrátenie medzery pod hlavným nadpisom a textom */
h1, .story-elegant-title {
    margin-bottom: 24px !important;
}

.hero-description, .gf-page-intro-desc {
    margin-top: 0 !important;
}

/* Zarovnanie malého zlatého nadpisu (eyebrow) */
.hero-eyebrow {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
}
/* ==========================================
   KOREKCIA MEDZIER (HTML CLASSES FIX)
   ========================================== */

/* Základné nastavenie pre mobily a tablety (kompaktnejšie) */
.lovable-hero {
    padding-bottom: 40px !important; 
    margin-bottom: 0 !important;
}

.gf-section {
    padding-top: 40px !important;
    margin-top: 0 !important;
}

/* Zväčšenie medzery špeciálne pre veľké obrazovky (Desktop / Full screen) */
@media (min-width: 1024px) {
    .lovable-hero {
        padding-bottom: 90px !important; 
    }
    .gf-section {
        padding-top: 90px !important;
    }
}
/* ==========================================
   KOREKCIA MEDZIER (ŽURNÁL / KONTAKT)
   ========================================== */

/* Odstránenie obrovskej 150px medzery na spodku zoznamu článkov */
.gf-journal-list-section {
    padding-bottom: 40px !important;
}

/* Zmenšenie medzery nad kontaktnou sekciou (Mobily a tablety) */
.gf-contact-section {
    padding-top: 40px !important;
    margin-top: 0 !important;
}

/* Jemné zväčšenie priestoru pre Desktop, aby to dýchalo */
@media (min-width: 1024px) {
    .gf-journal-list-section {
        padding-bottom: 80px !important;
    }
    .gf-contact-section {
        padding-top: 80px !important;
    }
}
/* ==========================================
   ZJEDNOTENIE VÝŠKY ÚVODNÝCH SEKCÍ 
   ========================================== */

/* Posunutie hlavnej stránky a O mne nižšie (zjednotenie na 200px) */
.lovable-hero, 
.gf-story-hero-section {
    padding-top: 200px !important; 
}

/* Zjednotenie horného odsadenia pre mobilné zariadenia na 140px */
@media (max-width: 768px) {
    .lovable-hero,
    .gf-story-hero-section {
        padding-top: 140px !important;
    }
}
/* LUXUSNÝ ŠTÝL PRE CITÁTY V ČLÁNKU */
.article-blockquote {
    margin: 40px 0;
    padding: 10px 0 10px 30px;
    border-left: 2px solid var(--gold-accent);
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    line-height: 1.6;
    font-style: italic;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .article-blockquote {
        font-size: 1.15rem;
        padding-left: 20px;
        margin: 30px 0;
    }
}
/* BLOK PRE HORMÓNALNE / TRÁVIACE PREPOJENIE */
.article-highlight-box {
    margin: 40px 0;
    padding: 30px;
    background-color: rgba(197, 160, 89, 0.05); /* Tvoja zlatistá krémová */
    border-left: 3px solid var(--gold-accent);
    border-radius: 2px;
}

.article-highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.article-highlight-list {
    margin-top: 10px;
    margin-bottom: 0;
    padding-left: 20px;
    font-size: 1.05rem; /* Zväčšené písmo pre dokonalú čitateľnosť */
    line-height: 1.65;
}

.article-highlight-list li {
    margin-bottom: 12px;
}

.article-highlight-list li:last-child {
    margin-bottom: 0;
}
/* BEŽNÝ ODSEK VO VÝRAZNOM BOXE (BEZ ODRÁŽOK) */
.article-highlight-text {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}

@media (max-width: 768px) {
    .article-highlight-text {
        font-size: 1rem;
    }
}
/* ELEGANTNÝ RESPONSÍVNY NADPIS ČLÁNKU */
.story-elegant-title {
    margin-bottom: 25px; /* Odstránili sme margin-bottom inline štýl */
}

.story-elegant-title-sub {
    font-size: 0.85em;
    font-weight: 400;
    font-style: italic;
    display: block; /* Vďaka tomuto skočí text automaticky na nový riadok aj bez <br> */
    margin-top: 8px; /* Jemný, elegantný rozostup medzi riadkami nadpisu */
}

@media (max-width: 768px) {
    .story-elegant-title-sub {
        font-size: 0.8em; /* Na mobile ho mierne zjemníme, aby sa netlačil */
    }
}
/* HORMONÁLNA RESPONSÍVNA DIAGRAM-SCHÉMA */
.flow-diagram {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 3px solid var(--accent-color, #d4af37);
    font-family: monospace;
    font-size: 0.9rem;
    line-height: 1.4;
}

.flow-diagram-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 5px;
    letter-spacing: 0.05em;
}

.flow-diagram-subtitle {
    text-align: center;
    color: #888;
    font-size: 0.8rem;
    margin-bottom: 5px;
}

.flow-diagram-arrow {
    text-align: center;
    margin-bottom: 5px;
    color: var(--accent-color, #d4af37);
}

.flow-diagram-main-node {
    text-align: center;
    font-weight: bold;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.flow-diagram-split {
    display: flex;
    justify-content: space-between;
    text-align: center;
}

.flow-diagram-branch {
    width: 45%;
}

.flow-diagram-vs {
    width: 10%;
    align-self: center;
    font-weight: bold;
    color: #888;
}

/* BRANDOVÉ FAREBNÉ LADENIE */
.flow-survival-title {
    color: #555555; /* Tmavosivá/čierny tón pre krízu */
    font-weight: bold;
    letter-spacing: 0.03em;
}

.flow-regen-title {
    color: var(--accent-color, #d4af37); /* Zlatá pre regeneráciu a kľud */
    font-weight: bold;
    letter-spacing: 0.03em;
}

.flow-diagram-desc {
    font-size: 0.8rem;
    color: #aaa;
    display: block;
    margin-top: 5px;
}

/* RESPONSÍVNA RESPONDENTNOSŤ (PRE MOBILY) */
@media (max-width: 576px) {
    .flow-diagram-split {
        flex-direction: column;
        gap: 15px;
    }
    .flow-diagram-branch {
        width: 100%;
    }
    .flow-diagram-vs {
        width: 100%;
        margin: 5px 0;
    }
}

/* RESPONSÍVNOSŤ PRE MOBIL */
@media (max-width: 768px) {
    .article-highlight-box {
        padding: 20px;
        margin: 30px 0;
    }
    
    .article-highlight-title {
        font-size: 1.2rem;
    }
    
    .article-highlight-list {
        font-size: 1rem; /* Mierne prispôsobenie na malých displejoch */
    }
}