/* ==========================================================================
   Portfolio — Archive & Single
   All portfolio-specific styles. Uses SalonFlow theme design tokens.
   ========================================================================== */

/* ── Archive — hero ─────────────────────────────────────────────────────── */

.pf-archive__hero {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
    padding-bottom: var(--space-xl);
    text-align: center;
}

.pf-archive__title {
    margin-bottom: var(--space-md);
}

.pf-archive__subtitle {
    max-width: 560px;
    margin: 0 auto;
    color: var(--color-text-secondary);
}

.pf-archive__subtitle strong {
    color: var(--color-text);
    font-weight: 600;
}

/* ── Smooth scroll for the whole page ───────────────────────────────────── */
html {
    scroll-behavior: smooth;
}

/* Invisible letter-group anchors — offset for sticky nav ────────────────── */
.pf-letter-anchor {
    display: block;
    height: 0;
    /* Pull the scroll target up so the nav doesn't cover the first card */
    scroll-margin-top: calc(var(--nav-height, 64px) + var(--space-md));
    /* Span full grid width so anchor sits at the correct column start */
    grid-column: 1 / -1;
}

/* ── Archive — A–Z scroll index ─────────────────────────────────────────── */

.pf-alpha-bar {
    position: sticky;
    top: var(--nav-height, 64px);
    z-index: 90;
    padding: var(--space-sm) 0;
    border-bottom: 1px solid rgba(194, 163, 107, 0.10);
    background: var(--color-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.pf-alpha-bar__inner {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
}

.pf-alpha-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 6px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    color: var(--color-text-secondary);
    background: transparent;
    border: 1px solid transparent;
    transition:
        color var(--duration-fast) var(--ease-smooth),
        background var(--duration-fast) var(--ease-smooth),
        border-color var(--duration-fast) var(--ease-smooth);
}

.pf-alpha-btn:hover {
    color: var(--color-gold);
    background: rgba(194, 163, 107, 0.08);
    border-color: rgba(194, 163, 107, 0.20);
}

.pf-alpha-btn--active {
    color: var(--color-gold);
    background: rgba(194, 163, 107, 0.12);
    border-color: rgba(194, 163, 107, 0.35);
}

.pf-alpha-btn--active:hover {
    background: rgba(194, 163, 107, 0.18);
}

/* ── Archive — grid ─────────────────────────────────────────────────────── */

.pf-archive__grid-section {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-3xl);
}

.pf-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

@media (max-width: 1100px) {
    .pf-grid { grid-template-columns: repeat(3, 1fr); }
}

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

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

/* ── Portfolio card ─────────────────────────────────────────────────────── */
/*    Miniatura hero sekce ze single stránky:                                */
/*    tmavé umber pozadí, kruhová fotka s gold ring, Cardo jméno,            */
/*    stats strip dole se svislými oddělovači.                               */

.pf-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    color: #EAE6DE;
    background: var(--color-umber);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(194, 163, 107, 0.12);
    aspect-ratio: 1 / 1;
    padding: var(--space-md);
    overflow: hidden;
    position: relative;
    transition:
        transform var(--duration-fast) var(--ease-spring),
        box-shadow var(--duration-base) var(--ease-smooth),
        border-color var(--duration-base) var(--ease-smooth);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.22);
}

/* Subtle gold blob — same as hero */
.pf-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
    background: var(--color-gold);
    filter: blur(80px);
    opacity: 0.06;
    pointer-events: none;
}

.pf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.32);
    border-color: rgba(194, 163, 107, 0.35);
}

/* ── Circular photo with double gold ring ── */
.pf-card__photo-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-gold);
    box-shadow:
        0 0 0 4px rgba(194, 163, 107, 0.12),
        0 0 0 5px rgba(194, 163, 107, 0.05);
    flex-shrink: 0;
    margin-bottom: var(--space-sm);
    transition: box-shadow var(--duration-base) var(--ease-smooth);
}

.pf-card:hover .pf-card__photo-wrap {
    box-shadow:
        0 0 0 5px rgba(194, 163, 107, 0.22),
        0 0 0 9px rgba(194, 163, 107, 0.08);
}

