/* =========================
   /kontakti/ — MVP versija (tikai info, bez formas)
   ========================= */
.gh-kontakti {
    padding: 96px 24px;
    background: #ffffff;
}
.gh-kontakti__inner { max-width: 960px; margin: 0 auto; }

.gh-kontakti__head { text-align: center; margin-bottom: 48px; }
.gh-kontakti__eyebrow {
    font-family: var(--gh-font-mono, 'JetBrains Mono', monospace);
    font-size: 13px; font-weight: 600;
    color: #b45309;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.gh-kontakti__title {
    font-family: var(--gh-font-sans, 'Inter', sans-serif);
    font-size: 48px; font-weight: 700;
    color: #0f172a;
    letter-spacing: -0.02em;
    line-height: 1.05;
    margin-bottom: 16px;
}
.gh-kontakti__sub {
    font-size: 17px; line-height: 1.55;
    color: #475569;
    max-width: 600px; margin: 0 auto;
}

.gh-kontakti__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}
.gh-kontakti__card {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 28px 24px;
    text-decoration: none;
    color: #0f172a;
    transition: all 0.2s ease;
    display: block;
}
.gh-kontakti__card:hover {
    border-color: #f0b429;
    background: #ffffff;
    box-shadow: 0 8px 24px -12px rgba(15,23,42,0.12);
    transform: translateY(-2px);
}
.gh-kontakti__card--primary {
    background: #0f172a;
    border-color: #0f172a;
    color: #ffffff;
}
.gh-kontakti__card--primary:hover {
    background: #1e293b;
    border-color: #f0b429;
}
.gh-kontakti__card--static { cursor: default; }
.gh-kontakti__card--static:hover { transform: none; box-shadow: none; }

.gh-kontakti__icon {
    width: 44px; height: 44px;
    background: rgba(240,180,41,0.15);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #f0b429;
    margin-bottom: 16px;
}
.gh-kontakti__card--primary .gh-kontakti__icon {
    background: rgba(240,180,41,0.2);
}
.gh-kontakti__icon svg { width: 22px; height: 22px; }

.gh-kontakti__label {
    font-family: var(--gh-font-mono, 'JetBrains Mono', monospace);
    font-size: 11px; font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 6px;
}
.gh-kontakti__card--primary .gh-kontakti__label { color: #f0b429; }

.gh-kontakti__value {
    font-size: 18px; font-weight: 600;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
    line-height: 1.3;
}
.gh-kontakti__hint {
    font-size: 13px;
    color: #64748b;
}
.gh-kontakti__card--primary .gh-kontakti__hint { color: rgba(255,255,255,0.6); }

.gh-kontakti__footer {
    text-align: center;
    padding: 32px;
    background: #f8fafc;
    border-radius: 12px;
    font-size: 15px;
    color: #475569;
}
.gh-kontakti__footer a {
    color: #b45309;
    font-weight: 600;
    text-decoration: none;
}
.gh-kontakti__footer a:hover { text-decoration: underline; }

@media (max-width: 768px) {
    .gh-kontakti { padding: 64px 16px; }
    .gh-kontakti__title { font-size: 32px; }
    .gh-kontakti__grid { grid-template-columns: 1fr; gap: 12px; }
}
