/* ===== BANKA ZDROWIA — Style ===== */
:root {
    --beige-50: #fdf8f3;
    --beige-100: #f5ede3;
    --beige-200: #ede0d0;
    --beige-300: #e0ceb4;
    --beige-400: #d4b896;
    --gold: #c9a96e;
    --gold-light: #dfc28e;
    --green-dark: #2d5a3d;
    --green: #3d7a52;
    --green-light: #5a9f6e;
    --green-pale: #e8f0e4;
    --brown: #6b4f3a;
    --brown-light: #8b6f58;
    --cream: #faf5ee;
    --white: #ffffff;
    --text: #3d2e24;
    --text-light: #6b5a4a;
    --text-muted: #9a8a7a;
    --shadow: rgba(61, 46, 36, 0.08);
    --shadow-lg: rgba(61, 46, 36, 0.12);
    --max-width: 1100px;
    --radius: 12px;
    --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

img, svg, iframe {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

section { padding: 5rem 0; }

/* Section Header */
.section-header {
    margin-bottom: 3rem;
}

.section-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    margin-bottom: 0.8rem;
}

.section-header h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.6rem;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

/* ===== NAVIGATION ===== */
.navbar {
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    padding: 0.8rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--beige-200);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon img {
    display: block;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--green-dark);
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 0.25rem;
    margin: 0;
    padding: 0;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.9rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    background: var(--green-pale);
    color: var(--green-dark);
}

.nav-cta-btn {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--green);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(61, 122, 82, 0.25);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.4rem;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--beige-100) 0%, var(--cream) 40%, var(--beige-200) 100%);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(201, 169, 110, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(61, 122, 82, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    font-size: 0.9rem;
    color: var(--brown);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    border: 1px solid var(--gold);
    background: rgba(255,255,255,0.6);
    padding: 0.3rem 1.2rem;
    border-radius: 20px;
}

.hero-content h1 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 1rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-hero {
    display: inline-block;
    padding: 1.1rem 3rem;
    background: linear-gradient(135deg, var(--green), var(--green-light));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(61, 122, 82, 0.3);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(61, 122, 82, 0.4);
}

.btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

/* ===== SERVICES / CENNIK ===== */
.services {
    background: var(--white);
}

.service-category {
    margin-bottom: 2.5rem;
}

.category-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 1.2rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--beige-200);
}

.service-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.8rem;
    padding: 1.2rem 1.5rem;
    background: var(--beige-50);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius);
    margin-bottom: 0.8rem;
    transition: all 0.25s ease;
    cursor: pointer;
}

.service-card.expanded {
    border-color: var(--gold);
    box-shadow: 0 4px 12px var(--shadow);
}

.service-card:hover {
    border-color: var(--beige-300);
}

.service-info { flex: 1; }

.service-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 0.3rem;
}

.service-desc {
    display: none;
    padding-top: 0.5rem;
}

.service-desc.open {
    display: block;
}

.service-desc p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.service-duration-inline {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--text-muted);
    background: var(--beige-100);
    padding: 0.1rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.3rem;
}

.service-online {
    margin-bottom: 0;
    font-style: italic;
    color: var(--text-light);
    font-size: 0.9rem;
}

.service-toggle-icon {
    font-size: 0.7rem;
    color: var(--beige-300);
    transition: transform 0.2s ease;
    line-height: 1;
    flex-shrink: 0;
    padding-top: 0.5rem;
}

.service-toggle-icon.open {
    transform: rotate(180deg);
}

.service-meta {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
}

.service-duration { display: none; }

.service-duration {
    font-size: 0.8rem;
    color: var(--text-muted);
    white-space: nowrap;
}

.service-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--green-dark);
    white-space: nowrap;
}

.btn-service-booksy {
    display: inline-block;
    padding: 0.35rem 0.8rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.25s ease;
    white-space: nowrap;
    line-height: 1.3;
}

.btn-service-booksy:hover {
    background: #b89450;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(201, 169, 110, 0.3);
}

/* ===== PAKIETY ===== */
.packages-section {
    padding: 3rem 0 5rem;
}

.packages-section .section-subtitle {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.6rem;
    color: var(--brown);
    margin-bottom: 1.5rem;
    padding-bottom: 0.3rem;
    border-bottom: 2px solid var(--beige-200);
}

.packages {
    margin-top: 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.2rem;
}

.package-card {
    background: linear-gradient(180deg, var(--white), var(--beige-50));
    border: 1px solid var(--beige-300);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow-lg);
}

.package-header {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.package-header h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    color: var(--brown);
    font-weight: 700;
}

.package-icon {
    margin-bottom: 0.8rem;
}

.package-badge {
    background: var(--gold);
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.2rem 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
    align-self: flex-start;
}

.package-desc {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
}

.package-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 1rem;
}

.package-price {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-dark);
    white-space: nowrap;
}

