:root {
    --bg: #050507;
    --bg-soft: #111118;
    --bg-elevated: #181823;
    --border-subtle: rgba(255, 255, 255, 0.04);
    --yellow: #ffd54a;
    --yellow-soft: rgba(255, 213, 74, 0.2);
    --text-main: #f5f5f7;
    --text-muted: #acb0c0;
    --accent: #ffd54a;
    --danger: #ff5c5c;
    --success: #2ecc71;
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.7);
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.18s ease-out;
    --transition: 0.28s cubic-bezier(0.22, 0.61, 0.36, 1);
    --max-width: 1120px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    /* łagodniejsze, ciągłe tło */
    background: radial-gradient(circle at top, #181824 0, #050507 70%);
    min-height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.page-wrap {
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* TOPBAR */

.topbar {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px);
    background: linear-gradient(to bottom, rgba(5, 5, 7, 0.95), rgba(5, 5, 7, 0.7));
    border-bottom: 1px solid var(--border-subtle);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 0;
    position: relative;
}

.logo img {
    height: 60px; /* większe logo na desktopie */
    filter: drop-shadow(0 0 18px rgba(255, 213, 74, 0.25));
}

/* NAV – desktop */

.nav {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.92rem;
}

.nav a {
    position: relative;
    padding-bottom: 0.2rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, #ffea7a, #ffb400);
    transition: width var(--transition-fast);
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 213, 74, 0.7);
    color: var(--accent);
    font-weight: 600;
    box-shadow: 0 0 0 0 rgba(255, 213, 74, 0.3);
    animation: pulseBorder 2.2s infinite;
}

/* HAMBURGER */

.nav-toggle {
    display: none;
    position: relative;
    width: 42px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 7, 0.95);
    padding: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: background var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.nav-toggle span {
    position: absolute;
    left: 9px;
    right: 9px;
    height: 2px;
    border-radius: 999px;
    background: var(--text-main);
    transition:
        transform 0.22s ease,
        opacity 0.18s ease,
        top 0.22s ease,
        bottom 0.22s ease;
}

.nav-toggle span:nth-child(1) {
    top: 9px;
}

.nav-toggle span:nth-child(2) {
    top: 15px;
}

.nav-toggle span:nth-child(3) {
    top: 21px;
}

.nav-toggle--active span:nth-child(1) {
    top: 15px;
    transform: rotate(45deg);
}

.nav-toggle--active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle--active span:nth-child(3) {
    top: 15px;
    transform: rotate(-45deg);
}

/* HERO */

.hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding: 3.5rem 0 4.5rem;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent 55%),
        radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.08), transparent 55%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr);
    gap: 3.2rem;
    align-items: center;
    z-index: 1;
}

.hero-text {
    animation: heroFade 0.9s ease-out forwards;
    opacity: 0;
    transform: translateY(18px);
}

@keyframes heroFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    background: rgba(9, 9, 14, 0.85);
    border: 1px solid rgba(255, 213, 74, 0.4);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
}

.badge::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(255, 213, 74, 0.7);
}

.hero h1 {
    margin: 1rem 0 0.75rem;
    font-size: 2.5rem;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.hero h1 span {
    display: block;
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--text-muted);
    margin-top: 0.35rem;
}

