/* ═══════════════════════════════════════════
   BLOWOUT STUDIO FRYZUR — STYLES
   White theme rewrite
═══════════════════════════════════════════ */

:root {
    --bg: #ffffff;
    --bg-alt: #faf9f7;
    --surface: #eeecea;
    --black: #0a0a0a;
    --text: #0f0f0f;
    --text-mid: #585858;
    --text-muted: #9a9a9a;
    --border: rgba(0, 0, 0, 0.08);
    --accent: #c8a87a;
    --accent-dim: rgba(200, 168, 122, 0.12);
    --white: #ffffff;
    --T: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: "EB Garamond", serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' width='22' height='22'%3E%3Ccircle cx='6' cy='6.5' r='2.8' fill='none' stroke='%23333' stroke-width='1.4'/%3E%3Ccircle cx='6' cy='17.5' r='2.8' fill='none' stroke='%23333' stroke-width='1.4'/%3E%3Cline x1='8.5' y1='8.5' x2='21' y2='4' stroke='%23333' stroke-width='1.4' stroke-linecap='round'/%3E%3Cline x1='8.5' y1='15.5' x2='21' y2='20' stroke='%23333' stroke-width='1.4' stroke-linecap='round'/%3E%3Cline x1='8.5' y1='8.5' x2='14.5' y2='11.5' stroke='%23333' stroke-width='1.4' stroke-linecap='round'/%3E%3Cline x1='8.5' y1='15.5' x2='14.5' y2='12.5' stroke='%23333' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E")
            10 10,
        crosshair;
}

/* ─── CURSOR ─────────────────────────────── */
.cursor {
    position: fixed;
    width: 6px;
    height: 6px;
    background: var(--text);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    opacity: 0.5;
}
.cursor-ring {
    position: fixed;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0, 0, 0, 0.22);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition:
        width 0.3s var(--T),
        height 0.3s var(--T),
        border-color 0.3s;
}
.cursor-ring.active {
    width: 56px;
    height: 56px;
    border-color: rgba(0, 0, 0, 0.35);
}

