/* ============================================
   Michal Dobyšar — Premium Dark Theme
   ============================================ */

:root {
    --bg-deep: #050810;
    --bg-dark: #080c14;
    --bg-card: #0d1117;
    --bg-card-hover: #111827;
    --bg-surface: #0f172a;
    --bg-glass: rgba(15, 23, 42, 0.7);
    --bg-glass-light: rgba(15, 23, 42, 0.5);

    --gold: #c9a84c;
    --gold-light: #d4a843;
    --gold-glow: rgba(201, 168, 76, 0.15);
    --gold-gradient: linear-gradient(135deg, #c9a84c, #e8c967, #c9a84c);

    --cyan: #06b6d4;
    --cyan-light: #22d3ee;
    --cyan-glow: rgba(6, 182, 212, 0.15);

    --text: #e2e8f0;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --white: #ffffff;

    --border: rgba(148, 163, 184, 0.1);
    --border-gold: rgba(201, 168, 76, 0.3);

    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', -apple-system, sans-serif;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background: var(--bg-deep);
    color: var(--text);
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.gold { color: var(--gold); }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 60px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-gold {
    background: var(--gold-gradient);
    color: var(--bg-deep);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 168, 76, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: var(--transition);
}

.navbar.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo { display: flex; align-items: center; gap: 12px; }

.nav-photo {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-gold);
    flex-shrink: 0;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 0.01em;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--text);
    transition: var(--transition);
    border-radius: 2px;
}

/* Mobile Drawer */
.mobile-drawer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
}

.mobile-drawer.open { display: block; }

.drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.drawer-content {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 280px;
    background: var(--bg-card);
    border-left: 1px solid var(--border);
    padding: 80px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.open .drawer-content {
    transform: translateX(0);
}

.drawer-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}

.drawer-link {
    padding: 16px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.drawer-link:hover { color: var(--gold); }

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--bg-deep);
}

.hero-bg-wrap {
    position: relative;
    width: 100%;
    height: 55vh;
    min-height: 320px;
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    transform: scale(0.9) translateY(1cm);
    transform-origin: center center;
}

.hero-content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px 40px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3.3vw, 1.8rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: 0.02em;
    color: var(--white);
}

.hero-subtitle {
    font-size: clamp(1.25rem, 3vw, 1.5rem);
    color: var(--text);
    margin-bottom: 36px;
    font-weight: 400;
    letter-spacing: 0.03em;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-controls {
    position: absolute;
    bottom: 200px;
    right: 32px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.video-control {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.video-control:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-bottom {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0 24px 48px;
}

.hero-photo-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-photo,
.hero-photo-placeholder {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}

.hero-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold-glow);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--gold);
}

.hero-photo-label {
    display: flex;
    flex-direction: column;
}

.hero-photo-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--white);
}

.hero-photo-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.scroll-indicator:hover { color: var(--gold); }

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ============================================
   SECTIONS
   ============================================ */

.section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 16px;
    padding: 6px 16px;
    border: 1px solid var(--border-gold);
    border-radius: 60px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.05rem;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   SERVICES
   ============================================ */

.section-services {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold-gradient);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.service-card:hover::before { opacity: 1; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CALCULATORS GRID
   ============================================ */

.section-calculators {
    background: var(--bg-dark);
}

.calc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 960px;
    margin: 0 auto;
    justify-items: stretch;
}
@media (max-width: 900px) {
    .calc-grid { grid-template-columns: repeat(2, 1fr); }
}

.calc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    overflow: hidden;
}

.calc-card::after {
    content: '→';
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 1.2rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.calc-card:hover {
    transform: translateY(-4px);
    border-color: var(--border-gold);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 0 1px var(--border-gold);
}

.calc-card:hover::after {
    color: var(--gold);
    transform: translateX(4px);
}

.calc-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--gold-glow);
    color: var(--gold);
}

.calc-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gold);
}

.calc-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    padding-right: 30px;
}

.calc-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* ============================================
   CALCULATOR MODAL
   ============================================ */