.hero p {
    max-width: 34rem;
    margin: 0 0 1.7rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* Buttons */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    padding: 0.7rem 1.5rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    cursor: pointer;
    border: 1px solid transparent;
    background: none;
    transition:
        transform var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        border-color var(--transition-fast),
        color var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #ffea7a, #ffb400);
    color: #141414;
    box-shadow: 0 12px 25px rgba(255, 180, 0, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 40px rgba(255, 180, 0, 0.5);
}

.btn-outline {
    border-color: rgba(255, 213, 74, 0.6);
    color: var(--accent);
    background: rgba(9, 9, 14, 0.8);
}

.btn-outline:hover {
    background: rgba(255, 213, 74, 0.08);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.3rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.hero-meta div::before {
    content: "•";
    margin-right: 0.4rem;
    color: var(--accent);
}

/* PROSTA BIAŁA KARTA NA LOGO */

.hero-logo-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 0;
    background: transparent;
    border: none;
    transform: translateY(10px);
    opacity: 0;
    animation: cardIn 0.9s 0.15s ease-out forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

@keyframes cardIn {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.hero-logo-inner {
    position: relative;
    padding: 1.4rem 1.6rem 1.2rem;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.hero-logo-inner img {
    display: block;
    width: 100%;
    max-width: 220px;
    margin: 0 auto;
}

.hero-logo-card p {
    margin-top: 0.8rem;
    font-size: 0.9rem;
    color: #333333;
    text-align: center;
}

/* SECTIONS */

.section {
    padding: 4.5rem 0;
    position: relative;

    /* START animacji – sekcja na początku niewidoczna */
    opacity: 0;
    transform: translateY(32px);
    transition: opacity var(--transition), transform var(--transition);
}

/* po wejściu sekcji */
.section.section--visible {
    opacity: 1;
    transform: translateY(0);
}

/* brak ::before – żeby nie było pasów na krawędziach */

/* tytuły / tekst */
.section h2 {
    font-size: 1.7rem;
    margin-bottom: 1.1rem;
}

.section p {
    color: var(--text-muted);
    line-height: 1.7;
}

.section-grid {
    display: grid;
    gap: 3rem;
}

/* sekcje nie nadpisują tła – korzystają z body */
.section-about,
.section-offer,
.section-links,
.section-contact,
.section-gallery {
    background: transparent;
}

/* ABOUT */

.about-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 1.6rem;
}

.highlight {
    padding: 0.8rem 1.1rem;
    border-radius: 18px;
    border: 1px solid rgba(255, 213, 74, 0.35);
    background: radial-gradient(circle at top, rgba(255, 213, 74, 0.08), rgba(0, 0, 0, 0.9));
    min-width: 8rem;
}

.highlight-number {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent);
}

.highlight-label {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.about-card-list {
    display: grid;
    gap: 1.2rem;
}

.about-card {
    padding: 1.3rem 1.4rem;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.07), rgba(9, 9, 14, 0.98));
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
    transform-origin: center;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.about-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1rem;
}

.about-card p {
    margin: 0;
    font-size: 0.9rem;
}

.about-card:hover {
    transform: translateY(-4px) rotate3d(1, -1, 0, 3deg);
    border-color: rgba(255, 213, 74, 0.55);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.9);
}

/* OFFER */

.offer-grid {
    display: grid;
    gap: 1.6rem;
    margin-top: 1.5rem;
}

/* spokojna karta z delikatnym glowem */

.offer-card {
    padding: 1.4rem 1.6rem;
    border-radius: var(--radius-lg);
    background: rgba(8, 8, 13, 0.98);
    border: 1px solid var(--border-subtle);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.75);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition);
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: radial-gradient(circle at top, rgba(255, 213, 74, 0.35), transparent 55%);
    opacity: 0;
    transform: scale(0.98);
    pointer-events: none;
    transition:
        opacity 0.3s ease-out,
        transform 0.3s ease-out;
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: calc(var(--radius-lg) - 1px);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(6, 6, 10, 0.98));
    z-index: 0;
}

.offer-card > * {
    position: relative;
    z-index: 1;
}

.offer-card h3 {
    margin: 0 0 0.5rem;
    font-size: 1.05rem;
}

.offer-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.offer-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 213, 74, 0.6);
}

.offer-card:hover::before {
    opacity: 1;
    transform: scale(1.02);
}

/* SEKCJA LINKÓW – 3 spójne karty */

.section-links-header {
    text-align: center;
    margin-bottom: 2.4rem;
}

.section-links-header h2 {
    margin-bottom: 0.4rem;
}

.section-links-header p {
    max-width: 34rem;
    margin: 0 auto;
    color: var(--text-muted);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.6rem;
}

.link-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.7rem 1.6rem;
    border-radius: 26px;
    background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.10), rgba(8, 8, 13, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.75);
    position: relative;
    overflow: hidden;
    transition:
        transform var(--transition),
        box-shadow var(--transition),
        border-color var(--transition),
        background var(--transition);
}

.link-card::after {
    content: "";
    position: absolute;
    inset: 1px;
    border-radius: 24px;
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.03), rgba(6, 6, 10, 0.98));
    z-index: 0;
}

.link-card-body,
.link-card-footer {
    position: relative;
    z-index: 1;
}

.link-card-icon {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.7rem;
    overflow: hidden;
}

.link-card-icon-inner {
    font-size: 1.4rem;
    transform: translateY(0);
    transition: transform 0.25s ease-out;
}

