/* Mąka i Woda - Piekarnia Rzemieślnicza
 * Tradycja wypiekana z pasją
 *
 * Crafted by Lightbyte · https://lightbyte.agency
 */

:root {
    --gold: #C9A66B;
    --gold-dark: #A8854B;
    --gold-soft: rgba(201, 166, 107, 0.08);
    --gold-edge: rgba(201, 166, 107, 0.45);
    --black: #000000;
    --black-tinted: #0a0805;
    --white: #ffffff;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

html {
    background-color: #000;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overscroll-behavior: none;
}

body {
    background-color: #000;
    overflow-x: hidden;
    overscroll-behavior: none;
    line-height: 1.6;
    font-feature-settings: "kern" 1, "liga" 1;
    min-height: 100vh;
    min-height: 100dvh;
}

main {
    background-color: #000;
    position: relative;
}

body.preloader-active {
    overflow: hidden;
}

::selection {
    background: var(--gold);
    color: var(--black);
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #000; }
::-webkit-scrollbar-thumb { background: rgba(201, 166, 107, 0.3); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

.italic-accent {
    font-style: italic;
    font-weight: 300;
    color: var(--gold);
}

.grain-overlay {
    background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.79  0 0 0 0 0.65  0 0 0 0 0.42  0 0 0 0.4 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.5'/></svg>");
    background-size: 280px 280px;
    mix-blend-mode: overlay;
}
.preloader {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.preloader-logo {
    width: clamp(120px, 18vw, 180px);
    height: auto;
    opacity: 1;
}

.preloader-grains {
    display: flex;
    align-items: center;
    gap: 16px;
    opacity: 1;
}

.grain-seed {
    display: block;
    width: 14px;
    height: 30px;
    border-radius: 50%;
    background: rgba(201, 166, 107, 0.08);
    border: 1.5px solid rgba(201, 166, 107, 0.5);
    transform: rotate(-12deg);
    transition: background 0.4s cubic-bezier(.2, .7, .3, 1), border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease;
}

.grain-seed.is-filled {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(201, 166, 107, 0.7);
}

.grain-seed.is-active {
    transform: rotate(-12deg) scale(1.3);
    animation: seedPulse 0.9s ease-in-out infinite;
}

@keyframes seedPulse {
    0%, 100% { box-shadow: 0 0 16px rgba(201, 166, 107, 0.7); }
    50% { box-shadow: 0 0 26px rgba(201, 166, 107, 1); }
}

@media (max-width: 480px) {
    .preloader-grains { gap: 12px; }
    .grain-seed { width: 11px; height: 24px; }
}

@keyframes preloaderFadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
#navbar {
    transition: background 0.5s ease, padding 0.4s ease;
    will-change: background;
}

#navbar.scrolled {
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
}

#navbar > div {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    transition: padding 0.5s ease;
}

#navbar.scrolled > div {
    padding-top: 0.85rem;
    padding-bottom: 0.85rem;
}

.logo-image {
    height: 60px;
    width: auto;
    opacity: 0;
    transform: translateY(-6px) scale(0.94);
    transition: height 0.5s cubic-bezier(.2, .7, .3, 1), opacity 0.55s ease, transform 0.55s cubic-bezier(.2, .7, .3, 1);
}

#navbar.scrolled .logo-image {
    height: 46px;
    opacity: 1;
    transform: translateY(0) scale(1);
}

@media (max-width: 1023px) {
    .logo-image { height: 52px; }
    #navbar.scrolled .logo-image { height: 42px; }
}

@media (max-width: 640px) {
    .logo-image { height: 46px; }
    #navbar.scrolled .logo-image { height: 38px; }
    #navbar > div { padding-top: 0.65rem; padding-bottom: 0.65rem; }
    #navbar.scrolled > div { padding-top: 0.5rem; padding-bottom: 0.5rem; }
}

@media (max-width: 380px) {
    .logo-image { height: 40px; }
    #navbar.scrolled .logo-image { height: 34px; }
}

.footer-logo-image {
    display: block;
    height: 84px;
    width: auto;
    opacity: 0.95;
}

@media (max-width: 1023px) { .footer-logo-image { height: 72px; } }
@media (max-width: 640px) { .footer-logo-image { height: 60px; } }
@media (max-width: 380px) { .footer-logo-image { height: 50px; } }

.menu-button {
    display: flex;
    align-items: center;
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--white);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.menu-button:hover { color: var(--gold); }

.menu-button-lines {
    position: relative;
    width: 28px;
    height: 14px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.menu-line {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 0.4s cubic-bezier(.2, .7, .3, 1), opacity 0.3s ease;
    transform-origin: center;
}

.menu-button.is-active .menu-line:nth-child(1) {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-button.is-active .menu-line:nth-child(2) {
    transform: translateY(-3px) rotate(-45deg);
}
#mobile-menu {
    background-color: #000;
}

#mobile-menu.is-open { transform: translateY(0); }

.menu-bg-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: grayscale(0.6) brightness(0.6);
}

.menu-bg-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.08), transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.55) 50%, rgba(0, 0, 0, 0.9) 100%);
}

.menu-eyebrow {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.5rem;
}

.menu-list { list-style: none; padding: 0; margin: 0; }
.menu-item { border-top: 1px solid rgba(201, 166, 107, 0.18); }
.menu-item:last-child { border-bottom: 1px solid rgba(201, 166, 107, 0.18); }