.package-price small {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.package-note {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-style: italic;
}

/* ===== PREPARATION (Accordion) ===== */
.preparation {
    background: var(--cream);
}

.prep-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.prep-item {
    background: var(--white);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.prep-item:hover { border-color: var(--beige-300); }

.prep-trigger {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 56px;
    padding: 0.6rem 1.2rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--brown);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
    line-height: 1.3;
}

.prep-trigger:hover { background: var(--beige-50); }

.prep-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.prep-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.prep-arrow {
    margin-left: auto;
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.prep-item[aria-expanded="true"] .prep-arrow,
.prep-trigger[aria-expanded="true"] .prep-arrow { transform: rotate(180deg); }

.prep-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.prep-item[aria-expanded="true"] .prep-content,
.prep-trigger[aria-expanded="true"] + .prep-content {
    max-height: 600px;
    padding: 0 1.5rem 1.2rem;
}

.prep-content ul {
    list-style: none;
    padding: 0;
}

.prep-content li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.6rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.prep-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

/* ===== ABOUT ===== */
.about { background: var(--white); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 3rem;
    align-items: start;
}

.about-image {
    position: sticky;
    top: 100px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 30px var(--shadow-lg);
}

.about-text .section-header { margin-bottom: 1.5rem; }

.about-intro {
    font-size: 1.15rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.98rem;
    line-height: 1.8;
}

.about-text strong {
    color: var(--green-dark);
}

/* ===== CONTACT ===== */
.contact {
    background: linear-gradient(180deg, var(--beige-50), var(--cream));
}

.contact .section-header {
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    align-items: stretch;
    gap: 4rem;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.contact-data {
    flex: 0 0 400px;
    max-width: 420px;
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--beige-200);
    font-size: 1rem;
    color: var(--text-light);
}

.contact-row:last-of-type {
    border-bottom: none;
}

.contact-row-icon {
    width: 2rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-row-icon svg {
    width: 28px;
    height: 28px;
    display: block;
}

.contact-row strong {
    color: var(--brown);
}

.contact-link {
    color: var(--green);
    text-decoration: none;
    font-weight: 600;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map-square {
    flex: 1;
    min-width: 0;
    max-width: 520px;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    flex-shrink: 0;
}

.contact-map-square iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.btn-booksy {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: var(--gold);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-booksy:hover {
    background: #b89450;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 169, 110, 0.3);
}

/* ===== REGULAMIN ===== */
.rules { background: var(--white); }

.rules-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rule {
    padding: 1.5rem;
    background: var(--beige-50);
    border-left: 4px solid var(--gold);
    border-radius: 0 var(--radius) var(--radius) 0;
}

.rule h3 {
    font-size: 1.1rem;
    color: var(--brown);
    font-weight: 600;
    margin-bottom: 0.6rem;
}

.rule p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.rule strong {
    color: var(--green-dark);
}

/* ===== FAQ ===== */
.faq {
    background: var(--cream);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--beige-200);
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--brown);
    text-align: left;
    font-family: inherit;
    transition: background 0.2s;
}

.faq-trigger:hover { background: var(--beige-50); }

.faq-arrow {
    transition: transform 0.3s ease;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.faq-trigger[aria-expanded="true"] .faq-arrow { transform: rotate(180deg); }

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-trigger[aria-expanded="true"] + .faq-content {
    max-height: 1000px;
    padding: 0 1.5rem 1.2rem;
}

.faq-content p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.faq-content ul {
    list-style: none;
    padding: 0;
}

.faq-content li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.faq-footer {
    font-style: italic;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.faq-source {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--brown);
    color: var(--beige-100);
    padding: 3rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
    margin-bottom: 0.8rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--beige-300);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
    display: block;
    color: var(--beige-300);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    transition: color 0.2s;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--beige-300);
}

.footer-bottom span {
    color: var(--gold);
}

.footer-credit {
    margin-top: 0.4rem;
    font-size: 0.8rem;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
}

.footer-credit a:hover {
    text-decoration: underline;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-image {
        position: static;
        max-width: 400px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-content h1 { font-size: 3rem; }

    .section-header h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: rgba(255,255,255,0.98);
        padding: 1rem;
        border-bottom: 1px solid var(--beige-200);
        flex-direction: column;
        gap: 0;
        box-shadow: 0 8px 24px var(--shadow);
    }

    .nav-menu.active { display: flex; }

    .nav-link {
        padding: 0.9rem 1rem;
        border-radius: 0;
        border-bottom: 1px solid var(--beige-100);
    }

    .nav-link:last-child { border-bottom: none; }

    .nav-toggle { display: flex; }

    .nav-cta-btn { display: none; }

    .hero { min-height: 70vh; }

    .hero-content h1 { font-size: 2.3rem; }

    .hero-subtitle { font-size: 1.1rem; }

    .btn-hero {
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }

    .section-header h2 { font-size: 1.7rem; }

    .service-card {
        flex-direction: column;
        gap: 0.5rem;
    }

    .service-meta {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-split {
        flex-direction: column;
    }
    
    .contact-data {
        padding: 2rem 0 1rem;
    }
    
    .contact-map-square {
        width: 100%;
        min-height: 300px;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    section { padding: 3.5rem 0; }
}

@media (max-width: 500px) {
    .hero-content h1 { font-size: 1.9rem; }
    .section-header h2 { font-size: 1.4rem; }
}