/* ========================================================================
   SoundBod System — design tokens
   ======================================================================== */
:root {
    --bg: #070606;
    --bg-2: #100e0c;
    --bg-3: #0b0a09;
    --bg-warm: #0e0b16;
    --text: #f6f4fb;
    --text-soft: rgba(246, 244, 251, 0.66);
    --text-muted: rgba(246, 244, 251, 0.40);
    --border: rgba(255, 255, 255, 0.10);
    --border-strong: rgba(255, 255, 255, 0.22);
    --primary: #2d247a;
    --primary-2: #4a3dc4;
    --primary-glow: rgba(74, 61, 196, 0.45);

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Manrope', system-ui, -apple-system, sans-serif;

    --container: 1480px;
    --ease: cubic-bezier(.2,.7,.2,1);
    --ease-out: cubic-bezier(.16,1,.3,1);
    --shadow-card: 0 30px 80px -40px rgba(0,0,0,0.9), 0 8px 24px -10px rgba(0,0,0,0.6);
}

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

html, body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    position: relative;
    background: var(--bg);
}

/* film grain overlay */
body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; }

::selection { background: var(--primary-2); color: #fff; }

/* ========================================================================
   Nav
   ======================================================================== */
.nav {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 22px clamp(20px, 4vw, 56px);
}

.nav__logo { display: inline-flex; align-items: center; }
.nav__logo img {
    height: 60px;
    width: auto;
}

.nav__menu { display: flex; gap: 34px; margin-left: auto; }
.nav__menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: opacity .25s var(--ease);
    text-shadow: 0 1px 8px rgba(0,0,0,0.55);
}
.nav__menu a:hover { opacity: 0.65; }

.nav__phone {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: var(--text);
    transition: opacity .25s var(--ease);
    padding-left: 22px;
    margin-left: 6px;
    border-left: 1px solid var(--border-strong);
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
    white-space: nowrap;
}
.nav__phone:hover { opacity: 0.7; }
.nav__burger { margin-left: auto; }

.nav__burger {
    display: none;
    width: 40px; height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
}
.nav__burger span {
    position: absolute;
    left: 8px; right: 8px;
    height: 1.5px;
    background: var(--text);
    transition: all .35s var(--ease);
}
.nav__burger span:nth-child(1) { top: 14px; }
.nav__burger span:nth-child(2) { top: 20px; }
.nav__burger span:nth-child(3) { top: 26px; }
.nav__burger.is-open span:nth-child(1) { top: 20px; transform: rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { top: 20px; transform: rotate(-45deg); }

/* ========================================================================
   Hero — editorial 50/50, full-bleed media right
   ======================================================================== */
.hero {
    position: relative;
    min-height: 70vh;
    min-height: 70svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 32%;
    filter: saturate(0.86) contrast(1.04) brightness(0.8);
    opacity: 0;
    will-change: opacity;
    animation: heroSlider 12s linear infinite;
}
.hero__slide:nth-child(1) { animation-delay: 0s; }
.hero__slide:nth-child(2) { animation-delay: 4s; object-position: center 22%; }
.hero__slide:nth-child(3) { animation-delay: 8s; }
@keyframes heroSlider {
    0%   { opacity: 0; }
    4%   { opacity: 1; }
    30%  { opacity: 1; }
    34%  { opacity: 0; }
    100% { opacity: 0; }
}
@keyframes heroKenBurns {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}
.hero__scrim {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,6,6,0.80) 0%, rgba(7,6,6,0.42) 26%, rgba(7,6,6,0.5) 58%, rgba(7,6,6,0.96) 90%, var(--bg) 100%),
        radial-gradient(150% 125% at 50% 30%, transparent 32%, rgba(7,6,6,0.72) 100%);
}

.hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(100px, 14vh, 160px) clamp(24px, 5vw, 64px);
    text-align: center;
}
.hero__content-inner {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.hero__title {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: clamp(48px, 7.5vw, 108px);
    line-height: 1.02;
    letter-spacing: -0.025em;
    margin: 0 0 40px;
    color: var(--text);
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.12s forwards;
}
.hero__title em {
    font-style: normal;
    font-weight: inherit;
    color: inherit;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-out) 0.28s forwards;
}

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


.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: all .3s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}
.btn--primary {
    background: var(--primary);
    color: #fff;
    padding: 16px 30px;
    border-radius: 999px;
}
.btn--primary:hover {
    background: var(--primary-2);
    transform: translateY(-1px);
}
.btn--link {
    background: transparent;
    color: var(--text);
    padding: 16px 0;
    position: relative;
}
.btn--link svg {
    width: 16px;
    height: 16px;
    transition: transform .3s var(--ease);
}
.btn--link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 1px;
    background: rgba(255,255,255,0.25);
    transform-origin: right;
    transition: transform .35s var(--ease);
}
.btn--link:hover::after {
    transform-origin: left;
    transform: scaleX(1);
}
.btn--link:hover svg { transform: translateX(4px); }