.menu-sidebar {
    border-left: 1px solid rgba(201, 166, 107, 0.18);
}

.menu-footer-strip {
    border-top: 1px solid rgba(201, 166, 107, 0.18);
}

.menu-link {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    padding: 1.4rem 0;
    color: var(--white);
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 200;
    letter-spacing: -0.005em;
    line-height: 1;
    transition: padding-left 0.4s cubic-bezier(.2, .7, .3, 1), color 0.3s ease;
    text-decoration: none;
}

.menu-link:hover,
.menu-link:focus {
    padding-left: 1.5rem;
    color: var(--gold);
}

.menu-num {
    font-size: 0.7rem;
    color: var(--gold);
    letter-spacing: 0.3em;
    font-weight: 400;
    flex-shrink: 0;
    min-width: 3rem;
}

.menu-text { font-weight: 200; }
.rail-dot {
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.4s ease;
    position: relative;
}

.rail-dot:hover {
    border-color: var(--gold);
    transform: scale(1.4);
}

.rail-dot.is-active {
    background: var(--gold);
    border-color: var(--gold);
    transform: scale(1.4);
}

.rail-dot.is-active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.35);
    animation: railPulse 2s ease-in-out infinite;
}

@keyframes railPulse {
    0%, 100% { opacity: 0.8; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0; transform: translate(-50%, -50%) scale(1.6); }
}
.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.05rem 2.75rem;
    font-size: 0.7rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    border: 1px solid var(--gold);
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
    font-weight: 700;
}

.btn-primary:hover {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.btn-secondary:active {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-primary:active {
    background: var(--gold-dark);
    border-color: var(--gold-dark);
}

.btn-primary:disabled,
.btn-secondary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-small {
    padding: 0.75rem 1.5rem;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
}

@media (max-width: 768px) {
    .btn-primary, .btn-secondary {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 640px) {
    .btn-primary, .btn-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.65rem;
        letter-spacing: 0.3em;
        width: 100%;
        max-width: 320px;
    }
}

#hero { background-color: #000; }

.hero-bg {
    animation: heroKenBurns 22s ease-in-out infinite alternate;
    will-change: transform;
}

.hero-radial {
    background: radial-gradient(circle at 70% 60%, rgba(201, 166, 107, 0.12), transparent 50%);
    pointer-events: none;
}

@keyframes heroKenBurns {
    from { transform: scale(1.05); }
    to { transform: scale(1.14); }
}

.hero-title {
    margin: 0;
    line-height: 1;
    display: flex;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-title { justify-content: flex-start; }
}

.hero-logo {
    display: block;
    width: clamp(240px, 56vw, 680px);
    max-width: 100%;
    height: auto;
    opacity: 0;
    transform: translateY(30px) scale(0.96);
    animation: heroLogoIn 1.5s cubic-bezier(.16, .84, .36, 1) 0.35s forwards;
    will-change: opacity, transform;
    filter: drop-shadow(0 8px 40px rgba(0, 0, 0, 0.6));
    transition: opacity 0.55s ease, transform 0.7s cubic-bezier(.2, .7, .3, 1);
}

@media (max-width: 640px) {
    .hero-logo { width: clamp(220px, 70vw, 380px); }
}

@media (max-width: 380px) {
    .hero-logo { width: clamp(200px, 76vw, 280px); }
}

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

body.past-hero .hero-logo {
    opacity: 0;
    transform: translateY(-20px) scale(0.94);
}

.hero-bottom {
    opacity: 0;
    animation: heroIn 1.4s cubic-bezier(.16, .84, .36, 1) 1.1s forwards;
}

@keyframes heroIn {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-arrow {
    display: inline-block;
    width: 60px;
    height: 1px;
    background: currentColor;
    position: relative;
}

.hero-arrow::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-top: 1px solid currentColor;
    margin-top: -2px;
    transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 640px) {
    #hero > .relative {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        padding-bottom: 6rem !important;
    }
    .hero-arrow { width: 40px; }
}
.marquee-band {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(201, 166, 107, 0.15);
    border-bottom: 1px solid rgba(201, 166, 107, 0.15);
    background-color: #000;
    padding: 1.75rem 0;
}

.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marqueeMove 50s linear infinite;
    will-change: transform;
}

.marquee-item {
    font-size: clamp(1.25rem, 3.5vw, 3rem);
    font-weight: 200;
    color: var(--white);
    font-style: italic;
    padding: 0 1.5rem;
    flex-shrink: 0;
}

.marquee-sep {
    color: var(--gold);
    font-size: clamp(1.25rem, 3.5vw, 3rem);
    font-weight: 300;
    padding: 0 0.5rem;
    flex-shrink: 0;
}

@keyframes marqueeMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
.content-section {
    position: relative;
    padding: 5rem 0 6rem;
    overflow: hidden;
    background-color: #000;
}

@media (min-width: 768px) {
    .content-section { padding: 9rem 0 10rem; }
}

.section-bg-photo {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.13;
    filter: grayscale(0.4) brightness(0.55) sepia(0.2);
    z-index: 0;
}

.section-bg-photo-dim { opacity: 0.1; }
.section-bg-photo-extra-dim { opacity: 0.09; }

