/* =====================================================
   Studio NOVĚ – Stylesheet
   Barevná paleta: teplá béžová/zlatá, bílá, tmavě hnědá
   ===================================================== */

/* === RESET & PROMĚNNÉ === */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --gold:        #c9a97a;
    --gold-dark:   #a8855a;
    --gold-light:  #e8d5b7;
    --gold-pale:   #f4ede3;
    --taupe:       #9e8a78;
    --brown:       #3d3530;
    --brown-mid:   #6b5f57;
    --brown-deep:  #2a2018;
    --bg:          #faf9f7;
    --bg-light:    #f4f1ec;
    --text:        #3d3530;
    --text-muted:  #7a6e67;
    --white:       #ffffff;
    --radius:      14px;
    --radius-sm:   8px;
    --shadow:      0 4px 24px rgba(61, 53, 48, 0.09);
    --shadow-lg:   0 10px 40px rgba(61, 53, 48, 0.14);
    --transition:  0.3s ease;
    --max-w:       1200px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
    font-synthesis: none;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    line-height: 1.25;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* === LAYOUT === */
.container {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 96px 0; }
.section-light { background: var(--bg-light); }

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--brown);
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 16px auto 0;
}

.divider {
    width: 52px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 0 auto;
    border-radius: 2px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 0.92rem;
    letter-spacing: 0.06em;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}
.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(168, 133, 90, 0.38);
}

.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.5);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--gold-dark);
    border-color: var(--gold);
    font-size: 0.88rem;
    padding: 10px 22px;
}
.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

/* === NAVIGACE === */
#navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 22px 0;
    transition: all var(--transition);
}

#navbar.scrolled {
    background: rgba(250, 249, 247, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 2px 20px rgba(61, 53, 48, 0.1);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    transition: color var(--transition);
    flex-shrink: 0;
}
.nav-logo span { color: var(--gold-light); }
#navbar.scrolled .nav-logo { color: var(--brown); }
#navbar.scrolled .nav-logo span { color: var(--gold); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
    border-radius: 1px;
}
.nav-links a:hover::after,
.nav-links a:focus::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--white); }

#navbar.scrolled .nav-links a { color: var(--text-muted); }
#navbar.scrolled .nav-links a:hover { color: var(--gold-dark); }

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    padding: 9px 22px;
    border-radius: 50px;
    transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--gold-dark) !important;
    transform: translateY(-1px);
}

/* Hamburger tlačítko */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}
#navbar.scrolled .nav-toggle span { background: var(--brown); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* === HERO === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    background: var(--brown-deep);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.28;
    transition: opacity 0.5s;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(61, 53, 48, 0.55) 0%,
        rgba(42, 32, 24, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 740px;
}

.hero-eyebrow {
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 14px;
}

.hero h1 {
    font-size: clamp(3.2rem, 9vw, 6rem);
    color: var(--white);
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}
.hero h1 span { color: var(--gold); }

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.82);
    margin-bottom: 16px;
    font-weight: 300;
}

.hero-hours {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--gold-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(255,255,255,0.5);
    animation: bounce 2s ease-in-out infinite;
    transition: color var(--transition);
}
.hero-scroll:hover { color: var(--gold-light); }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* === O NÁS === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-text .lead {
    font-family: 'Playfair Display', serif;
    font-size: 1.18rem;
    color: var(--brown);
    margin-bottom: 20px;
    line-height: 1.65;
}

.about-text p {
    color: var(--text-muted);
    font-size: 1rem;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.feature {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 4px;
    font-style: normal;
    line-height: 1;
}

.feature h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.96rem;
    font-weight: 700;
    margin-bottom: 3px;
    color: var(--brown);
}
.feature p {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin: 0;
}

/* === SPECIALISTKY === */
.specialists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
    gap: 28px;
}

.specialist-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.specialist-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-lg);
}