/* ========================================================================
   Wspólne elementy sekcji
   ======================================================================== */
.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-soft);
    margin-bottom: 26px;
}
.section-num {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    font-style: italic;
    color: var(--primary-2);
    letter-spacing: 0;
}
.section-title {
    font-family: var(--font-display);
    font-optical-sizing: auto;
    font-weight: 400;
    font-size: clamp(32px, 3.4vw, 50px);
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 28px;
}
.section-title em { font-style: normal; font-weight: inherit; color: inherit; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease-out), transform .9s var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }

/* ========================================================================
   O nas
   ======================================================================== */
.about {
    position: relative;
    padding: clamp(64px, 9vh, 120px) 0;
}
.about__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1.35fr 1fr 0.95fr;
    gap: clamp(28px, 3.4vw, 60px);
    align-items: center;
}

/* lewo: napis */
.about__intro { display: flex; flex-direction: column; }
.about__intro .section-title { font-size: clamp(30px, 2.9vw, 44px); }

/* środek: foto */
.about__media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 20px;
}
.about__media img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
    filter: saturate(0.94) contrast(1.04);
    transition: transform 1.2s var(--ease-out);
}
.about:hover .about__media img { transform: scale(1.04); }
.about__media::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 55%, rgba(8,7,11,0.55) 100%);
    pointer-events: none;
}
.about__marker {
    position: absolute;
    left: 20px; bottom: 18px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #fff;
}
.about__marker::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 0 4px rgba(74,61,196,0.25);
    animation: dotPulse 2.2s var(--ease) infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(74,61,196,0.3); }
    50% { box-shadow: 0 0 0 7px rgba(74,61,196,0); }
}

.about__lead {
    font-size: clamp(15px, 1.2vw, 18px);
    line-height: 1.68;
    color: var(--text);
    margin: 0 0 36px;
    font-weight: 400;
}

/* prawo: bullety */
.about__points {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: clamp(26px, 3vw, 38px);
}
.about__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    width: 100%;
}
.about__list li {
    padding: 18px 0;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.about__list li:first-child { border-top: none; padding-top: 0; }
.about__list li:last-child { padding-bottom: 0; }
.about__list strong {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(17px, 1.5vw, 21px);
    line-height: 1.2;
    letter-spacing: -0.01em;
    color: var(--text);
}
.about__list strong::before {
    content: '';
    flex: none;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-2);
    box-shadow: 0 0 0 4px rgba(74, 61, 196, 0.18);
}
.about__list span {
    padding-left: 19px;
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-soft);
}

.about__author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}
.about__avatar {
    flex: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 18%;
    border: 1px solid var(--border-strong);
}
.about__author-info strong {
    display: block;
    font-family: var(--font-display);
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    color: var(--text);
    line-height: 1.2;
}
.about__author-info span {
    display: block;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ========================================================================
   Oferta — bento z dużymi kaflami
   ======================================================================== */
.offer {
    position: relative;
    padding: clamp(70px, 11vh, 150px) 0;
}
.offer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.offer__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: clamp(32px, 6vw, 90px);
    margin: 0 0 clamp(30px, 4vw, 48px);
    padding-bottom: clamp(24px, 3vw, 36px);
    border-bottom: 1px solid var(--border);
}
.offer__head-main { flex: 1; }
.offer__head .section-title { margin-bottom: 0; }
.offer__intro {
    flex: 0 1 420px;
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0;
    padding-bottom: 6px;
}

.offer__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.offer-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    min-height: 300px;
    display: flex;
    isolation: isolate;
    border: 1px solid var(--border);
}
.offer-card--lg {
    grid-column: span 2;
    min-height: 384px;
}
.offer-card__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background-image: var(--img);
    background-size: cover;
    background-position: center;
    transform: scale(1.01);
    transition: transform 1.1s var(--ease-out);
    filter: saturate(0.92);
}
.offer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(180deg, rgba(8,7,11,0.15) 0%, rgba(8,7,11,0.35) 45%, rgba(8,7,11,0.92) 100%);
    transition: background .4s var(--ease);
}
.offer-card:hover .offer-card__bg { transform: scale(1.07); }
.offer-card:hover::after {
    background: linear-gradient(180deg, rgba(45,36,122,0.25) 0%, rgba(8,7,11,0.45) 45%, rgba(8,7,11,0.95) 100%);
}