.link-card-tag {
    display: inline-block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--text-muted);
    margin-bottom: 0.3rem;
}

.link-card h3 {
    margin: 0 0 0.4rem;
    font-size: 1.1rem;
}

.link-card p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.link-card-footer {
    margin-top: 1.4rem;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.9);
    border-color: rgba(255, 213, 74, 0.7);
}

.link-card:hover .link-card-icon-inner {
    transform: translateY(-2px);
}

/* akcenty kart */

.link-card--autoline .link-card-tag {
    color: var(--accent);
}

.link-card--instagram .link-card-tag {
    color: #ff73a8;
}

.link-card--contact .link-card-tag {
    color: #ff6b6b;
}

.link-card--contact {
    background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.18), rgba(8, 8, 13, 0.98));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.95);
}

/* CONTACT */

.contact-info {
    max-width: 26rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 1.8rem 0 0;
    display: grid;
    gap: 1rem;
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    margin-bottom: 0.1rem;
}

.contact-list a {
    font-weight: 600;
}

.contact-form-card {
    border-radius: var(--radius-xl);
    padding: 1.8rem 1.6rem;
    background: rgba(8, 8, 13, 0.98);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
}

.contact-form-card h3 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 0.2rem;
}

.form-row {
    margin-bottom: 1rem;
}

.form-row label {
    display: block;
    margin-bottom: 0.35rem;
    font-size: 0.85rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 0.6rem 0.7rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(2, 2, 5, 0.95);
    color: var(--text-main);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition:
        border-color var(--transition-fast),
        box-shadow var(--transition-fast),
        background var(--transition-fast),
        transform var(--transition-fast);
}

.form-row input:focus,
.form-row textarea:focus {
    border-color: rgba(255, 213, 74, 0.7);
    box-shadow: 0 0 0 1px rgba(255, 213, 74, 0.4);
    background: rgba(4, 4, 9, 0.98);
    transform: translateY(-1px);
}

.form-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 0 0 0.8rem;
}

.form-status {
    margin-bottom: 1rem;
    padding: 0.7rem 0.9rem;
    border-radius: 12px;
    font-size: 0.85rem;
    border: 1px solid transparent;
}

.form-status--success {
    background: rgba(46, 204, 113, 0.1);
    border-color: rgba(46, 204, 113, 0.5);
    color: #b6f3c9;
}

.form-status--error {
    background: rgba(255, 92, 92, 0.08);
    border-color: rgba(255, 92, 92, 0.6);
    color: #ffb3b3;
}

/* ULEPSZONA SEKCJA KONTAKT – jedna duża karta */

.section-contact .section-grid {
    background: rgba(8, 8, 13, 0.98);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    padding: 2rem 2.2rem 2.3rem;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.2fr);
    gap: 2.4rem;
    position: relative;
    overflow: hidden;
}

.section-contact .section-grid::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 213, 74, 0.12), transparent 55%);
    opacity: 0.9;
    pointer-events: none;
}

.section-contact .contact-info,
.section-contact .contact-form-card {
    position: relative;
    z-index: 1;
}

.section-contact h2 {
    margin-top: 0;
    margin-bottom: 0.7rem;
}

.section-contact p {
    margin-top: 0;
}

.contact-list {
    margin-top: 1.6rem;
    gap: 0.9rem;
}

.contact-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
}

/* formularz bez dodatkowej ramki – korzysta z karty sekcji */

.section-contact .contact-form-card {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.contact-form .btn-primary {
    align-self: flex-end;
    padding-left: 2.2rem;
    padding-right: 2.2rem;
}

/* FOOTER */

.footer {
    border-top: 1px solid var(--border-subtle);
    padding: 1.3rem 0 1.5rem;
    background: #050507;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.footer-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    align-items: center;
    justify-content: space-between;
}

.footer-madeby strong {
    color: var(--accent);
}

/* RESPONSIVE */

@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        gap: 2.4rem;
    }

    .hero {
        padding-top: 2.8rem;
    }

    .hero-logo-card {
        max-width: 360px;
        margin: 0 auto;
    }

    .links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .topbar-inner {
        gap: 0.6rem;
    }

    .logo img {
        height: 38px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        right: 1.5rem;
        left: 1.5rem;
        margin-top: 0.6rem;
        padding: 0.9rem 1rem;
        border-radius: 16px;
        background: rgba(5, 5, 7, 0.98);
        border: 1px solid var(--border-subtle);
        box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-6px);
        transition: opacity 0.2s ease-out, transform 0.2s ease-out;
    }

    .nav--open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 3.2rem 0;
    }

    .section-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .section-contact .section-grid {
        grid-template-columns: minmax(0, 1fr);
        padding: 1.8rem 1.4rem 2rem;
    }

    .section-contact .contact-info {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        text-align: left;
    }

    .links-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .contact-form .btn-primary {
        align-self: stretch;
    }

    .hero-text {
        text-align: center;
    }

    .hero-text p {
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-meta div {
        text-align: center;
    }

    .section h2 {
        text-align: center;
    }

    .contact-info {
        text-align: center;
    }

    .contact-list {
        align-items: center;
    }
}