.section-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.section-gradient-radial-tr {
    background:
        radial-gradient(ellipse at top right, rgba(201, 166, 107, 0.06) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
}

.section-gradient-radial-bl {
    background:
        radial-gradient(ellipse at bottom left, rgba(201, 166, 107, 0.07) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
}

.section-gradient-radial-tl {
    background:
        radial-gradient(ellipse at top left, rgba(201, 166, 107, 0.07) 0%, transparent 55%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.6) 100%);
}

.section-gradient-radial-center {
    background:
        radial-gradient(circle at center, rgba(201, 166, 107, 0.05) 0%, transparent 50%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, transparent 25%, transparent 75%, rgba(0, 0, 0, 0.55) 100%);
}

.section-gradient-vertical {
    background:
        linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%),
        radial-gradient(circle at 30% 40%, rgba(201, 166, 107, 0.05), transparent 60%);
}

.section-gradient-footer {
    background:
        radial-gradient(ellipse at top, rgba(201, 166, 107, 0.04) 0%, transparent 60%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.content-section > .max-w-7xl,
.content-section > .max-w-3xl {
    position: relative;
    z-index: 2;
}
.section-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: end;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 166, 107, 0.18);
}

@media (max-width: 768px) {
    .section-header { gap: 1rem; padding-bottom: 1.5rem; }

    .section-title .italic-accent,
    .offer-heading .italic-accent,
    .review-title .italic-accent {
        display: block;
    }
}

@media (max-width: 480px) {
    .section-title { line-height: 1.15; }
    .offer-heading { line-height: 1.15; }

    .location-name { font-size: 1.1rem; line-height: 1.25; }
    .location-meta { font-size: 0.75rem; word-break: break-word; }

    .support-team { font-size: clamp(1.6rem, 7vw, 2.2rem); line-height: 1.1; }
    .support-sport { font-size: 0.58rem; letter-spacing: 0.3em; }

    .support-achievements li { font-size: 0.85rem; gap: 0.7rem; }

    .offer-name { line-height: 1.25; }
    .offer-desc { line-height: 1.55; }

    .footer-link { font-size: 0.82rem; }
}

.section-number {
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 200;
    color: rgba(201, 166, 107, 0.35);
    line-height: 0.85;
    letter-spacing: -0.04em;
    font-feature-settings: "tnum" 1;
}

.section-header-text { padding-bottom: 0.5rem; }

.section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(1.6rem, 5vw, 3.75rem);
    font-weight: 200;
    line-height: 1.1;
    letter-spacing: -0.015em;
    color: var(--white);
    margin: 0;
}

.section-lead {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1.05rem;
}

@media (max-width: 480px) {
    .section-lead { font-size: 0.95rem; }
}
.about-lead {
    font-size: 1.15rem;
    line-height: 1.65;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 1.5rem;
}

.about-lead::first-letter {
    font-size: 3.4em;
    font-weight: 200;
    color: var(--gold);
    float: left;
    line-height: 0.85;
    margin: 0.1em 0.18em 0 0;
    padding-top: 0.05em;
}

@media (max-width: 768px) {
    .about-lead::first-letter {
        float: none;
        display: block;
        text-align: center;
        font-size: 2.6em;
        margin: 0 auto 0.35em;
        line-height: 1;
    }
}

.about-body {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    line-height: 1.8;
    font-size: 0.98rem;
    margin-bottom: 2.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 166, 107, 0.18);
}

.stat-num {
    display: block;
    font-size: clamp(1.75rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--gold);
    line-height: 1;
    letter-spacing: -0.02em;
    font-feature-settings: "tnum" 1;
}

.stat-unit { font-size: 0.55em; color: var(--gold); opacity: 0.7; }

.stat-label {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 400;
}

@media (max-width: 480px) {
    .stat-label { font-size: 0.5rem; letter-spacing: 0.25em; }
}
.about-images,
.offer-images {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
}

@media (max-width: 768px) {
    .about-images,
    .offer-images { aspect-ratio: 4 / 4.6; max-width: 480px; margin: 0 auto; }
}

.modern-photo {
    position: absolute;
    margin: 0;
    overflow: hidden;
    background-color: #000;
    transition: transform 0.6s cubic-bezier(.2, .7, .3, 1);
}

.modern-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(0.55) contrast(1.05) brightness(0.85);
    transition: filter 1s cubic-bezier(.2, .7, .3, 1), transform 1.6s cubic-bezier(.2, .7, .3, 1);
}

.modern-photo:hover img {
    filter: grayscale(0) contrast(1.08) brightness(0.95);
    transform: scale(1.05);
}

.modern-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.28) 0%, rgba(201, 166, 107, 0) 35%, rgba(0, 0, 0, 0.45) 100%);
    mix-blend-mode: multiply;
    transition: opacity 0.8s ease;
}

.modern-photo-overlay-alt {
    background: linear-gradient(225deg, rgba(201, 166, 107, 0.32) 0%, rgba(201, 166, 107, 0) 40%, rgba(0, 0, 0, 0.55) 100%);
}

.modern-photo:hover .modern-photo-overlay { opacity: 0.55; }

.modern-photo::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

.modern-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 4;
    pointer-events: none;
    border: 1px solid rgba(201, 166, 107, 0);
    transition: border-color 0.5s ease;
}

.modern-photo:hover::after { border-color: rgba(201, 166, 107, 0.45); }

.modern-photo-primary {
    top: 0;
    left: 0;
    width: 70%;
    height: 65%;
    z-index: 1;
}