.offer-card__body {
    position: relative;
    margin-top: auto;
    padding: clamp(22px, 2.4vw, 32px);
    width: 100%;
}
.offer-card__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 14px;
    color: var(--primary-2);
    display: block;
    margin-bottom: 10px;
}
.offer-card h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(22px, 2vw, 30px);
    line-height: 1.1;
    letter-spacing: -0.01em;
    color: #fff;
    margin: 0 0 10px;
}
.offer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,0.74);
    margin: 0;
    max-width: 440px;
    opacity: 0;
    max-height: 0;
    transform: translateY(8px);
    transition: opacity .45s var(--ease), max-height .45s var(--ease), transform .45s var(--ease);
}
.offer-card:hover p,
.offer-card:focus-within p {
    opacity: 1;
    max-height: 120px;
    transform: translateY(0);
}

/* ========================================================================
   Podstrony — page hero + sekcje
   ======================================================================== */
.page { padding-top: 0; }
.page-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    min-height: 56vh;
    padding: calc(78px + clamp(40px, 7vh, 90px)) 0 clamp(40px, 6vh, 72px);
}
.page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 35%;
    animation: heroKenBurns 18s var(--ease-out) forwards;
}
.page-hero__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, rgba(7,6,6,0.78) 0%, rgba(7,6,6,0.45) 35%, rgba(7,6,6,0.7) 75%, var(--bg) 100%),
        radial-gradient(140% 120% at 30% 30%, transparent 40%, rgba(7,6,6,0.65) 100%);
}
.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.crumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.crumbs a { color: var(--text-soft); transition: color .25s var(--ease); }
.crumbs a:hover { color: var(--text); }
.crumbs span { color: var(--primary-2); }
.page-hero__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(38px, 5vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.022em;
    color: var(--text);
    margin: 0 0 22px;
}
.page-hero__lead {
    font-size: clamp(15px, 1.3vw, 18px);
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 620px;
    margin: 0;
}

/* feature */
.feature { padding: clamp(40px, 6vw, 80px) 0; }
.feature__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 80px);
    align-items: center;
}
.feature--reverse .feature__media { order: 2; }
.feature--reverse .feature__text { order: 1; }
.feature__media {
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    overflow: hidden;
}
.feature__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease-out); }
.feature:hover .feature__media img { transform: scale(1.04); }
.feature__text p {
    font-size: clamp(15px, 1.15vw, 16px);
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0 0 24px;
    max-width: 520px;
}
.ticks { list-style: none; display: grid; gap: 12px; margin: 0 0 30px; }
.ticks li {
    position: relative;
    padding-left: 30px;
    font-size: 15px;
    color: var(--text);
}
.ticks li::before {
    content: '';
    position: absolute;
    left: 0; top: 2px;
    width: 18px; height: 18px;
    border-radius: 50%;
    background: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* types */
.types { padding: clamp(48px, 7vw, 90px) 0; }
.types__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.types__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

/* included */
.included { padding: clamp(48px, 7vw, 90px) 0; }
.included__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: clamp(32px, 5vw, 80px);
    align-items: center;
}
.included__lead { font-size: clamp(15px, 1.2vw, 17px); line-height: 1.7; color: var(--text-soft); margin: 0; max-width: 420px; }
.included__list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
    margin: 0; padding: 0;
}
.included__list li {
    position: relative;
    padding-left: 32px;
    font-size: 14.5px;
    line-height: 1.5;
    color: var(--text);
}
.included__list li::before {
    content: '';
    position: absolute;
    left: 0; top: 1px;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: var(--primary);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12 5 5 9-9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: center;
}

/* extras */
.extras { padding: clamp(48px, 7vw, 90px) 0; }
.extras__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.extras__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(16px, 2vw, 28px);
}
.extra {
    padding: clamp(26px, 3vw, 40px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #0b0b0d;
}
.extra__ico {
    display: grid; place-items: center;
    width: 52px; height: 52px;
    border-radius: 12px;
    background: rgba(74,61,196,0.12);
    color: var(--primary-2);
    margin-bottom: 20px;
}
.extra__ico svg { width: 26px; height: 26px; }
.extra h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(20px, 1.8vw, 25px);
    color: var(--text);
    margin: 0 0 10px;
}
.extra p { font-size: 14px; line-height: 1.7; color: var(--text-soft); margin: 0; }

/* ========================================================================
   Nav — stan aktywny / solidny (podstrony)
   ======================================================================== */
.nav__menu a { position: relative; }
.nav__menu a.is-active { color: var(--text); }
.nav__menu a.is-active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--primary-2);
    border-radius: 2px;
}
/* nav --solid: na podstronach też transparentny (header nad foto page-hero) */

/* ========================================================================
   Button — outline
   ======================================================================== */
.btn--outline {
    background: transparent;
    color: var(--text);
    padding: 15px 28px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
}
.btn--outline svg { width: 16px; height: 16px; transition: transform .3s var(--ease); }
.btn--outline:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.5);
    transform: translateY(-1px);
}
.btn--outline:hover svg { transform: translateX(4px); }