.card-top {
    padding: 32px 28px 24px;
    border-bottom: 1px solid var(--gold-pale);
    background: linear-gradient(135deg, #faf9f7 0%, #f4f1ec 100%);
    position: relative;
}
.card-top::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.card-icon {
    font-size: 2.2rem;
    margin-bottom: 14px;
    line-height: 1;
}

.card-top h3 {
    font-size: 1.25rem;
    color: var(--brown);
    margin-bottom: 4px;
}

.card-role {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 4px;
}

.card-ico {
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.card-body {
    padding: 24px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.card-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.65;
    flex: 1;
}

.service-list {
    margin-bottom: 24px;
}
.service-list li {
    font-size: 0.87rem;
    color: var(--text);
    padding: 7px 0 7px 18px;
    border-bottom: 1px solid var(--gold-pale);
    position: relative;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* === CENÍK === */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(264px, 1fr));
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition);
}
.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    background: linear-gradient(145deg, var(--brown) 0%, var(--brown-mid) 100%);
    padding: 30px 28px;
    text-align: center;
    color: var(--white);
}

.pricing-icon {
    display: block;
    font-size: 2.2rem;
    margin-bottom: 10px;
    line-height: 1;
}

.pricing-header h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin-bottom: 4px;
}

.pricing-header p {
    font-size: 0.82rem;
    color: var(--gold-light);
    font-weight: 400;
}

.price-list {
    padding: 20px 28px 24px;
}
.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid var(--gold-pale);
    font-size: 0.88rem;
    gap: 16px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li span:first-child {
    color: var(--text);
    flex: 1;
}
.price-list li span:last-child {
    color: var(--gold-dark);
    font-weight: 700;
    white-space: nowrap;
}

.pricing-note {
    text-align: center;
    margin-top: 36px;
    color: var(--text-muted);
    font-size: 0.87rem;
    font-style: italic;
}

.price-list--services {
    padding: 20px 28px 8px;
}
.price-list--services li {
    font-size: 0.9rem;
    color: var(--text);
    padding: 7px 0 7px 18px;
    border-bottom: 1px solid var(--gold-pale);
    position: relative;
}
.price-list--services li:last-child { border-bottom: none; }
.price-list--services li::before {
    content: '–';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.pricing-bottom {
    margin-top: auto;
    padding: 0 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.price-from {
    margin: 0;
    font-size: 1.4rem;
    color: var(--text-muted);
    font-family: 'Playfair Display', serif;
}
.price-from strong {
    color: var(--gold-dark);
    font-size: 1.6rem;
}

.price-web-link {
    display: inline-block;
    margin: 0 28px 24px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--gold-dark);
    transition: color var(--transition);
}
.price-web-link:hover { color: var(--gold); }

/* === GALERIE === */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 12px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-light);
    cursor: pointer;
}

.gallery-item--wide { grid-column: span 2; }
.gallery-item--tall { grid-row: span 2; }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.06); }

/* === KDE NÁS NAJDETE === */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 56px;
    align-items: start;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.location-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.location-icon {
    width: 42px;
    height: 42px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-dark);
    flex-shrink: 0;
}

.location-item h4 {
    font-family: 'Lato', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 5px;
}
.location-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.location-contacts {
    padding-top: 8px;
    border-top: 1px solid var(--gold-pale);
}
.location-contacts-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-dark);
    margin-bottom: 10px;
}
.location-contacts a {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    padding: 4px 0;
    transition: color var(--transition);
}
.location-contacts a:hover { color: var(--gold-dark); }

.location-facebook {
    padding-top: 8px;
    border-top: 1px solid var(--gold-pale);
}

.fb-person-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold-dark);
    border-bottom: 1px solid var(--gold-pale);
    transition: color var(--transition), gap var(--transition);
}
.fb-person-link:last-child { border-bottom: none; }
.fb-person-link:hover { color: var(--brown); gap: 14px; }

.location-map {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.location-map iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* === TRASA KE STUDIU === */
.route-section {
    margin-top: 60px;
    padding-top: 48px;
    border-top: 1px solid var(--gold-light);
}

.route-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--brown);
    margin-bottom: 32px;
    text-align: center;
}

.route-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.route-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
}

.route-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.route-step img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.route-step p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
}

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

.map-placeholder {
    background: var(--bg-light);
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-muted);
    gap: 12px;
    border: 2px dashed var(--gold-light);
    border-radius: var(--radius);
    padding: 24px;
}
.map-placeholder svg { color: var(--gold-light); }
.map-placeholder p { font-size: 1rem; font-weight: 700; color: var(--taupe); }
.map-placeholder small { font-size: 0.82rem; color: var(--text-muted); line-height: 1.6; }