.modern-photo-secondary {
    bottom: 0;
    right: 0;
    width: 55%;
    height: 45%;
    z-index: 2;
}

.modern-photo-tertiary {
    top: 4%;
    right: 0;
    width: 22%;
    height: 22%;
    z-index: 4;
}

.offer-images-flip .modern-photo-primary { left: auto; right: 0; }
.offer-images-flip .modern-photo-secondary { right: auto; left: 0; }
.offer-images-flip .modern-photo-tertiary { right: auto; left: 0; }

.modern-photo-line {
    position: absolute;
    top: 60%;
    left: 70%;
    width: 28%;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    z-index: 3;
    pointer-events: none;
}

.offer-images-flip .modern-photo-line {
    left: 2%;
    background: linear-gradient(270deg, var(--gold), transparent);
}
.rzemieslnik-badge {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 2.5rem;
    padding: 1.25rem 1.5rem 1.25rem 1.25rem;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.06), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(201, 166, 107, 0.25);
    transition: all 0.5s cubic-bezier(.2, .7, .3, 1);
    max-width: 100%;
    text-decoration: none;
}

.rzemieslnik-badge:hover {
    border-color: rgba(201, 166, 107, 0.55);
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.1), rgba(255, 255, 255, 0.02));
    transform: translateY(-2px);
}

.rzemieslnik-logo {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.1);
    transition: transform 0.5s ease;
}

.rzemieslnik-badge:hover .rzemieslnik-logo {
    transform: rotate(-6deg) scale(1.05);
}

.rzemieslnik-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.rzemieslnik-eyebrow {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
}

.rzemieslnik-name {
    color: var(--white);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: -0.005em;
    line-height: 1.2;
}

.rzemieslnik-link {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    transition: color 0.3s ease;
    margin-top: 0.15rem;
}

.rzemieslnik-badge:hover .rzemieslnik-link { color: var(--gold); }

@media (max-width: 640px) {
    .rzemieslnik-badge { padding: 0.9rem 1rem; gap: 0.85rem; }
    .rzemieslnik-logo { width: 44px; height: 44px; }
    .rzemieslnik-name { font-size: 0.85rem; }
    .rzemieslnik-eyebrow { font-size: 0.5rem; letter-spacing: 0.3em; }
}
.process-section { overflow: visible; }

.process-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    margin-top: 4rem;
    position: relative;
}

@media (max-width: 1023px) {
    .process-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
}

.process-side { position: relative; }

@media (max-width: 1023px) { .process-side { display: none; } }

.process-sticky {
    position: sticky;
    top: 28vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.process-meta {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.process-active-num {
    display: block;
    font-size: clamp(7rem, 16vw, 14rem);
    font-weight: 200;
    color: var(--gold);
    line-height: 0.82;
    letter-spacing: -0.05em;
    font-feature-settings: "tnum" 1;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.process-active-num.is-switching {
    opacity: 0;
    transform: translateY(15px);
}

.process-active-label {
    display: block;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--white);
    font-weight: 300;
    letter-spacing: -0.005em;
    margin-top: 1rem;
    transition: opacity 0.5s ease;
}

.process-active-label.is-switching { opacity: 0; }

.process-progress-track {
    width: 2px;
    height: 180px;
    background: rgba(201, 166, 107, 0.15);
    margin-top: 2.5rem;
    position: relative;
}

.process-progress-fill {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--gold);
    height: 33%;
    transition: height 0.8s cubic-bezier(.2, .7, .3, 1);
}

.process-counter {
    margin-top: 1.25rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 400;
    font-feature-settings: "tnum" 1;
}

.process-counter #process-counter-current { color: var(--gold); }

.process-steps { display: flex; flex-direction: column; }

.process-step {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(201, 166, 107, 0.1);
    position: relative;
}

.process-step:first-child {
    border-top: none;
    padding-top: 1rem;
}

@media (max-width: 1023px) {
    .process-step {
        min-height: auto;
        padding: 2.5rem 0;
    }
    .process-step:first-child {
        border-top: 1px solid rgba(201, 166, 107, 0.15);
        padding-top: 2.5rem;
        margin-top: 1.5rem;
    }
}

.process-step-mobile {
    display: none;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

@media (max-width: 1023px) { .process-step-mobile { display: block; } }

.process-step-title {
    font-size: clamp(1.85rem, 5vw, 4rem);
    font-weight: 200;
    color: var(--white);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.05;
}

.process-step-text {
    font-size: clamp(0.95rem, 1.4vw, 1.2rem);
    font-weight: 300;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.75;
    max-width: 540px;
    margin-bottom: 2rem;
}

.process-step-points {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(201, 166, 107, 0.12);
    padding-top: 1.5rem;
}

.process-step-points li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.55rem 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
}

.point-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.offer-intro {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    line-height: 1.8;
    font-size: 1rem;
}

.offer-block { margin-top: 4rem; }

@media (min-width: 768px) {
    .offer-block { margin-top: 5rem; }
}

.offer-label {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.offer-heading {
    font-size: clamp(1.65rem, 4vw, 3rem);
    font-weight: 200;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.1;
    letter-spacing: -0.015em;
}

.offer-list { list-style: none; padding: 0; margin: 0; }

.offer-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(201, 166, 107, 0.12);
    transition: padding-left 0.4s ease;
}

.offer-item:last-child { border-bottom: 1px solid rgba(201, 166, 107, 0.12); }
.offer-item:hover { padding-left: 0.5rem; }

.offer-num {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    flex-shrink: 0;
    min-width: 1.8rem;
    line-height: 1.6;
}

.offer-name {
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.35rem;
    letter-spacing: -0.005em;
}

.offer-desc {
    color: rgba(255, 255, 255, 0.72);
    font-weight: 300;
    line-height: 1.6;
    font-size: 0.88rem;
}

.offer-divider {
    position: relative;
    margin: 4rem 0;
    text-align: center;
}

.offer-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(201, 166, 107, 0.15);
}