.offer__more {
    display: flex;
    justify-content: center;
    margin-top: clamp(36px, 5vw, 56px);
}

/* ========================================================================
   Pasek zaufania
   ======================================================================== */
.trustbar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-3);
}
.trustbar__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(28px, 3.5vw, 44px) clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.trustbar__item { display: flex; flex-direction: column; gap: 6px; text-align: center; }
.trustbar__item strong {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(30px, 3.4vw, 46px);
    line-height: 1;
    color: var(--text);
}
.trustbar__item span {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ========================================================================
   Dlaczego warto — na tle zdjęcia
   ======================================================================== */
.why {
    position: relative;
    padding: clamp(100px, 17vh, 220px) 0;
    overflow: hidden;
}
.why__bg { position: absolute; inset: 0; z-index: 0; }
.why__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center;
}
.why__scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, rgba(7,6,6,0.5) 20%, rgba(7,6,6,0.5) 78%, var(--bg) 100%),
        linear-gradient(90deg, rgba(7,6,6,0.55), rgba(7,6,6,0.15));
}
.why__inner {
    position: relative;
    z-index: 1;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.why__head { max-width: 640px; margin-bottom: clamp(36px, 4vw, 56px); }
.why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.why-box {
    padding: clamp(24px, 2.2vw, 32px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(16,14,12,0.72);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: transform .4s var(--ease), border-color .4s var(--ease);
}
.why-box:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.why-box__num {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 15px;
    color: var(--primary-2);
    display: block;
    margin-bottom: 16px;
}
.why-box h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 23px);
    color: var(--text);
    margin: 0 0 10px;
    line-height: 1.15;
}
.why-box p { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); margin: 0; }

/* co wchodzi w oprawę (home) */
.package { padding: clamp(56px, 8vh, 110px) 0; }
.package__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(36px, 5vw, 72px);
    align-items: stretch;
}
.package__media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    min-height: 420px;
}
.package__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}
.package:hover .package__media img { transform: scale(1.04); }
.package__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.package__lead {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: var(--text-soft);
    margin: 0 0 28px;
    max-width: 540px;
}
.package__text .btn { align-self: flex-start; }

/* ========================================================================
   Opinie
   ======================================================================== */
.reviews { padding: clamp(56px, 8vh, 110px) 0; overflow: hidden; }
.reviews__head-wrap {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.reviews__rating { text-align: right; }
.reviews__stars { color: #f3b13b; font-size: 22px; letter-spacing: 2px; }
.reviews__rating p { font-size: 13px; color: var(--text-soft); margin: 6px 0 0; }
.reviews__rating strong { color: var(--text); font-size: 15px; }

/* slider full-bleed */
.reviews__slider {
    position: relative;
    margin-top: clamp(32px, 4vw, 52px);
}
.reviews__track {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: clamp(20px, 5vw, 56px);
    padding: 6px clamp(20px, 5vw, 56px);
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review {
    flex: 0 0 clamp(280px, 33vw, 384px);
    scroll-snap-align: start;
    margin: 0;
    padding: clamp(24px, 2.4vw, 34px);
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #0b0b0d;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color .4s var(--ease);
}
.review:hover { border-color: var(--border-strong); }
.review__stars { color: #f3b13b; font-size: 15px; letter-spacing: 2px; }
.review blockquote {
    margin: 0;
    font-size: 15px;
    line-height: 1.65;
    color: var(--text);
    flex: 1;
}
.review figcaption {
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.review figcaption span { font-weight: 600; font-size: 14px; color: var(--text); }
.review figcaption small {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}
.g-logo { width: 14px; height: 14px; flex: none; display: block; }

/* strzałki nawigacji */
.reviews__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 4;
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border-strong);
    background: rgba(11, 11, 13, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--text);
    display: grid; place-items: center;
    font-size: 26px; line-height: 1;
    cursor: pointer;
    transition: background .3s var(--ease), border-color .3s var(--ease);
}
.reviews__nav:hover { background: var(--primary); border-color: var(--primary); }
.reviews__nav--prev { left: clamp(8px, 2vw, 24px); }
.reviews__nav--next { right: clamp(8px, 2vw, 24px); }

/* ========================================================================
   Galeria — zajawka (bento)
   ======================================================================== */
.gallery-teaser { position: relative; padding: clamp(64px, 9vh, 120px) 0; }
.gallery-teaser__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.gallery-teaser__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}
.gt-item {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid var(--border);
    aspect-ratio: 4 / 5;
}
.gt-item img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s var(--ease-out);
}
.gt-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(8,7,11,0.5));
    opacity: 0;
    transition: opacity .4s var(--ease);
}
.gt-item:hover img { transform: scale(1.07); }
.gt-item:hover::after { opacity: 1; }