/* === KONTAKT === */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.contact-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px 24px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}
.contact-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.contact-avatar {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 18px;
    box-shadow: 0 4px 16px rgba(168,133,90,0.3);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--brown);
    margin-bottom: 5px;
}

.contact-service {
    color: var(--text-muted);
    font-size: 0.83rem;
    margin-bottom: 16px;
    line-height: 1.4;
}

.contact-phone {
    margin-top: auto;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.contact-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--gold-pale);
    color: var(--gold-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 20px;
    border-radius: 50px;
    transition: background var(--transition), color var(--transition);
}
.contact-card:hover .contact-call {
    background: var(--gold);
    color: var(--white);
}

/* === FOOTER === */
.footer {
    background: var(--brown-deep);
    color: rgba(255,255,255,0.65);
    padding: 64px 0 0;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: var(--white);
    margin-bottom: 10px;
}
.footer-logo span { color: var(--gold); }
.footer-brand > p { font-size: 0.9rem; margin-bottom: 20px; }

.footer-fb-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-fb-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-fb-link:hover {
    color: var(--gold-light);
}

.footer-nav-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 18px;
}

.footer-nav,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a,
.footer-contact a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    transition: color var(--transition);
}
.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding: 22px 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.3);
}

/* === SCROLL ANIMACE === */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Postupné zpoždění pro karty vedle sebe */
.specialists-grid .fade-in:nth-child(2),
.pricing-grid .fade-in:nth-child(2),
.contact-grid .fade-in:nth-child(2) { transition-delay: 0.1s; }

.specialists-grid .fade-in:nth-child(3),
.pricing-grid .fade-in:nth-child(3),
.contact-grid .fade-in:nth-child(3) { transition-delay: 0.2s; }

.specialists-grid .fade-in:nth-child(4),
.pricing-grid .fade-in:nth-child(4),
.contact-grid .fade-in:nth-child(4) { transition-delay: 0.3s; }

/* === LIGHTBOX === */
#lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 2000;
    background: rgba(20, 15, 10, 0.95);
    align-items: center;
    justify-content: center;
}
#lightbox.active {
    display: flex;
}

#lightbox-img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    user-select: none;
}

#lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
    transition: color var(--transition);
    z-index: 2001;
}
#lightbox-close:hover { color: var(--white); }

#lightbox-prev,
#lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--white);
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2001;
}
#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }
#lightbox-prev:hover,
#lightbox-next:hover { background: rgba(255,255,255,0.25); }

@media (max-width: 520px) {
    #lightbox-prev { left: 8px; }
    #lightbox-next { right: 8px; }
    #lightbox-img { max-width: 95vw; }
}

/* === RESPONZIVITA === */
@media (max-width: 1100px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .gallery-item--wide { grid-column: span 2; }
}

@media (max-width: 900px) {
    .section { padding: 72px 0; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .location-grid { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: span 2; }
}

@media (max-width: 768px) {
    /* Mobilní menu */
    .nav-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 0; right: -100%; bottom: 0;
        width: min(280px, 85vw);
        height: 100vh;
        z-index: 1000;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        padding: 88px 32px 40px;
        gap: 20px;
        box-shadow: -6px 0 40px rgba(0,0,0,0.14);
        transition: right var(--transition);
        overflow-y: auto;
    }
    .nav-links.open { right: 0; }
    .nav-links a { color: var(--text-muted) !important; font-size: 1rem; }
    .nav-links a:hover { color: var(--gold-dark) !important; }
    .nav-cta { background: var(--gold) !important; color: var(--white) !important; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 180px;
    }
    .gallery-item--wide { grid-column: span 1; }
    .gallery-item--tall { grid-row: span 1; }

    .footer-inner { grid-template-columns: 1fr; }
    .footer-brand { grid-column: auto; }

    .hero-actions { flex-direction: column; align-items: center; }
    .btn-ghost { display: none; }
}

@media (max-width: 520px) {
    .container { padding: 0 18px; }
    .section { padding: 56px 0; }
    .section-header { margin-bottom: 40px; }

    .specialists-grid,
    .pricing-grid,
    .contact-grid { grid-template-columns: 1fr; }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 150px;
        gap: 8px;
    }

    .hero h1 { font-size: 3rem; }
    .hero-tagline { font-size: 1rem; }
}