.pf-card__photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--duration-slow) var(--ease-smooth);
}

.pf-card:hover .pf-card__photo {
    transform: scale(1.06);
}

/* Initials fallback — same style as hero */
.pf-card__initials {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cardo', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-gold);
    background: rgba(194, 163, 107, 0.06);
    border: 2px solid var(--color-gold);
    box-shadow: 0 0 0 4px rgba(194, 163, 107, 0.10);
    flex-shrink: 0;
    margin-bottom: var(--space-sm);
}

/* ── Name & subtitle ── */
.pf-card__name {
    font-family: 'Cardo', Georgia, serif;
    font-size: var(--text-lg);
    font-weight: 700;
    color: #EAE6DE;
    margin: 0 0 4px;
    line-height: 1.2;
}

.pf-card__titles {
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(234, 230, 222, 0.45);
    margin: 0 0 var(--space-md);
    letter-spacing: 0.01em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


/* ── Archive — pagination ───────────────────────────────────────────────── */

.pf-archive__pagination {
    margin-top: var(--space-xl);
    display: flex;
    justify-content: center;
}

.pf-archive__pagination .nav-links {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.pf-archive__pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    text-decoration: none;
    transition: all var(--duration-fast) var(--ease-smooth);
}

.pf-archive__pagination .page-numbers:hover,
.pf-archive__pagination .page-numbers.current {
    background: var(--color-gold);
    color: var(--color-umber);
    border-color: var(--color-gold);
}

/* ── Archive — empty state ──────────────────────────────────────────────── */

.pf-archive__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-2xl) 0;
    color: var(--color-text-tertiary);
    text-align: center;
}

/* ── Archive — CTA section ──────────────────────────────────────────────── */

.pf-archive__cta {
    padding: var(--space-2xl) 0;
    border-top: 1px solid var(--color-border);
}

.pf-archive__cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.pf-archive__cta-text h2 {
    font-family: 'Cardo', Georgia, serif;
    font-size: var(--text-2xl);
    margin-bottom: var(--space-sm);
    color: var(--color-text);
}

.pf-archive__cta-text p {
    color: var(--color-text-secondary);
    max-width: 480px;
}

@media (max-width: 640px) {
    .pf-archive__cta-inner { flex-direction: column; text-align: center; }
    .pf-archive__cta-text p { max-width: 100%; }
}

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE — Cinematic Hero
   ══════════════════════════════════════════════════════════════════════════ */

.pf-hero {
    background: var(--color-umber);
    padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-2xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

/* Atmospheric glow blobs */
.pf-hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.pf-hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    background: var(--color-gold);
    opacity: 0.07;
}

.pf-hero__blob--1 {
    width: 560px;
    height: 560px;
    top: -180px;
    right: -120px;
}

.pf-hero__blob--2 {
    width: 380px;
    height: 380px;
    bottom: -120px;
    left: -80px;
}

/* Breadcrumb — inside hero, top-left */
.pf-hero__breadcrumb {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: rgba(234, 230, 222, 0.4);
    margin-bottom: var(--space-xl);
    text-align: left;
}

.pf-hero__breadcrumb a {
    color: rgba(234, 230, 222, 0.4);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.pf-hero__breadcrumb a:hover {
    color: var(--color-gold);
}

.pf-hero__breadcrumb span[aria-current] {
    color: rgba(234, 230, 222, 0.65);
}

/* Inner — centered column */
.pf-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 660px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Profile photo with double ring */
.pf-hero__photo-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    box-shadow:
        0 0 0 8px rgba(194, 163, 107, 0.10),
        0 0 0 16px rgba(194, 163, 107, 0.04),
        var(--shadow-gold);
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.04);
    flex-shrink: 0;
}

.pf-hero__photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pf-hero__initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cardo', Georgia, serif;
    font-size: 3.5rem;
    color: var(--color-gold);
    background: rgba(194, 163, 107, 0.06);
}