.offer-divider-label {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 0 1.5rem;
    color: var(--gold);
    line-height: 1;
}

.grain-icon {
    width: 30px;
    height: 30px;
    color: var(--gold);
    display: block;
    opacity: 0.85;
}

@media (max-width: 640px) {
    .offer-name { font-size: 1rem; }
    .offer-divider { margin: 3rem 0; }
}
.location-card {
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.04), rgba(255, 255, 255, 0.01));
    border: 1px solid rgba(201, 166, 107, 0.18);
    overflow: hidden;
    transition: all 0.5s ease;
    backdrop-filter: blur(6px);
}

.location-card:hover { border-color: rgba(201, 166, 107, 0.4); }

.location-header {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.75rem;
    border-bottom: 1px solid rgba(201, 166, 107, 0.12);
}

.location-num {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    font-weight: 700;
    flex-shrink: 0;
    padding-top: 0.5rem;
    min-width: 2rem;
}

.location-name {
    font-size: clamp(1.15rem, 2.5vw, 1.4rem);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 0.4rem;
    letter-spacing: -0.005em;
}

.location-meta {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.02em;
}

@media (max-width: 640px) {
    .location-header { padding: 1.5rem; gap: 1rem; }
    .location-meta { font-size: 0.78rem; }
}

.map-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background-color: #1a1a1a;
}

.leaflet-map {
    width: 100%;
    height: 100%;
    background-color: #1a1a1a;
    z-index: 1;
}

.leaflet-container {
    background-color: #1a1a1a !important;
    font-family: 'Montserrat', sans-serif !important;
    outline: none;
}

.leaflet-tile-pane {
    filter: grayscale(1) contrast(1.05) brightness(0.85);
}

.leaflet-control-attribution {
    background: rgba(0, 0, 0, 0.65) !important;
    color: rgba(255, 255, 255, 0.45) !important;
    font-size: 9px !important;
    padding: 2px 6px !important;
    backdrop-filter: blur(4px);
}

.leaflet-control-attribution a {
    color: var(--gold) !important;
    text-decoration: none;
}

.leaflet-control-zoom {
    border: none !important;
    box-shadow: none !important;
}

.leaflet-control-zoom a,
.leaflet-bar a {
    background-color: rgba(0, 0, 0, 0.85) !important;
    color: var(--gold) !important;
    border: 1px solid rgba(201, 166, 107, 0.35) !important;
    width: 32px !important;
    height: 32px !important;
    line-height: 30px !important;
    font-weight: 300 !important;
    transition: background 0.3s ease, color 0.3s ease;
}

.leaflet-control-zoom a:hover,
.leaflet-bar a:hover {
    background-color: var(--gold) !important;
    color: var(--black) !important;
}

.map-marker {
    background: transparent !important;
    border: none !important;
    display: flex !important;
    flex-direction: column;
    align-items: center;
}

.map-marker-badge {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #000;
    border: 1.5px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.8), 0 0 0 3px rgba(0, 0, 0, 0.4);
}

.map-marker-badge img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.map-marker-stem {
    width: 1.5px;
    height: 12px;
    background: var(--gold);
    margin-top: -1px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

@media (max-width: 640px) {
    .map-marker-badge { width: 44px; height: 44px; }
    .map-marker-badge img { width: 28px; height: 28px; }
}

.location-status {
    display: flex;
    align-items: center;
    gap: 1.15rem;
    margin: 1.5rem;
    padding: 1.5rem 1.6rem;
    border: 1px solid rgba(201, 166, 107, 0.32);
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.08), rgba(255, 255, 255, 0.012));
    position: relative;
}

.location-status::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--gold);
}

.location-status-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    color: var(--gold);
    display: inline-flex;
}

.location-status-icon svg { width: 100%; height: 100%; }

.location-status-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    min-width: 0;
}

.location-status-date {
    font-size: 0.6rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 400;
}

.location-status-msg {
    font-size: 1.18rem;
    font-weight: 400;
    letter-spacing: 0.005em;
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.55);
    transition: color 0.45s ease;
}

.location-status-msg.is-available { color: #86C28B; }
.location-status-msg.is-soldout   { color: #D9786B; }
.location-status-msg.is-closed    { color: #D9786B; }
.location-status-msg.is-opening   { color: #C9A66B; }

@media (max-width: 640px) {
    .location-status {
        margin: 1.25rem;
        padding: 1.25rem 1.3rem;
        gap: 0.95rem;
    }
    .location-status-icon { width: 34px; height: 34px; }
    .location-status-msg { font-size: 1.05rem; }
}

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.5rem 1.75rem;
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    border-top: 1px solid rgba(201, 166, 107, 0.12);
    transition: gap 0.3s ease, color 0.3s ease, filter 0.3s ease;
    text-decoration: none;
}

.location-link:hover {
    gap: 1.1rem;
    filter: brightness(1.15);
}

.location-hours {
    margin: 1.5rem 1.5rem 0;
    padding: 1.35rem 1.6rem 1.4rem;
    border: 1px solid rgba(201, 166, 107, 0.18);
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.045), rgba(255, 255, 255, 0.008));
}

.location-hours-label {
    display: block;
    font-size: 0.58rem;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.location-hours-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.55rem 0;
    border-bottom: 1px dashed rgba(201, 166, 107, 0.15);
}

.location-hours-row:last-of-type { border-bottom: none; }

.location-hours-day {
    font-size: 0.92rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
}

.location-hours-time {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--white);
    flex-shrink: 0;
    font-feature-settings: "tnum" 1;
}

