/* ==========================================================================
   I. FUNDAMENTY (CZCIONKI, ZMIENNE, RESET)
   ========================================================================== */

/* --- 1. CZCIONKI --- */
@font-face {
    font-family: 'TT Drugs';
    src: url('tt-drugs-light.woff2') format('woff2'); 
    font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Milanesa Serif';
    src: url('stopka.otf') format('opentype');
    font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Palmore';
    src: url('Palmore Regular.ttf') format('truetype');
    font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Dream Avenue';
    src: url('Dream Avenue.ttf') format('truetype'); 
    font-weight: normal; font-style: normal; font-display: swap;
}

/* --- 2. ZMIENNE GLOBALNE (:ROOT) --- */
:root {
    --color-pink-bg:     #fcece9;
    --color-pink-brand:  #fbafbc;
    --color-cream:       #f0eee9;
    --color-green-olive: #7A8450;
    --color-navy-dark:   #1e2a36;
    --color-brown-text:  #0c0c0c;

    --bg-color:     var(--color-pink-bg);   
    --content-bg:   var(--color-cream);     
    --brand-blue:   var(--color-navy-dark); 
    --text-color:   var(--color-brown-text);
    --brand-pink:   var(--color-pink-brand); 
    --brand-green:  var(--color-green-olive); 

    --hover-blur: 8px;
    --transition-speed: 0.5s;
}

/* --- 3. RESET I USTAWIENIA OGÓLNE --- */
* { margin: 0; padding: 0; box-sizing: border-box; }

/* PODSTAWA TO TT DRUGS (MAŁE TEKSTY) */
body { 
    font-family: 'TT Drugs', sans-serif; 
    overflow-x: hidden; 
}

/* NAGŁÓWKI WRACAJĄ DO DREAM AVENUE */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Dream Avenue', serif;
    font-weight: normal;
}

/* FIX: Naprawa koloru tła przy autouzupełnianiu formularzy */
input:-webkit-autofill, textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--content-bg) inset !important;
    -webkit-text-fill-color: var(--brand-green) !important;
    font-family: 'TT Drugs', sans-serif !important;
    caret-color: var(--brand-green);
    transition: background-color 5000s ease-in-out 0s;
}

/* --- 4. KLASY POMOCNICZE (LENIS SCROLL, REVEAL) --- */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

.reveal {
    opacity: 0 !important; transform: translateY(50px); 
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); will-change: transform, opacity;
}
.reveal.active { opacity: 1 !important; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==========================================================================
   II. TŁA I ELEMENTY SPECJALNE
   ========================================================================== */
.blurred-hero-bg {
    position: fixed; top: 0; left: 0; width: 100%; height: 100vh; height: 100dvh; z-index: -10;
    overflow: hidden; background-color: #1a1a1a;
}
.blurred-hero-bg::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-image: url('img/kontakt.webp'); /* Zamieniłem też na wszelki wypadek tło kontaktowe na webp, jak ustalaliśmy wczoraj */
    background-size: cover; background-position: center;
    filter: blur(2px); transform: scale(1.02); will-change: transform;
}
.blurred-hero-bg::after {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); 
}

/* ==========================================================================
   III. NAWIGACJA, LOGO I STOPKA (ELEMENTY STAŁE)
   ========================================================================== */
.subpage-logo {
    position: absolute; top: 30px; left: 40px; z-index: 100; display: block; width: 130px; height: auto; transition: opacity 0.3s ease;
}
.subpage-logo img { width: 100%; display: block; }
.subpage-logo:hover { opacity: 0.7; }