/* Name */
.pf-hero__name {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: #EAE6DE; /* fixed — hero is always dark, --color-text-inverse flips in dark mode */
    margin: 0 0 var(--space-sm);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Titles */
.pf-hero__titles {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-gold);
    margin: 0 0 var(--space-xs);
    letter-spacing: 0.03em;
}

/* Clubs */
.pf-hero__clubs {
    font-size: var(--text-sm);
    color: rgba(234, 230, 222, 0.45);
    margin: 0;
}

/* Title certificate badges */
.pf-hero__certs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
    margin-top: var(--space-md);
}

.pf-hero__cert {
    display: inline-block;
    padding: 4px 11px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(194, 163, 107, 0.45);
    background: rgba(194, 163, 107, 0.08);
    color: var(--color-gold);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.06em;
    cursor: default;
    transition: background var(--duration-fast) var(--ease-smooth);
}

.pf-hero__cert:hover {
    background: rgba(194, 163, 107, 0.16);
}

/* Contact meta row */
.pf-hero__meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 18px;
    margin-top: var(--space-md);
}

.pf-hero__meta-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    color: rgba(234, 230, 222, 0.5);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

a.pf-hero__meta-item:hover {
    color: var(--color-gold);
}

/* Websites row */
.pf-hero__websites {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 14px;
    margin-top: 8px;
}

.pf-hero__website-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: var(--text-xs);
    color: rgba(194, 163, 107, 0.7);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.pf-hero__website-link:hover {
    color: var(--color-gold);
}

/* Social quick-icons row */
.pf-hero__socials {
    display: flex;
    gap: 10px;
    margin-top: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
}

.pf-hero__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(194, 163, 107, 0.2);
    color: rgba(234, 230, 222, 0.55);
    text-decoration: none;
    transition:
        background var(--duration-fast) var(--ease-smooth),
        color var(--duration-fast) var(--ease-smooth),
        border-color var(--duration-fast) var(--ease-smooth),
        transform var(--duration-fast) var(--ease-spring);
}

.pf-hero__social-icon:hover {
    background: rgba(194, 163, 107, 0.15);
    color: var(--color-gold);
    border-color: var(--color-gold);
    transform: translateY(-2px);
}

/* Stats strip — big numbers below a divider */
.pf-hero__stats {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    max-width: 560px;
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(194, 163, 107, 0.15);
}

.pf-hero__stat {
    flex: 1;
    min-width: 80px;
    padding: var(--space-xs) var(--space-md);
    position: relative;
}

.pf-hero__stat + .pf-hero__stat::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(194, 163, 107, 0.15);
}

.pf-hero__stat-num {
    display: block;
    font-family: 'Cardo', Georgia, serif;
    font-size: var(--text-3xl);
    font-weight: 700;
    color: #EAE6DE; /* fixed — always on dark umber background */
    line-height: 1;
    margin-bottom: 4px;
    font-variant-numeric: tabular-nums;
}

.pf-hero__stat-org {
    display: block;
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-gold);
    font-weight: 700;
    margin-bottom: 3px;
}

.pf-hero__stat-lbl {
    display: block;
    font-size: var(--text-xs);
    color: rgba(234, 230, 222, 0.4);
    line-height: 1.3;
}

/* Ready distinctions */
.pf-hero__ready {
    margin-top: var(--space-lg);
    text-align: center;
}

.pf-hero__ready-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-weight: 600;
    color: rgba(234, 230, 222, 0.3);
    margin: 0 0 10px;
}

.pf-hero__ready-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 7px;
}

.pf-hero__ready-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: 1px solid transparent;
}

.pf-hero__ready-pill--fiap {
    background: rgba(74, 124, 181, 0.12);
    color: #8ab8e8;
    border-color: rgba(74, 124, 181, 0.28);
}

.pf-hero__ready-pill--psa {
    background: rgba(194, 96, 90, 0.12);
    color: #e89490;
    border-color: rgba(194, 96, 90, 0.28);
}

.pf-hero__ready-pill--gpu {
    background: rgba(90, 158, 111, 0.12);
    color: #8ed4a8;
    border-color: rgba(90, 158, 111, 0.28);
}