.location-hours-time sup { color: var(--gold); }

.location-hours-note {
    margin-top: 0.9rem;
    font-size: 0.72rem;
    font-style: italic;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.45);
}

.location-hours-note span { color: var(--gold); }

@media (max-width: 640px) {
    .location-hours {
        margin: 1.25rem 1.25rem 0;
        padding: 1.2rem 1.3rem 1.25rem;
    }
}

.review-title {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 200;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    line-height: 1;
}

.star {
    width: 44px;
    height: 44px;
    color: rgba(201, 166, 107, 0.3);
    transition: all 0.3s cubic-bezier(.2, .7, .3, 1);
    cursor: pointer;
    background: transparent;
    border: none;
    padding: 0;
}

.star svg {
    width: 100%;
    height: 100%;
}

.star:hover { transform: scale(1.15) rotate(-8deg); }

.star.is-hovered svg path,
.star.is-active svg path {
    fill: var(--gold);
    stroke: var(--gold);
}

.star.is-hovered { color: var(--gold); }
.star.is-active {
    color: var(--gold);
    filter: drop-shadow(0 0 12px rgba(201, 166, 107, 0.5));
}

@media (min-width: 768px) {
    .star { width: 64px; height: 64px; }
}

#review-feedback.is-visible { opacity: 1; }
.contact-label {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1rem;
}

.contact-value {
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 300;
    color: var(--white);
    letter-spacing: -0.005em;
    transition: color 0.3s ease;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: inline-block;
    max-width: 100%;
}

.contact-value:hover { color: var(--gold); }

.form-label {
    display: block;
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: rgba(201, 166, 107, 0.85);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.form-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 166, 107, 0.25);
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    transition: border-color 0.3s ease;
    border-radius: 0;
}

.form-input:focus {
    outline: none;
    border-bottom-color: var(--gold);
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.3); }
.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201, 166, 107, 0.25);
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 1rem;
    font-weight: 300;
    font-family: inherit;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    transition: border-color 0.3s ease;
}

.custom-select-trigger:focus-visible {
    outline: none;
    border-bottom-color: var(--gold);
}

.custom-select.is-open .custom-select-trigger {
    border-bottom-color: var(--gold);
}

.custom-select-label {
    flex: 1;
    color: rgba(255, 255, 255, 0.32);
    transition: color 0.25s ease;
    pointer-events: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-label.has-value {
    color: var(--white);
}

.custom-select-chevron {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 14px;
    height: 9px;
    color: var(--gold);
    transition: transform 0.35s cubic-bezier(.2, .7, .3, 1);
    flex-shrink: 0;
}

.custom-select-chevron svg {
    width: 100%;
    height: 100%;
}

.custom-select.is-open .custom-select-chevron {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 0;
    list-style: none;
    margin: 0;
    padding: 0.4rem 0;
    background-color: #0c0a07;
    border: 1px solid rgba(201, 166, 107, 0.3);
    box-shadow: 0 18px 38px -12px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(201, 166, 107, 0.08);
    z-index: 50;
    max-height: 280px;
    overflow-y: auto;
    transform: translateY(-6px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(.2, .7, .3, 1), visibility 0s linear 0.3s;
}

.custom-select.is-open .custom-select-options {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    transition: opacity 0.25s ease, transform 0.3s cubic-bezier(.2, .7, .3, 1), visibility 0s linear 0s;
}

.custom-select-options li {
    position: relative;
    padding: 0.85rem 1.25rem;
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.005em;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.25s cubic-bezier(.2, .7, .3, 1);
}

.custom-select-options li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.25s cubic-bezier(.2, .7, .3, 1);
}

.custom-select-options li:hover,
.custom-select-options li.is-highlighted {
    background: rgba(201, 166, 107, 0.08);
    color: var(--gold);
    padding-left: 1.5rem;
    outline: none;
}

.custom-select-options li:hover::before,
.custom-select-options li.is-highlighted::before {
    transform: scaleY(1);
}

.custom-select-options li[aria-selected="true"] {
    background: rgba(201, 166, 107, 0.12);
    color: var(--gold);
}

.custom-select-options li[aria-selected="true"]::before {
    transform: scaleY(1);
}
.custom-select-options::-webkit-scrollbar { width: 4px; }
.custom-select-options::-webkit-scrollbar-track { background: transparent; }
.custom-select-options::-webkit-scrollbar-thumb { background: rgba(201, 166, 107, 0.3); }

@media (max-width: 640px) {
    .custom-select-options li { padding: 0.95rem 1.25rem; font-size: 0.92rem; }
}

.form-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(201, 166, 107, 0.5);
    background: transparent;
    cursor: pointer;
    flex-shrink: 0;
    transition: all 0.3s ease;
    position: relative;
}