/* ========================================================================
   Strony prawne (polityka, regulamin)
   ======================================================================== */
.legal {
    padding: calc(80px + clamp(48px, 9vh, 110px)) 0 clamp(64px, 9vh, 120px);
}
.legal__inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.legal__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(34px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 14px 0 8px;
}
.legal__date {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: clamp(32px, 5vw, 52px);
}
.legal__body h2 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(21px, 2.2vw, 28px);
    line-height: 1.2;
    color: var(--text);
    margin: clamp(36px, 4vw, 52px) 0 14px;
}
.legal__body h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    margin: 26px 0 10px;
}
.legal__body p,
.legal__body li {
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-soft);
    margin: 0 0 12px;
}
.legal__body ul,
.legal__body ol { padding-left: 24px; margin: 0 0 16px; }
.legal__body li { margin-bottom: 7px; }
.legal__body a {
    color: var(--primary-2);
    text-decoration: underline;
    text-underline-offset: 3px;
    word-break: break-word;
}
.legal__body a:hover { color: var(--text); }
.legal__body strong { color: var(--text); font-weight: 600; }

/* ========================================================================
   CTA band — tło zdjęcia + napisy (podstrony)
   ======================================================================== */
.cta-band {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: clamp(80px, 13vh, 165px) 0;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0; z-index: -2;
    background-image: var(--cta-img, url('/img/439.jpg'));
    background-size: cover;
    background-position: center 35%;
    filter: saturate(0.86) contrast(1.04) brightness(0.8);
}
.cta-band::after {
    content: '';
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(180deg, var(--bg) 0%, rgba(7,6,6,0.62) 38%, rgba(7,6,6,0.82) 100%),
        radial-gradient(120% 120% at 50% 40%, transparent 38%, rgba(7,6,6,0.6) 100%);
}
.cta-band__inner {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    text-align: center;
}
.cta-band .section-eyebrow { justify-content: center; }
.cta-band__title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(32px, 4.4vw, 58px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0 0 18px;
    text-shadow: 0 2px 30px rgba(0,0,0,0.4);
}
.cta-band__inner > p {
    font-size: clamp(15px, 1.2vw, 17px);
    line-height: 1.7;
    color: rgba(255,255,255,0.82);
    margin: 0 auto 36px;
    max-width: 540px;
}
.cta-band__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* ========================================================================
   Footer — zdjęcie w tle, CTA, mapa, badge klikamy
   ======================================================================== */
.footer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}
.footer__bg { position: absolute; inset: 0; z-index: -1; }
.footer__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.footer__bg-scrim {
    position: absolute; inset: 0;
    background:
        linear-gradient(180deg, var(--bg) 0%, rgba(7,6,6,0.86) 40%, rgba(7,6,6,0.95) 100%);
}

.footer__cta {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(56px, 8vw, 100px) clamp(20px, 5vw, 56px) clamp(36px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 26px;
    border-bottom: 1px solid var(--border);
}
.footer__cta-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(28px, 3.6vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    color: var(--text);
    margin: 0;
}

.footer__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: clamp(44px, 5vw, 72px) clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.4fr;
    gap: clamp(28px, 4vw, 56px);
}
.footer__logo { height: 50px; width: auto; margin-bottom: 18px; }
.footer__brand p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-soft);
    max-width: 320px;
    margin: 0 0 22px;
}
.footer__social { display: flex; gap: 12px; }
.footer__social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text);
    transition: all .3s var(--ease);
    background: rgba(255,255,255,0.03);
}
.footer__social svg { width: 16px; height: 16px; }
.footer__social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__head {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.footer__col a {
    font-size: 14px;
    color: var(--text-soft);
    transition: color .25s var(--ease);
    width: fit-content;
}
.footer__col a:hover { color: var(--text); }
.footer__muted { font-size: 13.5px; line-height: 1.6; color: var(--text-muted); }

.footer__map {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border);
    min-height: 180px;
    background: var(--bg-2);
}
.footer__map iframe {
    width: 100%;
    height: 100%;
    min-height: 180px;
    border: 0;
    display: block;
    filter: grayscale(1) invert(0.92) contrast(0.9) hue-rotate(180deg);
    opacity: 0.85;
}