/* Disclaimer — small print below stats */
.pf-hero__disclaimer {
    margin-top: var(--space-md);
    font-size: 11px;
    line-height: 1.5;
    color: rgba(234, 230, 222, 0.25);
    max-width: 480px;
    text-align: center;
}

@media (max-width: 540px) {
    .pf-hero { padding-top: calc(var(--nav-height) + var(--space-lg)); }
    .pf-hero__photo-wrap { width: 120px; height: 120px; }
    .pf-hero__stat-num { font-size: var(--text-2xl); }
}

/* ── Single — featured photos section ──────────────────────────────────── */

.pf-photos-section {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-xl) 0 var(--space-lg);
    position: relative; /* pro absolutní nav tlačítka */
}

.pf-photos-section__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.pf-photos-section__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

/* ── Single — content layout ────────────────────────────────────────────── */

.pf-content {
    padding-top: var(--space-xl);
    padding-bottom: var(--space-3xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.pf-content--minimal {
    padding-top: var(--space-lg);
    padding-bottom: var(--space-xl);
}

/* ── End CTA ─────────────────────────────────────────────────────────────── */

.pf-end-cta {
    background: var(--color-umber);
    padding: var(--space-2xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(194, 163, 107, 0.12);
}

.pf-end-cta__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.pf-end-cta__blob {
    position: absolute;
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--color-gold);
    filter: blur(120px);
    opacity: 0.05;
}

.pf-end-cta .container {
    position: relative;
    z-index: 1;
}

/* Logo v CTA — jen wordmark + tagline, bez ikony */
.pf-end-cta__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin: 0 auto var(--space-xl);
    pointer-events: none;
    user-select: none;
}

.pf-end-cta__logo .logo-wordmark {
    color: #EAE6DE;
    font-size: 22px;
    line-height: 1;
}

.pf-end-cta__logo .logo-flow {
    color: #EAE6DE;
    opacity: 0.78;
}

.pf-end-cta__logo .logo-tagline {
    display: block;
    color: rgba(234, 230, 222, 0.45);
    font-size: 8px;
    letter-spacing: 0.01em;
    line-height: 1;
}

.pf-end-cta__eyebrow {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 600;
    color: var(--color-gold);
    margin: 0 0 var(--space-sm);
}

.pf-end-cta__title {
    font-family: 'Cardo', Georgia, serif;
    font-size: clamp(var(--text-xl), 3vw, var(--text-3xl));
    color: #EAE6DE; /* fixed — end CTA is always dark, --color-text-inverse flips in dark mode */
    margin: 0 0 var(--space-sm);
    line-height: 1.2;
}

.pf-end-cta__sub {
    font-size: var(--text-sm);
    color: rgba(234, 230, 222, 0.5);
    margin: 0 auto var(--space-lg);
    max-width: 420px;
    line-height: 1.6;
}

/* Section cards — slightly enhanced */
.pf-section-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow var(--duration-base) var(--ease-smooth);
}

.pf-section-card:hover {
    box-shadow: var(--shadow-md);
}

/* ── Section cards ──────────────────────────────────────────────────────── */

.pf-section-card__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: var(--space-md);
}

.pf-section-card__title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

/* Colored icon chip */
.pf-section-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    flex-shrink: 0;
}

/* ── Biography ──────────────────────────────────────────────────────────── */

.pf-bio {
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.75;
    margin: 0;
    white-space: pre-wrap;
}

/* ── Statistics — compact ───────────────────────────────────────────────── */