.form-checkbox:checked {
    background: var(--gold);
    border-color: var(--gold);
}

.form-checkbox:checked::after {
    content: '';
    position: absolute;
    left: 3px;
    top: 0;
    width: 5px;
    height: 9px;
    border: solid var(--black);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

#form-status.is-success { color: var(--gold); }
#form-status.is-error { color: #ff7a7a; }
.footer-eyebrow {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
    margin-bottom: 1.25rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s ease;
    text-align: inherit;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    text-decoration: none;
    word-break: break-word;
    overflow-wrap: anywhere;
}

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

.footer-rzemieslnik {
    border-top: 1px solid rgba(201, 166, 107, 0.15);
    padding: 2rem 0 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
}

.footer-rzem-link {
    display: inline-flex;
    align-items: center;
    gap: 1.25rem;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    transition: transform 0.4s ease, opacity 0.4s ease;
    opacity: 0.7;
}

.footer-rzem-link:hover {
    opacity: 1;
    transform: scale(1.02);
}

.footer-rzem-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-rzem-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.footer-rzem-eyebrow {
    color: var(--gold);
    font-size: 0.55rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    font-weight: 400;
}

.footer-rzem-name {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.005em;
}
.social-icons {
    display: inline-flex;
    gap: 0.75rem;
    margin-top: 0.4rem;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: color 0.25s ease;
    text-decoration: none;
    padding: 0.25rem;
}

.social-icon:hover {
    color: var(--gold-dark);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.social-icon-sm svg {
    width: 16px;
    height: 16px;
}

.menu-social-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.lightbyte-link { text-decoration: none; }

.lightbyte-text {
    font-size: 8px;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 300;
}

.lightbyte-logo {
    height: 14px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.3;
    transition: opacity 0.5s ease;
}

.lightbyte-link:hover .lightbyte-logo { opacity: 1; }
.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 60;
    width: 52px;
    height: 52px;
    background-color: #000;
    border: 1px solid rgba(201, 166, 107, 0.4);
    color: var(--gold);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.2, .7, .3, 1), background 0.4s ease, color 0.4s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.scroll-top.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-4px);
}

.scroll-top svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 2;
}

.scroll-top-ring {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(201, 166, 107, 0.3);
    opacity: 0;
    animation: ringPulse 2.5s ease-in-out infinite;
}

.scroll-top.is-visible .scroll-top-ring { opacity: 1; }

@keyframes ringPulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 1023px) {
    .scroll-top { right: 1rem; bottom: 1rem; width: 44px; height: 44px; }
    .scroll-top svg { width: 16px; height: 16px; }
}
#cookie-banner.is-visible { transform: translateY(0); }
.legal-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.85);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    cursor: pointer;
    isolation: isolate;
}

.legal-modal.is-open {
    display: flex !important;
}

.legal-modal-panel {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    background-color: #121008;
    border: 1px solid rgba(201, 166, 107, 0.45);
    padding: 3rem 2rem 2.5rem;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.85), 0 0 0 1px rgba(201, 166, 107, 0.2);
    cursor: default;
}

@media (max-width: 640px) {
    .legal-modal-panel { padding: 2.5rem 1.25rem 2rem; }
}

.legal-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2;
}

.legal-modal-close:hover { transform: rotate(90deg); }

.legal-modal-title {
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 200;
    color: var(--white);
    letter-spacing: -0.015em;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(201, 166, 107, 0.2);
}

.legal-modal-body h3 {
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-top: 1.75rem;
    margin-bottom: 0.6rem;
}

.legal-modal-body p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.75;
    margin-bottom: 0.75rem;
}

.legal-modal-body a {
    color: var(--gold);
    text-decoration: underline;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
[data-reveal] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s cubic-bezier(.2, .7, .3, 1), transform 1s cubic-bezier(.2, .7, .3, 1);
}

[data-reveal].is-revealed {
    opacity: 1;
    transform: translateY(0);
}
.support-intro {
    margin-top: 2rem;
    font-size: 1rem;
}

.support-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 5rem;
}

@media (max-width: 1023px) {
    .support-grid {
        grid-template-columns: 1fr;
        gap: 5rem;
        margin-top: 3.5rem;
    }
}

.support-card {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.support-photos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    width: 100%;
}

.support-photo {
    position: relative;
    margin: 0;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 1 / 1;
    border: 1px solid rgba(201, 166, 107, 0.18);
    transition: border-color 0.5s ease, transform 0.6s cubic-bezier(.2, .7, .3, 1);
    cursor: zoom-in;
}

.support-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background-color: #000;
    filter: grayscale(0.3) contrast(1.05) brightness(0.92);
    transition: filter 0.9s ease, transform 1.4s cubic-bezier(.2, .7, .3, 1);
}

.support-photo:hover {
    border-color: rgba(201, 166, 107, 0.5);
}

.support-photo:hover img {
    filter: grayscale(0) contrast(1.08) brightness(1);
    transform: scale(1.04);
}

.support-photo-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, 0.55) 100%);
}

.support-photo::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(201, 166, 107, 0.18) 0%, rgba(201, 166, 107, 0) 40%);
    mix-blend-mode: overlay;
    opacity: 0.6;
    transition: opacity 0.6s ease;
}

.support-photo:hover::after {
    opacity: 0.2;
}