.footer__bar {
    max-width: var(--container);
    margin: 0 auto;
    padding: 22px clamp(20px, 5vw, 56px);
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 12.5px;
    color: var(--text-muted);
}
.footer__made {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 8px;
    transition: background .4s var(--ease-out), border-color .4s var(--ease-out), transform .5s var(--ease-out);
}
.footer__made:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,255,255,0.22);
    transform: scale(1.04);
}
.footer__made-label { font-size: 12px; font-weight: 400; color: rgba(255,255,255,0.45); }
.footer__made-logo { width: 16px; height: 16px; display: block; border-radius: 3px; flex-shrink: 0; }
.footer__made-name { font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.85); }
.footer__made:hover .footer__made-name { color: #fff; }
.footer__copy { color: var(--text-muted); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }
.footer__legal a { font-size: 12.5px; color: var(--text-muted); transition: color .25s var(--ease); }
.footer__legal a:hover { color: var(--text); }

/* ========================================================================
   Kontakt — formularz + dane
   ======================================================================== */
.contact { padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 8vw, 100px); }
.contact__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
    display: grid;
    grid-template-columns: 0.8fr 1.5fr 0.8fr;
    gap: clamp(28px, 4vw, 64px);
    align-items: start;
}
.contact__form-wrap { padding: 0; }
.form { display: flex; flex-direction: column; gap: 18px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form__field { display: flex; flex-direction: column; gap: 8px; }
.form__field label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.form__field input,
.form__field select,
.form__field textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border-strong);
    border-radius: 0;
    padding: 12px 2px;
    transition: border-color .25s var(--ease);
    width: 100%;
}
.form__field textarea { resize: vertical; min-height: 120px; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
    outline: none;
    border-bottom-color: var(--primary-2);
}
.form__field input::placeholder,
.form__field textarea::placeholder { color: var(--text-muted); }
.form__field select { appearance: none; -webkit-appearance: none; cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 2px center; padding-right: 28px; }
.form__err { font-size: 12.5px; color: #ff8a8a; }
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.form__submit { align-self: flex-start; margin-top: 4px; justify-content: center; }
.form__note { font-size: 12.5px; color: var(--text-muted); margin: 0; }
.form__consent {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
    cursor: pointer;
}
.form__consent input { width: 17px; height: 17px; flex: none; margin-top: 1px; accent-color: var(--primary); cursor: pointer; }
.form__consent a { color: var(--primary-2); text-decoration: underline; text-underline-offset: 2px; }
.form__consent a:hover { color: var(--text); }

.form-alert {
    border-radius: 12px;
    padding: 16px 18px;
    margin-bottom: 22px;
    font-size: 14px;
    line-height: 1.5;
}
.form-alert--ok { background: rgba(56,160,90,0.12); border: 1px solid rgba(56,160,90,0.4); color: #b9f0cc; }
.form-alert--err { background: rgba(200,70,70,0.12); border: 1px solid rgba(200,70,70,0.4); color: #ffc3c3; }

.contact__side { display: flex; flex-direction: column; gap: 28px; }
.contact__groups { display: flex; flex-direction: column; gap: 22px; }
.contact__group { display: flex; flex-direction: column; gap: 5px; }
.contact__group small,
.contact__company small {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact__group a,
.contact__group span {
    font-size: 15px;
    line-height: 1.5;
    color: var(--text);
}
.contact__group a { transition: color .25s var(--ease); }
.contact__group a:hover { color: var(--primary-2); }
.contact__company {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.contact__company small { margin-bottom: 2px; }
.contact__company span { font-size: 13.5px; line-height: 1.6; color: var(--text-soft); }
.contact__company strong { color: var(--text); font-weight: 500; }
.contact__social { display: flex; gap: 12px; }
.contact__social a {
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border: 1px solid var(--border-strong);
    border-radius: 50%;
    color: var(--text);
    transition: all .3s var(--ease);
}
.contact__social svg { width: 16px; height: 16px; }
.contact__social a:hover { background: var(--primary); border-color: var(--primary); transform: translateY(-2px); }

/* ========================================================================
   FAQ — kontakt
   ======================================================================== */
.faq { padding: clamp(20px, 3vh, 48px) 0 clamp(56px, 8vw, 100px); }
.faq__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.faq__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 clamp(40px, 5vw, 80px);
    margin-top: clamp(28px, 3vw, 44px);
}
.faq__item {
    padding: clamp(22px, 2.4vw, 30px) 0;
    border-top: 1px solid var(--border);
}
.faq__item h3 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(18px, 1.6vw, 23px);
    line-height: 1.25;
    color: var(--text);
    margin: 0 0 10px;
}
.faq__item p {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--text-soft);
    margin: 0;
    max-width: 520px;
}

/* ========================================================================
   Galeria pełna + lightbox
   ======================================================================== */
.gallery { padding: clamp(48px, 6vw, 80px) 0 clamp(56px, 8vw, 100px); }
.gallery__inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 56px);
}
.gallery__grid { columns: 4; column-gap: 14px; }
.gallery__item {
    display: block;
    margin: 0 0 14px;
    break-inside: avoid;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border);
    cursor: zoom-in;
}
.gallery__item img { width: 100%; display: block; transition: transform .8s var(--ease-out); }
.gallery__item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7,6,6,0.45));
    opacity: 0;
    transition: opacity .35s var(--ease);
}
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:hover::after { opacity: 1; }