/* ─── NAV ─────────────────────────────────── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 48px;
    transition:
        background 0.4s,
        padding 0.4s,
        box-shadow 0.4s;
}
nav.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.05);
    padding: 12px 48px;
}

.nav-logo-wrap {
    width: 80px;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s var(--T) forwards;
}
.nav-logo-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0;
}
.nav-links a {
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    padding: 4px 16px;
    display: block;
    position: relative;
    transition: color 0.3s;
    opacity: 0;
    animation: fadeUp 0.8s var(--T) forwards;
}
.nav-links li:nth-child(1) a {
    animation-delay: 0.3s;
}
.nav-links li:nth-child(2) a {
    animation-delay: 0.4s;
}
.nav-links li:nth-child(3) a {
    animation-delay: 0.5s;
}
.nav-links li:nth-child(4) a {
    animation-delay: 0.6s;
}
.nav-links li:nth-child(5) a {
    animation-delay: 0.7s;
}
.nav-links li:nth-child(6) a {
    animation-delay: 0.8s;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 16px;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.4s var(--T);
}
.nav-links a:hover {
    color: var(--text);
}
.nav-links a:hover::after {
    width: calc(100% - 32px);
}

.nav-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: 4px;
}
.nav-burger span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--text);
    transition: all 0.3s;
}
.nav-burger.open span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}
.nav-burger.open span:nth-child(2) {
    opacity: 0;
}
.nav-burger.open span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

/* ─── HERO ────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--bg-alt);
}
.hero-canvas {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.hero-cut-scene {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}
.wind-strand {
    position: absolute;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 0, 0, 0.06),
        transparent
    );
    border-radius: 1px;
    animation: windFloat linear infinite;
}
@keyframes windFloat {
    0% {
        transform: translateX(-20%) skewY(-1.5deg);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        transform: translateX(110vw) skewY(-1.5deg);
        opacity: 0;
    }
}
@keyframes hairFall {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.5;
    }
    100% {
        transform: translateY(160px) rotate(35deg);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 140px 40px 100px;
}
.hero-badge {
    margin-bottom: 48px;
    opacity: 0;
    animation: fadeIn 1.2s 0.5s var(--T) forwards;
}
.hero-badge img {
    width: 120px;
    height: auto;
    object-fit: contain;
    animation: floatBadge 7s ease-in-out infinite;
}
@keyframes floatBadge {
    0%,
    100% {
        transform: translateY(0) rotate(-0.3deg);
    }
    50% {
        transform: translateY(-10px) rotate(0.3deg);
    }
}

.hero-title {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(64px, 11vw, 160px);
    font-weight: 900;
    line-height: 0.88;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    color: var(--text);
    opacity: 0;
    animation: fadeUp 1s 0.8s var(--T) forwards;
}
.hero-title em {
    display: block;
    font-style: italic;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.55em;
    letter-spacing: 0.1em;
}
.hero-sub {
    margin-top: 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    opacity: 0;
    animation: fadeUp 1s 1.1s var(--T) forwards;
}
.hero-year-tag {
    position: absolute;
    right: 48px;
    bottom: 60px;
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    color: rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    writing-mode: vertical-rl;
    opacity: 0;
    animation: fadeIn 1s 2s forwards;
}
.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeIn 1s 2.2s forwards;
}
.hero-scroll span {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.28);
}
.scroll-line {
    width: 1px;
    height: 46px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent);
    animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

/* ─── MARQUEE ─────────────────────────────── */
.marquee-section {
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    padding: 14px 0;
    background: var(--surface);
}
.marquee-track {
    display: flex;
    animation: marqueeScroll 24s linear infinite;
    white-space: nowrap;
}
.marquee-track:hover {
    animation-play-state: paused;
}
.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 20px;
    padding: 0 20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    flex-shrink: 0;
}
.marquee-dot {
    width: 3px;
    height: 3px;
    background: rgba(200, 168, 122, 0.8);
    border-radius: 50%;
    flex-shrink: 0;
}
@keyframes marqueeScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ─── SECTION LABELS & REVEAL ─────────────── */
.section-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.section-label::before {
    content: "";
    width: 28px;
    height: 1px;
    background: currentColor;
    flex-shrink: 0;
}
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity 0.9s var(--T),
        transform 0.9s var(--T);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 {
    transition-delay: 0.1s;
}
.reveal-delay-2 {
    transition-delay: 0.2s;
}
.reveal-delay-3 {
    transition-delay: 0.3s;
}
.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ─── O NAS ───────────────────────────────── */
#o-nas {
    padding: 140px 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}
.about-visual {
    position: relative;
}
.about-img-frame {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
}
.about-img-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.2) contrast(1.05);
    transition: transform 0.8s var(--T);
}
.about-img-frame:hover img {
    transform: scale(1.04);
}
.about-img-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 60%,
        rgba(0, 0, 0, 0.15)
    );
}
.about-img-frame::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    z-index: 1;
    pointer-events: none;
}
.about-img-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
}
.about-img-placeholder::before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}
.about-img-placeholder span {
    font-family: "Cormorant Garamond", serif;
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.25);
}
.about-floating-label {
    position: absolute;
    bottom: -20px;
    right: -20px;
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--accent);
    writing-mode: vertical-rl;
    opacity: 0.5;
}
.about-text h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(30px, 3.2vw, 52px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    color: var(--text);
}
.about-text h2 em {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}
.about-text p {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-mid);
    margin-bottom: 20px;
}
.about-signature {
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-size: 18px;
    color: var(--accent);
    opacity: 0.9;
    margin-bottom: 36px;
}
.about-stats {
    display: flex;
    gap: 0;
    margin-top: 44px;
    padding-top: 36px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    align-items: flex-end;
}
.stat {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding-right: 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    margin-right: 24px;
}
.stat:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}
.stat-label {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 4px;
}
.stat-num {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 900;
    color: var(--text);
    line-height: 1;
}

/* ─── GALERIA ─────────────────────────────── */
#galeria {
    padding: 120px 80px;
    background: var(--bg-alt);
}
#galeria > .gallery-inner {
    max-width: 1200px;
    margin: 0 auto;
}
#galeria h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 56px;
    line-height: 1.1;
}
#galeria h2 em {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}
.gallery-tabs {
    display: flex;
    gap: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
    overflow-x: auto;
}
.gallery-tab {
    font-family: "Cormorant Garamond", serif;
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.35);
    padding: 12px 28px 14px;
    background: none;
    border: none;
    cursor: none;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s;
}
.gallery-tab::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--text);
    transition: width 0.4s var(--T);
}
.gallery-tab.active {
    color: var(--text);
}
.gallery-tab.active::after {
    width: 100%;
}
.gallery-tab:hover {
    color: rgba(0, 0, 0, 0.7);
}