@media (max-width: 1023px) {
    .support-photos {
        max-width: 640px;
        margin: 0 auto;
    }
}

@media (max-width: 540px) {
    .support-photos {
        max-width: 360px;
        margin-left: auto;
        margin-right: auto;
        gap: 0.6rem;
    }
}

.support-info {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.support-sport {
    color: var(--gold);
    font-size: 0.65rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    font-weight: 400;
}

.support-team {
    font-size: clamp(1.85rem, 4vw, 2.85rem);
    font-weight: 200;
    color: var(--white);
    letter-spacing: -0.015em;
    line-height: 1.05;
    margin: 0.2rem 0 0.4rem;
}

.support-desc {
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    line-height: 1.7;
    font-size: 0.95rem;
    margin: 0.25rem 0 0.5rem;
}

.support-achievements {
    list-style: none;
    padding: 1.25rem 0 0;
    margin: 0.75rem 0 0;
    border-top: 1px solid rgba(201, 166, 107, 0.18);
}

.support-achievements li {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 300;
    font-size: 0.9rem;
    letter-spacing: 0.005em;
    line-height: 1.55;
}

.support-achievements li .point-dot {
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.support-closing {
    text-align: center;
    max-width: 620px;
    margin: 5rem auto 0;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 300;
    line-height: 1.85;
    font-size: 1.05rem;
    padding: 2.5rem 1.75rem;
    border-top: 1px solid rgba(201, 166, 107, 0.22);
    border-bottom: 1px solid rgba(201, 166, 107, 0.22);
    text-wrap: balance;
    letter-spacing: 0.005em;
}

.support-closing .text-gold {
    display: inline-block;
    margin-top: 0.4rem;
}

@media (max-width: 640px) {
    .support-closing {
        font-size: 0.9rem;
        padding: 1.5rem 0.5rem;
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .offer-block .grid > div:first-child { margin-bottom: 1.5rem; }

    .section-header {
        grid-template-columns: 1fr;
        gap: 0.25rem;
        text-align: center;
        justify-items: center;
        padding-bottom: 1.75rem;
    }

    .section-header-text { text-align: center; padding-bottom: 0; }
    .section-number { margin-bottom: -0.5rem; }
    .section-eyebrow { margin-bottom: 0.85rem; }

    .about-lead,
    .about-body {
        text-align: center;
    }

    .about-stats {
        max-width: 460px;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        justify-items: center;
    }

    .stat-item {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .rzemieslnik-badge {
        display: flex;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .rzemieslnik-text {
        text-align: left;
    }

    .process-step {
        text-align: center;
    }

    .process-step-text {
        margin-left: auto;
        margin-right: auto;
    }

    .process-step-points {
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
    }

    .offer-intro,
    .support-intro,
    .section-lead {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-label,
    .offer-heading {
        text-align: center;
    }

    .offer-list {
        max-width: 480px;
        margin-left: auto;
        margin-right: auto;
    }

    .offer-block .btn-primary {
        margin-left: auto;
        margin-right: auto;
    }

    #contact .md\:col-span-2,
    #contact .md\:col-span-2 > div {
        text-align: center;
    }

    .location-card { text-align: center; }

    .location-header {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .location-num { padding-top: 0; }

    .location-link {
        justify-content: center;
        width: 100%;
    }

    .support-card { text-align: center; }
    .support-info { align-items: center; }
    .support-desc { max-width: 480px; margin-left: auto; margin-right: auto; }
    .support-achievements {
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
        text-align: left;
        width: 100%;
    }
}

@media (max-width: 640px) {
    .content-section { padding: 4.5rem 0 5.5rem; }

    .max-w-7xl, .max-w-3xl, .max-w-6xl, .max-w-5xl, .max-w-4xl {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .hero-line { font-size: clamp(3.5rem, 18vw, 5.5rem); }

    .section-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .about-lead { font-size: 1.05rem; }
    .about-body { font-size: 0.95rem; }

    .offer-heading {
        font-size: clamp(1.5rem, 7vw, 2.1rem);
    }

    .offer-name { font-size: 1rem; }
    .offer-desc { font-size: 0.85rem; }

    .process-step-title {
        font-size: clamp(1.5rem, 7vw, 2.2rem);
    }

    .review-title {
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .contact-value {
        font-size: 1rem;
    }
}

@media (max-width: 380px) {
    .max-w-7xl, .max-w-3xl, .max-w-6xl, .max-w-5xl, .max-w-4xl {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .section-number { font-size: clamp(3rem, 14vw, 5rem); }

    .about-stats { gap: 0.5rem; }
    .stat-num { font-size: 1.4rem; }
    .stat-label { font-size: 0.45rem; letter-spacing: 0.2em; }

    .offer-item { gap: 0.85rem; }

    .location-header { padding: 1.25rem; }

    .legal-modal-panel { padding: 2rem 1rem 1.5rem; }
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.96);
    padding: clamp(2.5rem, 6vw, 4rem);
    cursor: zoom-out;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.is-open {
    display: flex;
    opacity: 1;
}

.lightbox-img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: default;
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(201, 166, 107, 0.25);
}

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 2.5rem;
    line-height: 1;
    cursor: pointer;
    padding: 0.5rem;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    color: var(--white);
}

@media (max-width: 640px) {
    .lightbox-close { top: 0.75rem; right: 1rem; font-size: 2rem; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