.lightbox {
    position: fixed; inset: 0;
    z-index: 200;
    background: rgba(5,4,4,0.95);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    display: none;
    place-items: center;
    padding: 40px;
}
.lightbox.is-open { display: grid; animation: fadeUp .3s var(--ease-out); }
.lightbox__img {
    max-width: 92vw;
    max-height: 86vh;
    object-fit: contain;
    border-radius: 6px;
    box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8);
}
.lightbox button {
    position: absolute;
    background: rgba(255,255,255,0.08);
    border: 1px solid var(--border-strong);
    color: #fff;
    cursor: pointer;
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all .25s var(--ease);
}
.lightbox button:hover { background: var(--primary); border-color: var(--primary); }
.lightbox__close { top: 24px; right: 24px; width: 48px; height: 48px; font-size: 26px; line-height: 1; }
.lightbox__prev, .lightbox__next { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 30px; line-height: 1; }
.lightbox__prev { left: 24px; }
.lightbox__next { right: 24px; }

/* ========================================================================
   Sticky badge — Firma Godna Zaufania
   ======================================================================== */
.trust-badge {
    position: fixed;
    right: clamp(16px, 2vw, 28px);
    bottom: clamp(16px, 2vw, 28px);
    z-index: 60;
    width: clamp(52px, 5vw, 68px);
    height: clamp(52px, 5vw, 68px);
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 12px 32px -8px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.1);
    overflow: hidden;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease);
    animation: badgeIn 0.6s var(--ease-out) 1.1s both;
}
.trust-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.trust-badge:hover {
    transform: scale(1.06) rotate(-3deg);
    box-shadow: 0 18px 44px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.18);
}
@keyframes badgeIn {
    from { opacity: 0; transform: scale(0.6); }
    to { opacity: 1; transform: scale(1); }
}

/* ========================================================================
   Responsive
   ======================================================================== */
@media (max-width: 960px) {
    /* mobilny nav: transparentny, nie-sticky; menu rozwijane solid */
    .nav {
        gap: 14px;
        padding: 16px 18px;
    }
    .nav__menu {
        position: fixed;
        inset: 64px 10px auto 10px;
        flex-direction: column;
        gap: 0;
        padding: 12px 16px;
        background: var(--bg-2);
        border: 1px solid var(--border);
        border-radius: 14px;
        box-shadow: var(--shadow-card, 0 30px 80px -40px rgba(0,0,0,0.9));
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity .3s var(--ease), transform .3s var(--ease);
    }
    .nav__menu.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .nav__menu a {
        padding: 14px 8px;
        font-size: 15px;
        border-bottom: 1px solid var(--border);
        text-shadow: none;
    }
    .nav__menu a:last-child { border-bottom: none; }
    .nav__menu a.is-active::after { display: none; }
    .nav__burger { display: block; }
    .nav__logo img { height: 40px; }
    body.menu-open { overflow: hidden; }

    .hero__content {
        padding: clamp(90px, 16vh, 130px) clamp(22px, 6vw, 40px);
    }
    .hero__content-inner { max-width: 100%; }
    .hero__slide { object-position: center 35%; }

    .about__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .about__media { aspect-ratio: 16 / 11; max-height: 56vh; }

    .package__inner { grid-template-columns: 1fr; gap: 32px; }
    .package__media { min-height: 0; aspect-ratio: 16 / 11; max-height: 56vh; }

    .offer__grid { grid-template-columns: repeat(2, 1fr); }
    .offer-card--lg { grid-column: span 2; min-height: 320px; }
    .offer-card { min-height: 260px; }
    /* brak hovera na dotyku — opis widoczny */
    .offer-card p { opacity: 1; max-height: 120px; transform: none; }


    .offer__head { flex-direction: column; align-items: flex-start; gap: 20px; }
    .offer__intro { flex-basis: auto; }

    .gallery-teaser__grid { grid-template-columns: repeat(2, 1fr); }

    .feature__inner { grid-template-columns: 1fr; gap: 32px; }
    .feature__media { aspect-ratio: 16 / 10; max-height: 52vh; }
    .types__grid { grid-template-columns: repeat(2, 1fr); }
    .extras__grid { grid-template-columns: 1fr; }

    .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px 36px; }
    .footer__brand { grid-column: 1 / -1; }
    .footer__map { grid-column: 1 / -1; min-height: 240px; }

    .page-hero { min-height: 46vh; }
    .feature--reverse .feature__media { order: 1; }
    .feature--reverse .feature__text { order: 2; }
    .included__inner { grid-template-columns: 1fr; gap: 28px; }
    .contact__inner { grid-template-columns: 1fr; }
    .faq__grid { grid-template-columns: 1fr; gap: 0; }
    .gallery__grid { columns: 3; }
}