.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    overflow-y: auto;
    padding: 20px;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.open { display: flex; align-items: flex-start; justify-content: center; }

.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--border);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    color: var(--text);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.modal-close:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.modal-body {
    padding: 32px;
}

.modal-footer {
    padding: 20px 32px;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

/* ============================================
   TISK / PDF — profesionální finanční report
   ============================================ */
.print-header {
    display: none;
}

@media print {
    body {
        -webkit-print-color-adjust: exact !important;
        print-color-adjust: exact !important;
        background: #fff !important;
    }

    /* Skryj navigaci, tlačítka, patičku, pozadí */
    #coopModal,
    .navbar,
    .hamburger,
    .mobile-drawer,
    .hero,
    .hero-bg-wrap,
    .hero-content,
    .hero-bottom,
    .scroll-indicator,
    .section,
    .footer,
    .no-print,
    .modal-close,
    .modal-footer,
    .modal-footer *,
    .btn {
        display: none !important;
    }

    /* Zobraz pouze kalkulačku (calcModal je modal-overlay) */
    #calcModal {
        display: flex !important;
        position: static !important;
        background: #fff !important;
        overflow: visible !important;
        align-items: flex-start !important;
    }

    /* Print header s logem — fixní nahoře */
    .print-header {
        display: flex !important;
        align-items: center;
        gap: 12px;
        padding: 12px 24px;
        border-bottom: 2px solid #c9a84c;
        margin-bottom: 16px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        background: #fff;
        z-index: 9999;
    }
    .print-header img {
        width: 48px;
        height: 48px;
        border-radius: 4px;
    }
    .print-header strong {
        display: block;
        color: #c9a84c;
        font-size: 18px;
    }
    .print-header span {
        font-size: 11px;
        color: #666;
    }

    /* Kalkulačka na celou šířku A4 */
    .modal-container {
        width: 100% !important;
        max-width: 100% !important;
        background: #fff !important;
        border: none !important;
        box-shadow: none !important;
        margin: 0 !important;
        padding-top: 80px !important; /* místo pro header */
    }

    /* Černé písmo na bílém, zlaté doplňky */
    .modal-title,
    .calc-section-box h4,
    .result-label,
    .input-group label,
    .calc-tip-title,
    .modal-container,
    .modal-container * {
        color: #1a1a2e !important;
    }
    .result-value,
    .gold {
        color: #c9a84c !important;
    }

    /* Tabulky — šedé řádky (zebra), zlatý header */
    .calc-section-box {
        background: #fff !important;
        border: 1px solid #c9a84c !important;
        border-radius: 8px !important;
    }
    table thead th,
    table th {
        background: #c9a84c !important;
        color: #fff !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    table tbody tr:nth-child(even) {
        background: #f8f9fa !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    table tbody tr:nth-child(odd) {
        background: #fff !important;
    }

    /* Inputy — bílé pozadí */
    .input-group input,
    .input-group select {
        background: #fff !important;
        border-color: #ddd !important;
        color: #1a1a2e !important;
    }
}

/* Calculator Layout */
.calc-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.calc-inputs, .calc-results {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.calc-section-box {
    padding: 20px;
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    background: linear-gradient(180deg, rgba(201, 168, 76, 0.04) 0%, transparent 100%);
}

.calc-inputs h4, .calc-results h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 4px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.input-group label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.input-group input[type="number"],
.input-group input[type="text"],
.input-group input[type="email"],
.input-group input[type="tel"],
.input-group select,
.input-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.input-group input:focus, .input-group select:focus, .input-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.input-group input[type="range"] {
    width: 100%;
    -webkit-appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-surface);
    outline: none;
}

.input-group input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--bg-card);
    box-shadow: 0 2px 8px rgba(201, 168, 76, 0.4);
}

.input-group input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    border: 3px solid var(--bg-card);
}

.range-value {
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 600;
    margin-left: auto;
}

.result-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.result-card .result-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.result-card .result-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gold);
    font-family: var(--font-body);
}

.result-card.highlight {
    border-color: var(--border-gold);
    background: linear-gradient(135deg, var(--gold-glow), transparent);
}