.gallery-panel {
    display: none;
}
.gallery-panel.active {
    display: grid;
}
.gallery-grid-4 {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.gallery-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: var(--surface);
    cursor: none;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.15) contrast(1.02);
    transition:
        transform 0.7s var(--T),
        filter 0.5s;
}
.gallery-item:hover img {
    transform: scale(1.06);
    filter: grayscale(0) contrast(1.02);
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}
.gallery-zoom {
    font-family: "Cormorant Garamond", serif;
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.gallery-placeholder {
    width: 100%;
    aspect-ratio: 3/4;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
}
.gallery-placeholder span {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.2);
}
.gallery-placeholder .ph-icon {
    font-size: 24px;
    opacity: 0.15;
}
.gallery-empty {
    grid-column: 1/-1;
    padding: 60px 0;
    text-align: center;
    font-family: "Cormorant Garamond", serif;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
}

/* ─── CENNIK ──────────────────────────────── */
#cennik {
    padding: 120px 80px;
    max-width: 1000px;
    margin: 0 auto;
}
#cennik h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 56px;
    line-height: 1.1;
}
#cennik h2 em {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}
.price-category {
    margin-bottom: 56px;
}
.price-category-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    align-items: center;
    gap: 14px;
}
.price-category-title::before {
    content: "";
    width: 28px;
    height: 1px;
    background: var(--accent);
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.price-row:last-child {
    border-bottom: none;
}
.price-name {
    font-family: "EB Garamond", serif;
    font-size: 17px;
    color: rgba(0, 0, 0, 0.75);
}
.price-dots {
    flex: 1;
    margin: 0 16px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.12);
}
.price-val {
    font-family: "Bodoni Moda", serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    white-space: nowrap;
}

/* ─── MARKI ───────────────────────────────── */
#marki {
    padding: 120px 80px;
    background: var(--bg-alt);
    position: relative;
    overflow: hidden;
}
#marki::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse at 50% 0%,
        rgba(0, 0, 0, 0.02) 0%,
        transparent 70%
    );
}
.marki-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
#marki h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(28px, 3vw, 46px);
    font-weight: 700;
    color: var(--text);
    margin-bottom: 64px;
    line-height: 1.1;
}
#marki h2 em {
    color: rgba(0, 0, 0, 0.3);
    font-style: italic;
}
.brands-row {
    display: flex;
    gap: 40px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.brand-logo-slot {
    width: 200px;
    height: 120px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s;
}
.brand-logo-slot:hover {
    border-color: rgba(0, 0, 0, 0.25);
}
.brand-coming {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.15);
}

/* ─── HAIR GAME (stays dark intentionally) ── */
#hair-game {
    padding: 120px 80px;
    background: var(--black);
}
#hair-game .section-label {
    color: var(--accent);
}
#hair-game h2 {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(32px, 4vw, 56px);
    font-weight: 700;
    color: #f5f5f3;
    margin-bottom: 16px;
    line-height: 1.1;
}
#hair-game h2 em {
    color: rgba(255, 255, 255, 0.3);
    font-style: italic;
}
#hair-game .game-intro {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 56px;
    max-width: 560px;
    line-height: 1.8;
}
.game-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 720px;
}
.game-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 32px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-decoration: none;
    transition:
        border-color 0.3s,
        background 0.3s;
}
.game-card:hover {
    border-color: rgba(200, 168, 122, 0.4);
    background: rgba(200, 168, 122, 0.06);
}
.game-card-icon {
    font-size: 32px;
}
.game-card-title {
    font-family: "Bodoni Moda", serif;
    font-size: 20px;
    color: #f5f5f3;
}
.game-card-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.38);
    line-height: 1.6;
}
.game-card-cta {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(200, 168, 122, 0.7);
    margin-top: 8px;
}