@media (max-width: 640px) {
    .hero__title { font-size: clamp(40px, 11vw, 68px); }
    .hero__cta { gap: 20px; }
    .btn--primary { padding: 14px 24px; font-size: 13px; }
    .btn--link { padding: 14px 0; font-size: 13px; }
    .nav__phone { font-size: 13px; }

    .about { padding: 64px 0; }

    .gallery-teaser__grid { grid-template-columns: 1fr 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer__bar { flex-direction: column-reverse; align-items: flex-start; gap: 16px; }
    .trustbar__inner { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .why__grid { grid-template-columns: 1fr; }
    .cta-band__actions { flex-direction: column; gap: 16px; }
    .reviews__nav { display: none; }
    .review { flex-basis: 84vw; }
    .reviews__rating { text-align: left; }
    .form__row { grid-template-columns: 1fr; }
    .types__grid { grid-template-columns: 1fr; }
    .included__list { grid-template-columns: 1fr; }
    .gallery__grid { columns: 2; column-gap: 10px; }
    .gallery__item { margin-bottom: 10px; }
    .page-hero { min-height: 42vh; }
    .lightbox__prev, .lightbox__next { width: 44px; height: 44px; }
    .lightbox__prev { left: 10px; }
    .lightbox__next { right: 10px; }

    .offer__grid { grid-template-columns: 1fr; }
    .offer-card--lg { grid-column: span 1; min-height: 300px; }
    .offer-card { min-height: 280px; }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    /* bez animacji slidera pokazujemy pierwsze zdjęcie */
    .hero__slide:first-child { opacity: 1 !important; }
}

/* ========================================================================
   Cookie banner
   ======================================================================== */
.cookie {
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 250;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px 24px;
    padding: 13px clamp(16px, 4vw, 40px);
    background: rgba(14, 13, 18, 0.96);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    animation: cookieIn .4s var(--ease-out) both;
}
@keyframes cookieIn {
    from { opacity: 0; transform: translateY(100%); }
    to   { opacity: 1; transform: translateY(0); }
}
.cookie[hidden] { display: none; }
.cookie__text {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-soft);
    margin: 0;
    max-width: 720px;
}
.cookie__text a { color: var(--primary-2); text-decoration: underline; text-underline-offset: 2px; }
.cookie__text a:hover { color: var(--text); }
.cookie__actions { display: flex; gap: 10px; flex: none; }
.cookie__btn {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    white-space: nowrap;
    transition: background .2s var(--ease), border-color .2s var(--ease);
}
.cookie__btn:hover { background: rgba(255, 255, 255, 0.08); }
.cookie__btn--primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.cookie__btn--primary:hover { background: var(--primary-2); border-color: var(--primary-2); }
@media (max-width: 640px) {
    .cookie { flex-direction: column; gap: 12px; text-align: center; }
    .cookie__actions { width: 100%; }
    .cookie__btn { flex: 1; }
}

/* ========================================================================
   Tryb edycji (inline editor)
   ======================================================================== */
.ed-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 9px clamp(16px, 4vw, 28px);
    background: #2d247a;
    color: #fff;
    font-family: var(--font-body);
    font-size: 13px;
    box-shadow: 0 4px 20px rgba(0,0,0,.4);
}
.ed-bar__label { font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.ed-bar__status { flex: 1; color: rgba(255,255,255,.85); }
.ed-bar__status.is-err { color: #ffc3c3; }
.ed-bar__out {
    color: #fff;
    border: 1px solid rgba(255,255,255,.4);
    border-radius: 999px;
    padding: 5px 16px;
    font-weight: 600;
    white-space: nowrap;
    transition: background .2s var(--ease);
}
.ed-bar__out:hover { background: rgba(255,255,255,.15); }
body.is-edit { padding-top: 42px; }
.is-edit [data-ed] {
    outline: 1px dashed rgba(122,108,230,.5);
    outline-offset: 3px;
    border-radius: 2px;
    cursor: text;
    transition: outline-color .2s var(--ease), background .2s var(--ease);
}
.is-edit [data-ed]:hover { outline-color: #7a6ce6; }
.is-edit [data-ed]:focus {
    outline: 2px solid #7a6ce6;
    background: rgba(122,108,230,.10);
}
.ed-imgbtn {
    position: absolute;
    top: 12px; left: 12px;
    z-index: 5;
    background: rgba(45,36,122,.92);
    color: #fff;
    border: 1px solid rgba(255,255,255,.25);
    border-radius: 999px;
    padding: 8px 16px;
    font-family: var(--font-body);
    font-size: 12.5px;
    font-weight: 600;
    cursor: pointer;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    transition: background .2s var(--ease);
}
.ed-imgbtn:hover { background: #4a3dc4; }