.result-card.highlight .result-value {
    font-size: 1.4rem;
    color: var(--gold-light);
}

.calc-chart-wrap {
    margin-top: 24px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}

.calc-chart-wrap canvas {
    max-height: 300px;
    width: 100% !important;
}

.calc-tip {
    margin-top: 20px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--gold-glow), transparent);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius);
    border-left: 3px solid var(--gold);
}

.calc-tip-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 4px;
}

.calc-tip p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Debt calculator extras */
.debt-list { display: flex; flex-direction: column; gap: 12px; }

.debt-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.debt-item input {
    width: 100%;
    padding: 8px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.debt-item input:focus { border-color: var(--gold); }

.debt-item label {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
    margin-bottom: 2px;
}

.btn-add-debt {
    padding: 10px;
    background: var(--bg-surface);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.85rem;
    transition: var(--transition);
}

.btn-add-debt:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Income/Expense categories */
.category-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.category-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-row label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    min-width: 90px;
}

.category-row input {
    flex: 1;
    padding: 8px 10px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.85rem;
    outline: none;
}

.category-row input:focus { border-color: var(--gold); }

/* ============================================
   ABOUT SECTION
   ============================================ */

.section-about {
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-deep) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
}

.about-img-wrap img,
.about-img-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-glow), var(--bg-card));
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 3rem;
    color: var(--gold);
    aspect-ratio: 3/4;
}

.about-img-border {
    position: absolute;
    inset: -1px;
    border: 2px solid var(--border-gold);
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 24px;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.about-text p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-text strong { color: var(--white); }

.about-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.badge-icon { font-size: 1.1rem; }

/* ============================================
   PROCESS
   ============================================ */

.section-process {
    background: var(--bg-deep);
}

.process-timeline {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}

.process-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.process-step {
    position: relative;
    padding-left: 80px;
    padding-bottom: 48px;
}

.process-step:last-child { padding-bottom: 0; }

.step-number {
    position: absolute;
    left: 10px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--gold);
    z-index: 1;
}

.step-content h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */

.section-contact {
    background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title { margin-bottom: 16px; }

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 16px;
    transition: var(--transition);
    color: var(--text);
}
.contact-item:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
    color: var(--gold);
}

.contact-info > p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.contact-method:hover {
    border-color: var(--border-gold);
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--gold-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact-method-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: block;
}

.contact-method-value {
    font-weight: 600;
    color: var(--white);
    display: block;
    font-size: 0.95rem;
}