.menu-btn {
    position: fixed; top: 30px; right: 30px; z-index: 100; padding: 10px 25px; background: var(--brand-pink);
    border: 1px solid var(--brand-pink); border-radius: 30px; cursor: pointer; font-weight: 600; text-transform: uppercase;
    transition: 0.3s; font-family: 'Dream Avenue', serif; color: #000; 
}
.menu-btn:hover { background: #000; color: #fff; border-color: #000; }

.menu-overlay {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--bg-color); z-index: 99;
    display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.4s ease;
}
.menu-overlay.active { opacity: 1; pointer-events: auto; }
.overlay-nav { display: flex; flex-direction: column; gap: 15px; text-align: center; }
.overlay-nav a {
    font-size: 3.5rem; text-decoration: none; color: var(--brand-blue); 
    font-family: 'Dream Avenue', serif; position: relative; display: inline-block;
}
.scatter-char { display: inline-block; transition: transform 0.5s cubic-bezier(0.2, 1, 0.3, 1), opacity 0.5s ease; will-change: transform; }
.overlay-nav a:hover .scatter-char:nth-child(2n) { transform: translate(-15px, -15px) rotate(-10deg); opacity: 0.7; }
.overlay-nav a:hover .scatter-char:nth-child(3n) { transform: translate(15px, 20px) rotate(15deg); opacity: 0.8; }
.overlay-nav a:hover .scatter-char:nth-child(5n) { transform: translate(-5px, -25px) rotate(-5deg); }
.overlay-nav a:hover .scatter-char:nth-child(7n) { transform: translate(10px, 30px) rotate(20deg); }
.overlay-nav a:hover .scatter-char { color: var(--brand-pink); }

.editorial-footer {
    background-color: var(--bg-color); color: var(--brand-blue); padding: 80px 40px 30px 40px; border-top: 1px solid rgba(0,0,0,0.1);
}
.footer-big-text {
    font-family: 'Milanesa Serif', serif; text-transform: uppercase; font-size: 6rem; text-align: center; margin-bottom: 80px; color: #94b1c7; line-height: 1;
}
.footer-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; border-bottom: 1px solid rgba(0,0,0,0.1); padding-bottom: 60px; }
.f-col h4 { font-family: 'Dream Avenue', serif; font-size: 0.9rem; text-transform: uppercase; letter-spacing: 2px; color: var(--brand-blue); opacity: 0.6; margin-bottom: 25px; }

/* MAŁE TEKSTY W STOPCE -> TT DRUGS */
.f-col p, .f-links li a { font-family: 'TT Drugs', sans-serif; font-size: 1rem; color: var(--brand-blue); line-height: 1.8; text-decoration: none; transition: opacity 0.3s; }
.f-links { list-style: none; padding: 0; }
.f-links li { margin-bottom: 10px; }
.f-links li a:hover, .f-mail:hover { opacity: 0.6; text-decoration: underline; }
.f-muted { opacity: 0.5; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 30px; font-family: 'TT Drugs', sans-serif; font-size: 0.8rem; color: var(--brand-blue); opacity: 0.6; text-transform: uppercase; }