.pf-stats-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pf-stats-row {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 10px var(--space-md);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.pf-stats-row__org {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    width: 46px;
    flex-shrink: 0;
}

.pf-stats-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.pf-stats-dot--fiap { background: var(--color-cat-fiap); }
.pf-stats-dot--psa  { background: var(--color-cat-psa);  }
.pf-stats-dot--gpu  { background: var(--color-cat-gpu);  }

.pf-stats-row__values {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
    flex: 1;
}

.pf-stats-val {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.pf-stats-val__num {
    font-family: 'Cardo', Georgia, serif;
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.pf-stats-val__lbl {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

/* ── Contact ────────────────────────────────────────────────────────────── */

.pf-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pf-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-base);
}

.pf-contact-item__icon {
    color: var(--color-text-tertiary);
    flex-shrink: 0;
    display: flex;
}

.pf-contact-item a {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.pf-contact-item a:hover { color: var(--color-gold); }

/* ── Websites / links ───────────────────────────────────────────────────── */

.pf-link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pf-link-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.pf-link-item:hover { color: var(--color-gold); }

/* ── Social buttons ─────────────────────────────────────────────────────── */

.pf-socials {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

.pf-social-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    font-weight: 500;
    text-decoration: none;
    border: 1px solid var(--color-border);
    background: var(--color-surface);
    color: var(--color-text);
    transition:
        background var(--duration-fast) var(--ease-smooth),
        border-color var(--duration-fast) var(--ease-smooth),
        color var(--duration-fast) var(--ease-smooth),
        transform var(--duration-fast) var(--ease-spring);
}

.pf-social-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    transform: translateY(-1px);
}

/* ── Exhibitions ────────────────────────────────────────────────────────── */

.pf-exhibitions-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pf-exhibitions-list li {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    font-size: var(--text-base);
    color: var(--color-text);
    line-height: 1.5;
}

.pf-exhibitions-list__dot {
    flex-shrink: 0;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--color-gold);
    margin-top: 0.6em;
}

/* ── Title Certificates ─────────────────────────────────────────────────── */

.pf-certs {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.pf-cert-item {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: var(--space-md);
    padding: 10px var(--space-md);
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.pf-cert-item__title {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.02em;
}

.pf-cert-item__meta {
    font-size: var(--text-xs);
    color: var(--color-text-secondary);
}

/* ── Featured photos — nekonečný horizontální pás ───────────────────────── */

@keyframes pf-belt-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }   /* -50% = jeden kompletní průchod (2× duplikát) */
}

/* Wrapper se skrývá overflow a přidává fade hrany */
.pf-belt-outer {
    overflow: hidden;
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    );
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        black 7%,
        black 93%,
        transparent 100%
    );
    padding: var(--space-sm) 0;
}

/* Pás samotný — stejný princip jako homepage screenshots belt */
.pf-belt {
    display: flex;
    gap: 8px;
    width: max-content;
    will-change: transform;
    /* animace se spustí přes JS třídu is-ready, až se načtou obrázky → žádné poskakování */
}

.pf-belt.is-ready {
    animation: pf-belt-scroll 50s linear infinite;
}

/* Pauza na hover (tělo pásu, ne tlačítka) */
.pf-belt.is-ready:hover {
    animation-play-state: paused;
}

/* Pás je draggable — cursor hint */
.pf-belt-outer {
    cursor: grab;
}
.pf-belt-outer:active {
    cursor: grabbing;
}

/* Jednotlivá fotka — fixní výška, šířka přirozená → portréty užší, krajinky širší */
.pf-belt__item {
    flex-shrink: 0;
    height: 300px;
    min-width: 180px;   /* fallback před načtením obrázku — zabraňuje kolapsu na 0px */
    overflow: hidden;
    border-radius: var(--radius-sm);
    cursor: zoom-in;
    position: relative;
    transition: transform var(--duration-base) var(--ease-spring),
                box-shadow var(--duration-base) var(--ease-smooth);
}

.pf-belt__item:hover {
    transform: scale(1.02) translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
    z-index: 1;
}

.pf-belt__item img {
    height: 100%;
    width: auto;        /* přirozená šířka odvozená z výšky — žádné ořezávání */
    display: block;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
    transition: filter var(--duration-base) var(--ease-smooth);
}

.pf-belt__item:hover img {
    filter: brightness(1.08);
}

@media (max-width: 600px) {
    .pf-belt__item { height: 200px; }
    .pf-belt.is-ready { animation-duration: 35s; }
}

/* ── Lightbox ───────────────────────────────────────────────────────────── */

.pf-lightbox {
    /* Managed by JS (display toggled inline, opacity animated) */
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 48px 64px;
    cursor: zoom-out;
}

