/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #e0e0e0;
    background: #0f0f0f;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: #fff; font-weight: 600; }

/* === NAV === */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid #222;
}

.nav-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-logo-img { height: 50px; width: auto; flex-shrink: 0; }

.nav-name {
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    letter-spacing: -0.01em;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: #aaa;
    transition: color 0.15s;
}

.nav-links a:hover { color: #fff; }

.nav-cta {
    background: #f0c040;
    color: #0f0f0f !important;
    padding: 9px 20px;
    border-radius: 6px;
    font-weight: 600 !important;
}
.nav-cta:hover { background: #f5d060 !important; color: #0f0f0f !important; }

/* === HERO === */
.hero {
    padding: 80px 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 50%, #1a1510 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-name {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #fff;
    margin-bottom: 16px;
}

.hero-real-name {
    font-size: 1.3rem;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 12px;
}

.hero-sub {
    font-size: 1.1rem;
    color: #999;
    margin-bottom: 8px;
    line-height: 1.5;
}

.hero-tagline {
    font-size: 1.25rem;
    color: #ccc;
    font-weight: 500;
    margin-bottom: 32px;
    border-left: 3px solid #f0c040;
    padding-left: 16px;
}

.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
}

.btn-primary { background: #f0c040; color: #0f0f0f; }
.btn-primary:hover { background: #f5d060; }

.btn-secondary {
    background: transparent;
    color: #ccc;
    border: 2px solid #444;
}
.btn-secondary:hover { border-color: #f0c040; color: #f0c040; }

.hero-photo img {
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    margin: 0 auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

/* === SECTIONS === */
.section { padding: 80px 24px; }
.section-alt { background: #141414; }
.section-inner { max-width: 900px; margin: 0 auto; }

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.section-sub {
    color: #999;
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.section-intro {
    color: #bbb;
    margin-bottom: 16px;
    max-width: 700px;
}

/* === ABOUT === */
.about-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
}

.about-text p { color: #bbb; margin-bottom: 18px; }

.about-highlights { display: flex; flex-direction: column; gap: 14px; }

.highlight-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.highlight-icon { font-size: 1.4rem; margin-bottom: 2px; }
.highlight-card strong { font-size: 0.95rem; }
.highlight-card span { font-size: 0.85rem; color: #888; }

/* === ACTION PHOTOS === */
.action-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.action-photos a {
    display: block;
    cursor: pointer;
    border-radius: 8px;
    overflow: hidden;
}

.action-photos img {
    border-radius: 8px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.15s;
}

.action-photos a:hover img {
    opacity: 0.85;
}

.photo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.action-photos > a img {
    aspect-ratio: 4/3;
}

.photo-pair a img {
    aspect-ratio: 3/4;
}

/* === CENNIK === */
.pricing-table-wrap {
    margin: 8px 0 28px;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
    background: #1a1a1a;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
}

.pricing-table thead { background: #222; }

.pricing-table th {
    padding: 16px 14px;
    text-align: center;
    font-size: 0.85rem;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.3;
}

.th-sub {
    display: block;
    font-weight: 400;
    font-size: 0.75rem;
    color: #666;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 2px;
}

.pricing-table td {
    padding: 14px;
    text-align: center;
    border-top: 1px solid #2a2a2a;
    font-size: 1rem;
}

.pricing-table tbody tr:hover { background: #1f1f1f; }

.pricing-table .num {
    color: #888;
    font-size: 0.9rem;
}

.pricing-table .price {
    color: #f0c040;
    font-weight: 700;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
}

.pricing-table .per-session {
    font-weight: 400;
    font-size: 0.8rem;
    color: #888;
}

.cennik-note {
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    margin-top: 8px;
}

/* === PLANY === */
.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 36px;
}

.plan-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 32px;
}

.plan-card h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 12px;
}

.plan-lead { color: #aaa; margin-bottom: 18px; font-size: 0.95rem; }

.plan-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.plan-card li {
    color: #bbb;
    font-size: 0.92rem;
    line-height: 1.6;
    padding-left: 20px;
    position: relative;
}

.plan-card li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: #f0c040;
}

/* === OPINIE === */
.reviews-cta { text-align: center; margin-top: 24px; }

/* === KONTAKT === */
.contact-grid {
    display: flex;
    gap: 48px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    padding: 24px 28px;
    min-width: 220px;
}

.contact-icon { font-size: 1.5rem; margin-bottom: 4px; }
.contact-item strong { font-size: 0.9rem; color: #888; }

.contact-item a,
.contact-item span { font-size: 1.05rem; color: #ddd; }
.contact-item a:hover { color: #f0c040; }

/* === LIGHTBOX === */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(0,0,0,0.92);
    align-items: center;
    justify-content: center;
    padding: 32px;
    cursor: pointer;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    border-radius: 6px;
    box-shadow: 0 8px 48px rgba(0,0,0,0.6);
    cursor: default;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 2.5rem;
    color: #888;
    line-height: 1;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1000;
}

.lightbox-close:hover { color: #fff; }

/* === FOOTER === */
.footer {
    border-top: 1px solid #222;
    padding: 32px 24px;
    text-align: center;
    color: #666;
    font-size: 0.85rem;
}

.footer-inner { max-width: 900px; margin: 0 auto; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    html { font-size: 15px; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        text-align: center;
    }

    .hero-photo { order: -1; }
    .hero-photo img { max-width: 280px; }
    .hero-name { font-size: 2.4rem; }

    .hero-tagline {
        border-left: none;
        border-bottom: 3px solid #f0c040;
        padding: 0 0 12px 0;
    }

    .hero-buttons { justify-content: center; }

    .about-grid { grid-template-columns: 1fr; }
    .plans-grid { grid-template-columns: 1fr; }
    .action-photos { grid-template-columns: 1fr; }

    .nav-links { gap: 14px; }
    .nav-links a { font-size: 0.8rem; }
    .nav-cta { padding: 7px 12px; font-size: 0.8rem; }
    .nav-name { display: none; }

    .section-title { font-size: 1.6rem; }
    .contact-grid { flex-direction: column; gap: 16px; }

    .pricing-table td, .pricing-table th { padding: 10px 8px; font-size: 0.85rem; }
    .pricing-table .price { font-size: 0.95rem; }
}

@media (max-width: 480px) {
    .hero { padding: 48px 16px; min-height: auto; }
    .section { padding: 48px 16px; }
    .hero-name { font-size: 2rem; }
    .plan-card { padding: 20px; }
}