.cookie-banner {
    position: fixed; bottom: 30px; left: 30px; width: 350px; background-color: var(--brand-blue); color: #fff; padding: 25px; z-index: 9999; display: none; flex-direction: column; gap: 20px; border: 1px solid rgba(255,255,255,0.1); opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.cookie-banner.show { display: flex; opacity: 1; transform: translateY(0); }
.cookie-content p { font-family: 'TT Drugs', sans-serif; font-size: 0.9rem; line-height: 1.5; margin: 0; color: #f0f0f0; }
.cookie-link { color: var(--brand-pink); text-decoration: underline; transition: 0.3s; }
.cookie-link:hover { color: #fff; }
.cookie-buttons { display: flex; gap: 15px; }
.cookie-btn { font-family: 'TT Drugs', sans-serif; font-size: 0.8rem; text-transform: uppercase; padding: 10px 20px; cursor: pointer; border: 1px solid; transition: 0.3s; }
.cookie-btn.accept { background-color: var(--brand-pink); border-color: var(--brand-pink); color: var(--brand-blue); font-weight: 600; }
.cookie-btn.accept:hover { background-color: #fff; border-color: #fff; }
.cookie-btn.decline { background-color: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.7); }
.cookie-btn.decline:hover { border-color: #fff; color: #fff; }

.marquee-strip {
    position: absolute; bottom: 20px; left: 0; width: 100%; background: rgba(255, 230, 230, 0.9); padding: 10px 0; z-index: 30; overflow: hidden; border-top: 1px solid #000; border-bottom: 1px solid #000; white-space: nowrap;
}
.marquee-content { display: inline-block; animation: marquee 45s linear infinite; }
.marquee-content span { font-family: 'TT Drugs', sans-serif; font-size: 0.9rem; font-weight: 600; text-transform: uppercase; padding-right: 50px; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

a[href^="tel"], a[href^="mailto"], .editorial-footer a[href^="tel"], .editorial-footer a[href^="mailto"] {
    color: var(--brand-blue) !important; text-decoration: none !important; font-style: normal !important;       
}
.f-col p a, .f-col a { color: inherit !important; text-decoration: none !important; }

/* ==========================================================================
   IV. STRONA GŁÓWNA (HERO)
   ========================================================================== */
.hero-container {
    /* ZMIANA: Skoro wycięliśmy Portfolio na stronie głównej, zmieniamy z 3 na 2 kolumny */
    display: grid; grid-template-columns: 1fr 1fr; height: 100vh; width: 100%; position: relative; overflow: hidden;
}
.central-logo {
    position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 20; pointer-events: none; text-align: center; mix-blend-mode: normal; color: #94b1c7; width: 100%; transition: opacity 0.4s ease, transform 0.4s ease;
}
.central-logo h1 {
    font-family: 'Palmore', serif; font-size: 52rem; line-height: 0.8; font-weight: 400; letter-spacing: 15px; white-space: nowrap;
}
.hero-container:hover .central-logo { opacity: 0; transform: translate(-50%, -50%) scale(1.1); }
.split-col {
    position: relative; height: 100%; display: flex; align-items: center; justify-content: center; text-decoration: none; overflow: hidden; cursor: pointer; border-right: 1px solid rgba(0,0,0,0.1); background-color: #000;
}
.bg-layer {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-size: cover; background-position: center; z-index: 1; opacity: 0; transition: opacity 1.5s ease-in-out; 
}
.bg-layer.active { opacity: 1; z-index: 2; }
.bg-layer.next { z-index: 1; opacity: 1; }
.col-content {
    position: relative; z-index: 10; opacity: 0; transform: translateY(20px); transition: all var(--transition-speed) ease;
}
.col-content h2 {
    font-family: 'Dream Avenue', serif; font-size: 2.5rem; color: var(--brand-pink); text-transform: uppercase; text-shadow: 0 2px 10px rgba(0,0,0,0.5); font-weight: 300;
}
.split-col:hover .bg-layer { filter: blur(var(--hover-blur)) brightness(0.7); transform: scale(1.05); transition: filter 0.5s ease, transform 0.5s ease; }
.split-col:hover .col-content { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   V. TREŚCI PODSTRON (DESKTOP)
   ========================================================================== */
.subpage { background-color: var(--content-bg); color: var(--brand-blue); }
.content-container { padding: 120px 20px 50px; max-width: 1200px; margin: 0 auto; }

.offer-grid { display: grid; grid-template-columns: 1fr; gap: 20px; padding: 2rem 5%; max-width: 1600px; margin: 0 auto; }
@media (min-width: 768px) { .offer-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; } }
.offer-tile { position: relative; display: block; aspect-ratio: 3 / 4; overflow: hidden; text-decoration: none; cursor: pointer; background-color: #f0f0f0; }
.tile-img { width: 100%; height: 100%; transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1); }
.tile-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.2); transition: background 0.4s ease; z-index: 1; }
.tile-content { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; text-align: center; z-index: 2; padding: 0 15px; }
.tile-content h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-size: 2rem; color: #fff; text-transform: uppercase; letter-spacing: 2px; margin: 0; opacity: 0.9; text-shadow: 0 2px 10px rgba(0,0,0,0.2); transition: letter-spacing 0.5s ease, opacity 0.3s ease; }
.offer-tile:hover .tile-img { transform: scale(1.1); }
.offer-tile:hover .tile-overlay { background: rgba(0, 0, 0, 0.45); }
.offer-tile:hover .tile-content h2 { letter-spacing: 4px; opacity: 1; }

.service-hero { display: grid; grid-template-columns: 1fr; gap: 50px; padding: 4rem 5%; align-items: center; max-width: 1400px; margin: 0 auto; }
@media (min-width: 992px) { .service-hero { grid-template-columns: 1.1fr 0.9fr; padding: 6rem 5%; } }
.moodboard-container { position: relative; width: 100%; height: 500px; }
@media (max-width: 768px) { .moodboard-container { height: 400px; } }
.mood-img { position: absolute; object-fit: cover; box-shadow: 0 15px 40px rgba(0,0,0,0.1); transition: transform 0.5s ease; }
.mood-img.m-1 { width: 70%; height: 75%; top: 0; left: 0; z-index: 1; }
.mood-img.m-2 { width: 50%; height: 60%; bottom: 0; right: 0; z-index: 3; border: 8px solid #fcece9; }
.moodboard-container:hover .mood-img.m-1 { transform: translateY(-10px); }
.moodboard-container:hover .mood-img.m-2 { transform: translateY(10px); }
.mood-text { 
    position: absolute; 
    top: 50px; 
    right: 20px; 
    font-family: 'Playfair Display', serif; 
    font-size: 2.2rem; 
    font-weight: 700; 
    line-height: 1.1; 
    text-align: right; 
    z-index: 2; 
    color: #1a1a1a; 
    background: rgba(255,255,255,0.8); 
    padding: 10px; 
    mix-blend-mode: multiply; 
    display: none !important; /* <--- TA LINIJKA UKRYWA BIAŁY KWADRAT Z NAPISEM */
}
.service-breadcrumbs { font-family: 'TT Drugs', sans-serif; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px; color: #888; margin-bottom: 1.5rem; }
.service-breadcrumbs a { text-decoration: none; color: inherit; transition: color 0.3s; }
.service-breadcrumbs a:hover { color: #000; }
.service-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 400; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.5rem; line-height: 1.1; }
.service-lead { font-family: 'TT Drugs', sans-serif; font-size: 1.1rem; color: #555; margin-bottom: 2rem; font-style: italic; border-left: 2px solid #000; padding-left: 15px; }
.service-desc { font-family: 'TT Drugs', sans-serif; line-height: 1.8; color: #333; font-weight: 300; font-size: 1rem; }

.service-details { padding: 4rem 5%; max-width: 1000px; margin: 0 auto; }
.service-details h3 { font-family: 'Playfair Display', serif; font-size: 2rem; text-transform: uppercase; margin-bottom: 2rem; letter-spacing: 2px; }
.details-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr; gap: 15px; }
@media (min-width: 768px) { .details-list { grid-template-columns: 1fr 1fr; } }
.details-list li { font-family: 'TT Drugs', sans-serif; font-weight: 400; color: #444; padding-left: 25px; position: relative; font-size: 0.95rem; }
.details-list li::before { content: "✦"; position: absolute; left: 0; top: 2px; color: #cbaacb; font-size: 0.8rem; }

.service-vs { background: #121212; color: #fff; padding: 6rem 5%; position: relative; margin-top: 4rem; }
.vs-content { max-width: 1200px; margin: 0 auto; }
.vs-title { display: block; text-align: center; font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5rem); margin-bottom: 4rem; letter-spacing: 5px; font-weight: 400; }
.vs-italic { font-family: 'TT Drugs', sans-serif; font-style: italic; color: #e0e0e0; font-size: 0.7em; padding: 0 10px; }
.vs-grid { display: grid; grid-template-columns: 1fr; gap: 50px; align-items: center; }
@media (min-width: 992px) { .vs-grid { grid-template-columns: 1fr 1fr; } }
.vs-text p { font-family: 'TT Drugs', sans-serif; font-weight: 300; line-height: 1.8; margin-bottom: 2rem; color: #ccc; font-size: 1.05rem; }
.vs-image { text-align: center; }
.vs-image img { max-width: 100%; height: auto; border-radius: 2px; box-shadow: 0 20px 50px rgba(0,0,0,0.6); }

/* -- PORTFOLIO -- */
.portfolio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px 40px; margin-top: 40px; }
.port-img-wrapper { width: 100%; height: 500px; overflow: hidden; margin-bottom: 20px; background-color: #f0f0f0; }
.port-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease, filter 0.6s ease; filter: grayscale(20%); }
.port-cat { font-family: 'TT Drugs', sans-serif; font-size: 0.8rem; opacity: 0.8; text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 5px; }
.port-client { font-family: 'Dream Avenue', serif; font-size: 2.5rem; font-weight: 400; margin: 0; line-height: 1.1; transition: all 0.4s ease; }
.portfolio-item:hover .port-img-wrapper img { transform: scale(1.05); filter: grayscale(0%); }
.portfolio-item:hover .port-client { font-style: italic; padding-left: 10px; }
.portfolio-footer { text-align: center; margin-top: 100px; padding-top: 50px; border-top: 1px solid #ddd; }
.portfolio-cta { display: inline-block; font-family: 'Dream Avenue', serif; font-weight: 600; text-transform: uppercase; text-decoration: none; color: #fff; background-color: var(--brand-blue); padding: 15px 40px; border-radius: 30px; transition: background 0.3s; }
.portfolio-cta:hover { background-color: #333; }


/* -- O NAS -- */
.socials-hero { text-align: center; padding-bottom: 60px; }
.section-tag { font-family: 'TT Drugs', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; margin-bottom: 10px; }
.socials-hero h1, .team-header h1 { font-family: 'Dream Avenue', serif; font-size: 4rem; margin-bottom: 50px; }
.social-icons-wrapper { display: flex; justify-content: center; gap: 60px; align-items: center; }
.social-item { display: flex; flex-direction: column; align-items: center; text-decoration: none; color: var(--brand-blue); transition: transform 0.3s ease; }
.social-item svg { width: 60px; height: 60px; margin-bottom: 15px; stroke: var(--brand-blue); stroke-width: 1px; transition: all 0.3s ease; }
.social-item:hover { transform: translateY(-5px); }
.social-item:hover svg { stroke-width: 2px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.member-img { width: 100%; height: 450px; overflow: hidden; margin-bottom: 25px; background-color: #f5f5f5; }
.member-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.team-member:hover .member-img img { transform: scale(1.03); }
/* -- KONTAKT (DESKTOP) -- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 40px; }
.contact-header h1 { font-family: 'Dream Avenue', serif; font-size: 5rem; margin-bottom: 60px; line-height: 0.9; }
.c-label { font-family: 'TT Drugs', sans-serif; text-transform: uppercase; letter-spacing: 2px; font-size: 0.8rem; opacity: 0.8; margin-bottom: 15px; }
.c-link { display: inline-flex; align-items: center; gap: 15px; text-decoration: none; color: var(--brand-blue); font-family: 'Dream Avenue', serif; font-size: 2.2rem; transition: opacity 0.3s ease, transform 0.3s ease; }
.c-link svg { width: 40px; height: 40px; stroke-width: 1.5px; stroke: var(--brand-blue); }
.c-link:hover { opacity: 0.6; transform: translateX(10px); }
.contact-form-area { padding-top: 20px; }
.form-intro { font-family: 'Dream Avenue', serif; font-size: 2rem; font-style: italic; line-height: 1.4; margin-bottom: 50px; }
.elegant-form { display: flex; flex-direction: column; gap: 40px; }
.input-group { position: relative; width: 100%; }
.input-group input, .input-group textarea {
    width: 100%; padding: 10px 0; font-family: 'TT Drugs', sans-serif; font-size: 1.1rem;
    color: var(--brand-blue); border: none; border-bottom: 1px solid #ccc; background: transparent; outline: none; resize: none;
}
.input-group textarea { min-height: 100px; }
.input-group label { position: absolute; top: 10px; left: 0; font-family: 'TT Drugs', sans-serif; opacity: 0.7; pointer-events: none; transition: 0.3s ease all; }
.input-group input:focus ~ label, .input-group input:not(:placeholder-shown) ~ label,
.input-group textarea:focus ~ label, .input-group textarea:not(:placeholder-shown) ~ label {
    top: -20px; font-size: 0.8rem; font-weight: 600;
}
.submit-btn {
    align-self: flex-start; padding: 15px 50px; background-color: var(--brand-blue); color: #fff;
    border: none; border-radius: 30px; font-family: 'TT Drugs', sans-serif; font-weight: 600;
    text-transform: uppercase; font-size: 0.9rem; cursor: pointer; transition: background 0.3s; margin-top: 10px;
}
.submit-btn:hover { background-color: #333; }

/* ==========================================================================
   VI. CENTRUM MOBILNE (RESPONSYWNOŚĆ)
   ========================================================================== */
@media screen and (max-width: 1024px) { 
    .content-container { width: 100%; padding-left: 20px; padding-right: 20px; box-sizing: border-box; overflow-x: hidden; }
    /* ZMIANA na mobile: 2 kolumny zamiast 3 */
    .hero-container { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; } 
    .central-logo { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 100%; height: auto; display: flex; align-items: center; justify-content: center; z-index: 50; pointer-events: none; mix-blend-mode: normal; }
    .central-logo h1 { writing-mode: horizontal-tb; transform: none; font-size: 24vw; line-height: 1; letter-spacing: -2px; white-space: nowrap; margin: 0; color: #94b1c7; }
    .col-content { opacity: 0; transform: translateY(20px); z-index: 15; width: 100%; padding: 0; display: flex; justify-content: center; align-items: center; }
    .split-col:active .col-content, .split-col:hover .col-content { opacity: 1; transform: translateY(0); }
    .split-col:active .bg-layer, .split-col:hover .bg-layer { filter: brightness(0.4); transform: scale(1.05); }
    .col-content h2 { font-size: 2.8rem; color: var(--brand-pink); text-transform: uppercase; font-weight: 300; text-shadow: 0 4px 20px rgba(0,0,0,0.8); }
    .subpage-logo { width: 90px; top: 20px; left: 20px; }
    .overlay-nav a { font-size: 2.5rem; }
    .footer-columns { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .footer-big-text { font-size: 12vw; }
    .marquee-strip { width: 100%; left: 0; bottom: 0; padding: 15px 0; }
    .cookie-banner { left: 0; bottom: 0; width: 100%; padding: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
    .contact-wrapper { display: flex; flex-direction: column; width: 100%; margin-top: 60px; }
    .contact-info, .contact-form-area { width: 100%; max-width: 100%; padding: 0; margin-bottom: 40px; }
    .elegant-form { width: 100%; }
    .input-group input, .input-group textarea { width: 100%; box-sizing: border-box; max-width: 100%; }
    .contact-header h1 { font-size: 3rem; }
    .team-grid { grid-template-columns: 1fr; }
    .portfolio-grid { grid-template-columns: 1fr; gap: 40px; }
    .social-icons-wrapper { flex-direction: column; gap: 30px; }
}

@media (max-width: 480px) { 
    .menu-btn { padding: 8px 15px; font-size: 0.8rem; top: 20px; right: 20px; }
    .marquee-content span { font-size: 0.7rem; }
    .central-logo h1 { font-size: 24vw; letter-spacing: -3px; }
    .col-content h2 { font-size: 2.2rem; }
}

/* ==========================================================================
   MOBILNA HARMONIJKA (ACCORDION) - CSS
   ========================================================================== */
@media screen and (max-width: 1024px) { 
    .editorial-footer .footer-columns { display: block !important; border-bottom: none !important; padding-bottom: 20px; }
    .editorial-footer .f-col { border-bottom: 1px solid rgba(0,0,0,0.1); text-align: left !important; padding: 0 10px; width: 100% !important; }
    .editorial-footer .f-col h4 { margin: 0; padding: 20px 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; opacity: 1 !important; color: var(--brand-blue); pointer-events: auto; }
    .editorial-footer .f-col h4::after { content: '+'; font-size: 1.5rem; font-weight: 300; transition: transform 0.3s ease; }
    .editorial-footer .f-col ul, .editorial-footer .f-col p:not(.f-muted), .editorial-footer .f-links { max-height: 0; overflow: hidden; opacity: 0; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); margin: 0; }
    .brand-title { display: block !important; margin-bottom: 10px; }
    .editorial-footer .f-col.open h4::after { transform: rotate(45deg); }
    .editorial-footer .f-col.open ul, .editorial-footer .f-col.open p:not(.f-muted), .editorial-footer .f-col.open .f-links { max-height: 500px; opacity: 1; margin-bottom: 20px; }
}

/* --- FIX DLA AUTOCOMPLETE (BIAŁE TŁO) --- */
input:-webkit-autofill, input:-webkit-autofill:hover, input:-webkit-autofill:focus, input:-webkit-autofill:active, textarea:-webkit-autofill, textarea:-webkit-autofill:hover, textarea:-webkit-autofill:focus, textarea:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px transparent inset !important; -webkit-text-fill-color: inherit !important; transition: background-color 5000s ease-in-out 0s;
}
input, textarea { background-color: transparent !important; }