.pf-lightbox.is-open {
    display: flex;
}

.pf-lightbox__img-wrap {
    position: relative;
    max-width: min(78vw, 1100px);
    max-height: 82vh;
    cursor: default;
    border-radius: 10px;
    overflow: hidden;
    box-shadow:
        0 2px 8px rgba(0,0,0,0.25),
        0 16px 48px rgba(0,0,0,0.45),
        0 0 0 1px rgba(194, 163, 107, 0.12);
}

.pf-lightbox__img {
    display: block;
    max-width: min(78vw, 1100px);
    max-height: 82vh;
    width: auto;
    height: auto;
    object-fit: contain;
    -webkit-user-drag: none;
    user-select: none;
    pointer-events: none;
    /* opacity & transform animated by JS */
    opacity: 0;
    transform: scale(0.96);
}

/* Transparent overlay on top of the image to block right-click */
.pf-lightbox__guard {
    position: absolute;
    inset: 0;
    cursor: default;
}

/* Close — sits in top-right corner of the photo */
.pf-lightbox__close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(10, 7, 3, 0.55);
    border: 1px solid rgba(194, 163, 107, 0.2);
    color: rgba(234, 230, 222, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--duration-fast) var(--ease-smooth),
        border-color var(--duration-fast) var(--ease-smooth),
        color var(--duration-fast) var(--ease-smooth);
    z-index: 2;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pf-lightbox__close:hover {
    background: rgba(194, 163, 107, 0.18);
    border-color: rgba(194, 163, 107, 0.45);
    color: var(--color-gold);
}

/* Prev / Next — float outside the photo on the sides */
.pf-lightbox__nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(10, 7, 3, 0.55);
    border: 1px solid rgba(194, 163, 107, 0.2);
    color: rgba(234, 230, 222, 0.9);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        background var(--duration-fast) var(--ease-smooth),
        border-color var(--duration-fast) var(--ease-smooth),
        color var(--duration-fast) var(--ease-smooth);
    z-index: 1;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.pf-lightbox__nav:hover {
    background: rgba(194, 163, 107, 0.15);
    border-color: rgba(194, 163, 107, 0.45);
    color: var(--color-gold);
}
.pf-lightbox__prev { left: 16px; }
.pf-lightbox__next { right: 16px; }

/* Counter — pill pod fotkou */
.pf-lightbox__counter {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    color: rgba(234, 230, 222, 0.7);
    letter-spacing: 0.12em;
    font-variant-numeric: tabular-nums;
    background: rgba(10, 7, 3, 0.5);
    padding: 3px 10px;
    border-radius: 99px;
    border: 1px solid rgba(194, 163, 107, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2;
    white-space: nowrap;
}

@media (max-width: 700px) {
    .pf-lightbox {
        padding: 16px;
    }
    .pf-lightbox__img-wrap {
        max-width: 94vw;
        max-height: 85vh;
    }
    .pf-lightbox__img {
        max-width: 94vw;
        max-height: 85vh;
    }
    .pf-lightbox__nav { display: none; }
}

/* ── Copyright / liability notice ───────────────────────────────────────── */

.pf-copyright-notice {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    color: var(--color-text-tertiary);
    opacity: 0.55;
    line-height: 1.6;
    padding: var(--space-sm) 0 var(--space-xl);
    border-top: 1px solid rgba(234, 230, 222, 0.04);
    margin-top: var(--space-lg);
}

.pf-copyright-notice svg {
    opacity: 0.6;
    margin-top: 2px;
}

.pf-copyright-notice strong {
    font-weight: 500;
}

.pf-copyright-notice a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
    opacity: 0.7;
    transition: opacity var(--duration-fast) var(--ease-smooth);
}

.pf-copyright-notice a:hover {
    opacity: 1;
}

/* ── Back link ──────────────────────────────────────────────────────────── */

.pf-back-link {
    padding-top: var(--space-sm);
}

.pf-back-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color var(--duration-fast) var(--ease-smooth);
}

.pf-back-link a:hover { color: var(--color-gold); }