.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group,
.input-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label,
.input-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.form-group input,
.form-group textarea,
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition);
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus,
.input-group input:focus,
.input-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px var(--gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder,
.input-group input::placeholder,
.input-group textarea::placeholder {
    color: var(--text-muted);
}

.form-success {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gold-glow);
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.form-success h3 {
    font-family: var(--font-heading);
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-secondary);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 48px 0;
    border-top: 1px solid var(--border);
    background: var(--bg-dark);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.footer-links a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 16px;
    align-items: center;
}
.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    color: var(--text-secondary);
    transition: var(--transition);
}
.footer-social a:hover {
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.footer-copy,
.footer-copy p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 24px;
    text-align: center;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* Fallback: if JS fails, show everything after 2s */
@keyframes revealFallback {
    to { opacity: 1; transform: translateY(0); }
}
.reveal-up {
    animation: revealFallback 0s 2.5s forwards;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
    .nav-links { display: none; }
    .hamburger { display: flex; }

    .form-row {
        grid-template-columns: 1fr;
    }

    .calc-layout {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-controls {
        bottom: auto;
        top: 88px;
        right: 16px;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: center;
        gap: 32px;
        text-align: center;
    }

    .modal-container {
        margin: 16px auto;
        border-radius: var(--radius-lg);
    }

    .modal-header { padding: 20px 20px; }
    .modal-body { padding: 20px; }
    .modal-footer { padding: 16px 20px; flex-wrap: wrap; }
    .modal-footer .btn { flex: 1; min-width: 140px; }
}

@media (max-width: 600px) {
    .section { padding: 80px 0; }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .calc-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .stat { padding: 12px 8px; }
    .stat-number { font-size: 1.4rem; }

    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-links { justify-content: center; }

    .debt-item {
        grid-template-columns: 1fr;
    }

    .process-step { padding-left: 64px; }
    .process-line { left: 22px; }
    .step-number { left: 0; width: 44px; height: 44px; }
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb {
    background: var(--bg-surface);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: var(--text-muted); }

/* Selection */
::selection {
    background: var(--gold);
    color: var(--bg-deep);
}

/* ============================================
   NAV CTA LINK (Možnosti spolupráce)
   ============================================ */

.nav-link-cta {
    color: var(--gold) !important;
    font-weight: 600 !important;
    position: relative;
}
.nav-link-cta::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}
.nav-link-cta:hover::after {
    transform: scaleX(1);
}

.drawer-link-cta {
    color: var(--gold) !important;
    font-weight: 600 !important;
    border-top: 1px solid var(--border);
    padding-top: 16px !important;
    margin-top: 8px;
}

.footer-coop-link {
    color: var(--gold) !important;
}
.footer-coop-link:hover {
    opacity: 0.8;
}

/* ============================================
   TYPEFORM OVERLAY
   ============================================ */

.tf-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: var(--bg-deep);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
    overflow-y: auto;
    overflow-x: hidden;
}

.tf-overlay.open {
    opacity: 1;
    visibility: visible;
}

.tf-container {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 120px;
}

/* Close button */
.tf-close {
    position: fixed;
    top: 20px;
    right: 24px;
    z-index: 10;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}
.tf-close:hover {
    color: var(--gold);
    border-color: var(--border-gold);
    transform: rotate(90deg);
}

/* Progress bar */
.tf-progress {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--bg-card);
    z-index: 11;
}
.tf-progress-bar {
    height: 100%;
    width: 0;
    background: var(--gold-gradient);
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

/* Back button */
.tf-nav {
    position: fixed;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}
.tf-nav-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 60px;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}
.tf-nav-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.tf-nav-btn:hover {
    color: var(--gold);
    border-color: var(--border-gold);
}

/* Slides wrapper */
.tf-slides {
    width: 100%;
    max-width: 640px;
    position: relative;
    min-height: 400px;
}

/* Individual slide */
.tf-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.45s cubic-bezier(0.4, 0, 0.2, 1), transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.tf-slide-back {
    transform: translateY(-40px);
}
.tf-slide-active {
    opacity: 1;
    transform: translateY(0);
}
.tf-slide-exit {
    opacity: 0;
    transform: translateY(-40px);
    pointer-events: none;
}
.tf-slide-exit-back {
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
}

.tf-slide-inner {
    text-align: center;
}

/* Icon */
.tf-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-gold);
    color: var(--gold);
    margin-bottom: 20px;
}
.tf-icon-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
    color: #22c55e;
}

/* Subtitle tag */
.tf-subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 10px;
}

/* Question title */
.tf-question {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 600;
    color: var(--white);
    margin-bottom: 36px;
    line-height: 1.3;
}

/* Options */
.tf-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.tf-option {
    display: flex;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(12px);
    animation: tfOptionIn 0.4s ease forwards;
}

@keyframes tfOptionIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.tf-option:hover {
    border-color: var(--gold);
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.1);
}

.tf-option.selected {
    border-color: var(--gold);
    background: rgba(201, 168, 76, 0.08);
    box-shadow: 0 0 0 2px var(--gold), 0 4px 20px rgba(201, 168, 76, 0.15);
}

.tf-option.dimmed {
    opacity: 0.35;
    pointer-events: none;
    transform: scale(0.98);
}

.tf-option-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 8px;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: var(--transition);
}

.tf-option:hover .tf-option-letter,
.tf-option.selected .tf-option-letter {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--bg-deep);
}

.tf-option-icon {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    transition: var(--transition);
}
.tf-option:hover .tf-option-icon,
.tf-option.selected .tf-option-icon {
    color: var(--gold);
}