@media (max-width: 520px) {
    .hero-actions {
        flex-direction: column;
    }
}

/* DODATKOWA ANIMACJA BORDERU CTA */

@keyframes pulseBorder {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 213, 74, 0.4);
    }
    70% {
        box-shadow: 0 0 0 16px rgba(255, 213, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 213, 74, 0);
    }
}

/* ===== SCROLL REVEAL – efekt jak na drugiej stronie ===== */

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition:
        transform 0.7s cubic-bezier(.2,.7,.2,1),
        opacity 0.7s cubic-bezier(.2,.7,.2,1);
    will-change: transform, opacity;
    transition-delay: var(--d, 0s); /* np. style="--d:.2s" jeśli chcesz opóźnienie */
}

.reveal[data-reveal="left"] {
    transform: translateX(-24px);
}

.reveal[data-reveal="right"] {
    transform: translateX(24px);
}

.reveal.show {
    opacity: 1;
    transform: none;
}

/* ===== GALERIA – auto-przewijający się pasek zdjęć ===== */

.section-gallery h2 {
    margin-bottom: 0.4rem;
}

.section-gallery .section-lead {
    margin: 0 0 1.6rem;
    color: var(--text-muted);
    max-width: 32rem;
}

/* Ramka wokół paska */

.gallery-strip {
    /* nic nie ucina – wszystko ucina .gallery-frame */
    overflow: visible; /* albo po prostu usuń całą linię overflow */
}

/* ===== GALERIA – auto-przewijający się pasek zdjęć ===== */

.section-gallery h2 {
    margin-bottom: 0.4rem;
}

.section-gallery .section-lead {
    margin: 0 0 1.6rem;
    color: var(--text-muted);
    max-width: 32rem;
}

/* Ramka wokół paska */

.gallery-frame {
    position: relative;
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-subtle);
    background: rgba(8, 8, 13, 0.98);
    box-shadow: var(--shadow-soft);
    /*padding: 1.1rem 1.6rem;*/
    overflow: hidden; /* chowamy to, co wyjeżdża poza ramkę */
}

/* Kontener na tor */

.gallery-strip {
    overflow: hidden; /* bez scrollbara */
}

/* Tor z obrazkami – BEZ animacji w CSS, dalej robi to JS */

.gallery-track {
    display: flex;
    gap: 1rem;
    will-change: transform;
}

/* pojedyncze kafelki ze zdjęciem */

.gallery-item {
    flex: 0 0 260px;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: #000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.85);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 180px;
    object-fit: cover;
}

@media (max-width: 640px) {
    /*.gallery-frame {
        padding: 0.9rem 1rem;
    }*/

    .gallery-item {
        flex: 0 0 220px;
    }

    .gallery-item img {
        height: 150px;
    }
}

/* ===== LANGUAGE CONTACT – REFINED UI ===== */

.language-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

/* CARD */

.language-contact-card {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
    padding: 26px;
    position: relative;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.language-contact-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 16px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.25s ease;
    box-shadow:
        0 0 0 1px rgba(255,210,0,0.15),
        0 0 40px rgba(255,210,0,0.15);
}

/* HOVER EFFECT */

.language-contact-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255,210,0,0.35);
}

.language-contact-card:hover::before {
    opacity: 1;
}

/* HEADER */

.language-contact-header h3 {
    font-size: 17px;
    margin-bottom: 4px;
}

.language-role {
    font-size: 13px;
    color: #a8a8a8;
}

/* BADGES */