/* ─── LOKALIZACJA ─────────────────────────── */
#lokalizacja {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
}
.location-panel {
    padding: 100px 80px;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.location-heading {
    font-family: "Bodoni Moda", serif;
    font-size: clamp(36px, 5vw, 72px);
    font-weight: 900;
    line-height: 0.9;
    color: var(--text);
    margin: 20px 0 8px;
    letter-spacing: -0.02em;
}
.location-street {
    font-family: "Cormorant Garamond", serif;
    font-size: 18px;
    letter-spacing: 0.2em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 48px;
}
.location-detail {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.loc-block h4 {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
.loc-block p,
.loc-block a {
    font-size: 16px;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    display: block;
    line-height: 1.7;
    transition: color 0.3s;
}
.loc-block a:hover {
    color: var(--text);
}
.map-container {
    position: relative;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(0.8) contrast(0.9);
    transition: filter 0.4s;
}
.map-container:hover iframe {
    filter: grayscale(0.3) contrast(0.95);
}

/* ─── FOOTER ──────────────────────────────── */
footer {
    background: var(--bg-alt);
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    padding: 80px 80px 48px;
}
.footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
}
.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.footer-logo-wrap {
    width: 72px;
    display: flex;
    align-items: center;
}
.footer-logo-wrap img {
    width: 100%;
    height: auto;
    object-fit: contain;
}
.footer-brand-text {
    font-family: "Bodoni Moda", serif;
    font-style: italic;
    font-size: 20px;
    color: rgba(0, 0, 0, 0.5);
}
.footer-col-title {
    font-family: "Cormorant Garamond", serif;
    font-size: 10px;
    letter-spacing: 0.38em;
    text-transform: uppercase;
    color: rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 14px;
}
.footer-col a {
    color: rgba(0, 0, 0, 0.5);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: var(--text);
}
.footer-contact-line {
    font-size: 15px;
    color: rgba(0, 0, 0, 0.5);
    margin-bottom: 10px;
    line-height: 1.6;
}
.footer-bottom {
    grid-column: 1/-1;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-copy {
    font-family: "Cormorant Garamond", serif;
    font-size: 11px;
    letter-spacing: 0.1em;
    color: rgba(0, 0, 0, 0.2);
}

/* ─── LIGHTBOX ────────────────────────────── */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(255, 255, 255, 0.97);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s;
    backdrop-filter: blur(12px);
}
.lightbox.open {
    opacity: 1;
    pointer-events: all;
}
.lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    object-fit: contain;
    transform: scale(0.9);
    transition: transform 0.5s var(--T);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
}
.lightbox.open img {
    transform: scale(1);
}
.lightbox-close {
    position: absolute;
    top: 28px;
    right: 36px;
    width: 42px;
    height: 42px;
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: rgba(0, 0, 0, 0.5);
    font-size: 16px;
    cursor: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.lightbox-close:hover {
    border-color: var(--text);
    color: var(--text);
    transform: rotate(90deg);
}

/* ─── ANIMATIONS ──────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 900px) {
    nav {
        padding: 12px 20px;
    }
    nav.scrolled {
        padding: 10px 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.99);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(0, 0, 0, 0.07);
        padding: 14px 0;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 12px 26px;
        opacity: 1;
        animation: none;
    }
    .nav-burger {
        display: flex;
    }

    #o-nas {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 28px;
    }
    #galeria {
        padding: 80px 28px;
    }
    .gallery-grid-4,
    .gallery-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    #cennik,
    #marki,
    #hair-game {
        padding: 80px 28px;
    }
    .brands-row {
        gap: 20px;
    }
    .brand-logo-slot {
        width: 140px;
        height: 84px;
    }
    .game-cards {
        grid-template-columns: 1fr;
    }

    #lokalizacja {
        grid-template-columns: 1fr;
    }
    .location-panel {
        padding: 60px 28px;
    }
    .map-container {
        min-height: 300px;
    }

    footer {
        padding: 60px 28px 36px;
    }
    .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .footer-brand-col {
        grid-column: 1/-1;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}
@media (max-width: 500px) {
    .footer-inner {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: clamp(48px, 14vw, 80px);
    }
    .about-stats {
        flex-wrap: nowrap;
    }
    .stat {
        flex: 1 1 0;
        min-width: 0;
    }
    .stat-num {
        font-size: clamp(20px, 6vw, 32px);
    }
}