.tf-option-text {
    flex: 1;
    line-height: 1.4;
}

.tf-option-arrow {
    display: flex;
    align-items: center;
    color: var(--text-muted);
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
}
.tf-option:hover .tf-option-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Contact redirect slide */
.tf-contact-slide {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tf-contact-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 440px;
    margin: 0 auto 24px;
}

.tf-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 32px;
}

.tf-summary-tag {
    display: inline-flex;
    align-items: center;
    padding: 6px 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid var(--border-gold);
    border-radius: 60px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--gold);
}

.tf-contact-btn {
    font-size: 1rem;
    padding: 16px 36px;
}

/* ============================================
   TYPEFORM RESPONSIVE
   ============================================ */

@media (max-width: 768px) {
    .tf-container {
        padding: 72px 16px 100px;
    }

    .tf-icon {
        width: 60px;
        height: 60px;
        border-radius: 16px;
    }
    .tf-icon svg {
        width: 36px;
        height: 36px;
    }

    .tf-question {
        font-size: 1.4rem;
        margin-bottom: 28px;
    }

    .tf-option {
        padding: 14px 16px;
        gap: 10px;
        font-size: 0.88rem;
    }

    .tf-option-letter {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 0.75rem;
        border-radius: 6px;
    }

    .tf-option-icon svg {
        width: 22px;
        height: 22px;
    }

    .tf-option-arrow {
        display: none;
    }

    .tf-slides {
        min-height: 360px;
    }

    .tf-close {
        top: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }

    .tf-nav {
        bottom: 20px;
    }

    .tf-contact-btn {
        width: 100%;
        justify-content: center;
    }
}


/* ============================================
   FEATURED CALCULATOR CARD
   ============================================ */

.featured-calc {
    display: block;
    margin-bottom: 32px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.03));
    border: 1px solid rgba(201, 168, 76, 0.25);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.featured-calc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c9a84c, #e8c967, #c9a84c);
}

.featured-calc:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(201, 168, 76, 0.15), 0 0 0 1px rgba(201, 168, 76, 0.25);
    border-color: #c9a84c;
}

.featured-calc-inner {
    padding: 32px 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.featured-calc-badge {
    position: absolute;
    top: 16px;
    right: 24px;
    background: linear-gradient(135deg, #c9a84c, #e8c967, #c9a84c);
    color: #0a0d14;
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 12px;
    border-radius: 20px;
}

.featured-calc-content {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
}

.featured-calc-icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.15);
    color: #c9a84c;
    border: 1px solid rgba(201, 168, 76, 0.2);
}

.featured-calc h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #c9a84c;
    margin: 0 0 6px 0;
}

.featured-calc p {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.featured-calc-arrow {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c9a84c;
    white-space: nowrap;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.featured-calc:hover .featured-calc-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .featured-calc-inner {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 20px;
    }
    .featured-calc-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .featured-calc h3 {
        font-size: 1.15rem;
    }
    .featured-calc-badge {
        top: 12px;
        right: 16px;
    }
}

/* ============================================
   MOŽNOSTI SPOLUPRÁCE MODAL
   ============================================ */

.modal-coop .modal-container { max-width: 720px; }

.coop-intro {
    color: var(--text-secondary);
    margin-bottom: 28px;
    line-height: 1.6;
}

.coop-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 32px;
}

.coop-option {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px;
    transition: var(--transition);
}

.coop-option:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
}

.coop-option-icon {
    margin-bottom: 16px;
}

.coop-option h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 8px;
}

.coop-option p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 16px;
}

.coop-cta { margin-top: auto; }

.coop-contact {
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

.coop-contact p {
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.coop-contact .btn { margin: 0 8px 8px 0; }

.footer-coop-link { color: var(--gold) !important; }
.footer-coop-link:hover { opacity: 0.8; }

/* ============================================
   MEDIA SECTION - Fotky & videa
   ============================================ */

.section-media { background: var(--bg-dark); }

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.media-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-card);
    aspect-ratio: 16/10;
}

.media-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.media-item iframe {
    width: 100%;
    height: 100%;
    border: none;
}