.language-badges {
    display: flex;
    gap: 8px;
    margin: 18px 0 20px;
}

.lang-text {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.6px;
    padding: 5px 10px;
    border-radius: 999px;
    color: #ffd200;
    background: rgba(255,210,0,0.12);
    border: 1px solid rgba(255,210,0,0.35);
}

/* CONTACT DATA */

.language-contact-data a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #e6e6e6;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.2s ease;
}

.language-contact-data a:hover {
    color: #ffd200;
}


/* ===== FOOTER – MBiD DARK INDUSTRIAL ===== */

.footer {
    background:
        radial-gradient(
            ellipse at top,
            rgba(255,255,255,0.03),
            rgba(0,0,0,0.97)
        );
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 64px 0 28px;
    color: #e6e6e6;
    font-size: 14px;
}

/* GRID */

.footer-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 36px;
    align-items: start;
}

/* KOLUMNY */

.footer-col h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 14px;
    color: #ffffff;
    letter-spacing: 0.3px;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col li {
    margin-bottom: 9px;
    color: #bdbdbd;
    line-height: 1.5;
}

/* LINKI */

.footer a {
    color: #bdbdbd;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer a:hover {
    color: #ffd200;
}

/* HIGHLIGHT – KRAJ / SOCIAL */

.footer-col--highlight {
    background:
        linear-gradient(
            180deg,
            rgba(255,255,255,0.04),
            rgba(255,255,255,0.015)
        );
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 22px;
    position: relative;
}

.footer-col--highlight::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 14px;
    pointer-events: none;
    box-shadow:
        0 0 0 1px rgba(255,210,0,0.04),
        0 0 30px rgba(255,210,0,0.04);
}

/* COUNTRY BUTTON */

.footer-country {
    margin: 6px 0 18px;
    padding: 6px 14px;
    background: transparent;
    border: 1px solid rgba(255,210,0,0.45);
    color: #ffd200;
    font-size: 13px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.footer-country:hover {
    background: rgba(255,210,0,0.12);
}

/* SOCIAL */

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-socials a {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 600;
    color: #e6e6e6;
    transition: all 0.2s ease;
}

.footer-socials a:hover {
    border-color: #ffd200;
    color: #ffd200;
}

/* BOTTOM BAR */

.footer-bottom {
    margin-top: 40px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #9c9c9c;
}

.footer-links a {
    margin-left: 16px;
    color: #9c9c9c;
}

.footer-links a:hover {
    color: #ffd200;
}

/* RESPONSIVE */

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

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

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-links a {
        margin-left: 0;
        margin-right: 16px;
    }
}



/* ===== LANGUAGE SWITCH (PL/EN) ===== */
.lang-switch{
    display:flex;
    align-items:center;
    gap:0.5rem;
}

.lang-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:0.28rem 0.7rem;
    border-radius:999px;
    border:1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 7, 0.85);
    color: var(--text-muted);
    font-size:0.78rem;
    font-weight:600;
    letter-spacing:0.06em;
    text-transform:uppercase;
    transition: border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
}

.lang-btn:hover{
    transform: translateY(-1px);
    border-color: rgba(255, 213, 74, 0.55);
    color: var(--text-main);
}

.lang-btn--active{
    border-color: rgba(255, 213, 74, 0.75);
    color: var(--accent);
    background: rgba(255, 213, 74, 0.08);
}
/* ===== LANGUAGE SWITCH (PL/EN) ===== */
/* ===== Language switch buttons ===== */
.lang-switch {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;      /* pion */
  justify-content: center;  /* poziom */
  width: 64px;              /* dopasuj do siebie */
  height: 38px;             /* dopasuj do siebie */
  padding: 0;               /* ważne */
  line-height: 1;           /* ważne */
  border-radius: 999px;
  text-decoration: none;
}

/* usuń podkreślenie z efektu .nav a::after */
.nav .lang-switch a::after {
  display: none !important;
}

/* opcjonalnie: żeby hover nie robił żadnego underline */
.nav .lang-switch a:hover {
  text-decoration: none;
}

/* */

/* Nie rób "podkreślenia" dla linków będących przyciskiem */
.nav a.btn::after {
  display: none !important;
  content: none !important;
}

/* i dodatkowo, żeby zwykłe underline nigdy się nie pojawiło */
.nav a.btn {
  text-decoration: none !important;
}
