/*
Theme Name: Twój Czas
Theme URI: https://twojczas.pl
Author: Kacper Płuciennik / kiagency.pl
Description: Pracownia Rozwoju Osobistego - Bartłomiej Frukacz
Version: 1.0
License: Private
Text Domain: twojczas
*/


        * { box-sizing: border-box; margin: 0; padding: 0; }
        html { scroll-behavior: smooth; overflow-x: hidden; }
        body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: #faf8f3; color: #1a1a1a; overflow-x: hidden; max-width: 100vw; }

        /* ===== NAVBAR ===== */
        /* złota linia u góry */
        body::before {
            content: ''; display: block; position: fixed; top: 0; left: 0;
            width: 100%; height: 2px; background: #b08d57; z-index: 1100;
        }

        .navbar {
            position: fixed; top: 2px; left: 0; width: 100%;
            height: 72px;
            display: flex; justify-content: space-between;
            align-items: center; padding: 0 48px; z-index: 1000;
            background: rgba(250,248,243,0); /* przezroczyste na hero */
            backdrop-filter: blur(0px);
            border-bottom: 1px solid transparent;
            transition: background 0.5s ease, border-color 0.5s ease,
                        backdrop-filter 0.5s ease, box-shadow 0.5s ease;
        }
        .navbar.scrolled {
            background: rgba(250,248,243,0.92);
            backdrop-filter: blur(12px);
            border-bottom-color: rgba(176,141,87,0.2);
            box-shadow: 0 4px 32px rgba(0,0,0,0.06);
        }

        /* Logo */
        .logo-nav { text-decoration: none; flex-shrink: 0; }
        .logo-nav-inner { display: flex; flex-direction: column; align-items: flex-start; }
        .logo-nav-name {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-weight: 300; font-size: 22px;
            color: #1a1a1a; letter-spacing: 5px;
            text-transform: uppercase; line-height: 1;
            transition: color 0.3s;
        }
        .logo-nav-sep { display: block; width: 100%; height: 1px; background: linear-gradient(to right, #b08d57, transparent); margin: 6px 0; }
        .logo-nav-sub { font-size: 7.5px; color: #b08d57; letter-spacing: 2.5px; text-transform: uppercase; }
        .logo-nav:hover .logo-nav-name { color: #b08d57; }

        /* Linki */
        .nav-links { list-style: none; display: flex; align-items: center; gap: 0; }
        .nav-links li a {
            position: relative; text-decoration: none;
            color: #444; font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 14px; font-weight: 400;
            letter-spacing: 2.5px; text-transform: uppercase;
            padding: 10px 18px; display: block;
            transition: color 0.3s;
            overflow: hidden;
        }
        /* litera po literze — reveal złotą kreską */
        .nav-links li a::before {
            content: ''; position: absolute;
            bottom: 6px; left: 18px; right: 18px;
            height: 1px; background: #b08d57;
            transform: scaleX(0); transform-origin: right;
            transition: transform 0.4s cubic-bezier(.77,0,.175,1);
        }
        .nav-links li a:hover { color: #1a1a1a; }
        .nav-links li a:hover::before { transform: scaleX(1); transform-origin: left; }

        /* małe złote kropki między linkami */
        .nav-dot {
            width: 3px; height: 3px; border-radius: 50%;
            background: #b08d57; opacity: 0.5; flex-shrink: 0;
        }

        /* CTA — outline styl */
        .nav-cta {
            display: inline-flex; align-items: center; gap: 10px;
            border: 1px solid #1e2d4a; color: #1e2d4a;
            text-decoration: none; padding: 11px 24px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 13px; letter-spacing: 2.5px;
            text-transform: uppercase; font-weight: 400;
            border-radius: 1px; white-space: nowrap; flex-shrink: 0;
            position: relative; overflow: hidden;
            transition: color 0.4s ease;
        }
        .nav-cta::before {
            content: ''; position: absolute; inset: 0;
            background: #1e2d4a;
            transform: translateY(100%);
            transition: transform 0.4s cubic-bezier(.77,0,.175,1);
        }
        .nav-cta span { position: relative; z-index: 1; }
        .nav-cta:hover { color: #fff; border-color: #1e2d4a; }
        .nav-cta:hover::before { transform: translateY(0); }

        /* hamburger */
        .hamburger {
            display: none; flex-direction: column;
            justify-content: space-between;
            width: 28px; height: 16px;
            cursor: pointer; background: none; border: none;
            padding: 0; z-index: 1002;
        }
        .hamburger span {
            display: block; width: 100%; height: 1px;
            background: #1a1a1a;
            transition: transform 0.4s, opacity 0.3s, width 0.3s;
            transform-origin: left;
        }
        .hamburger span:nth-child(2) { width: 70%; }
        .hamburger:hover span:nth-child(2) { width: 100%; }
        .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(1px, -1px); }
        .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
        .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(1px, 1px); }

        /* mobile menu — elegancki panel z boku */
        .mobile-menu {
            display: none; position: fixed;
            top: 0; right: 0; width: min(320px, 85vw); height: 100%;
            background: #faf8f3; z-index: 1001;
            flex-direction: column; justify-content: center;
            padding: 60px 48px;
            border-left: 1px solid rgba(176,141,87,0.2);
            box-shadow: -8px 0 40px rgba(0,0,0,0.08);
            opacity: 0; transform: translateX(40px);
            transition: opacity 0.4s ease, transform 0.4s ease;
            pointer-events: none;
        }
        .mobile-menu.open { opacity: 1; transform: translateX(0); pointer-events: all; }
        .mobile-menu a {
            display: block; padding: 16px 0;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 22px; font-weight: 300;
            letter-spacing: 3px; text-transform: uppercase;
            color: #1a1a1a; text-decoration: none;
            border-bottom: 1px solid rgba(0,0,0,0.06);
            transition: color 0.3s, padding-left 0.3s;
        }
        .mobile-menu a:hover { color: #b08d57; padding-left: 8px; }
        .mobile-menu a:last-child { border-bottom: none; }
        .mobile-menu .m-cta {
            margin-top: 36px;
            background: #1e2d4a; color: #fff;
            padding: 14px 0; text-align: center;
            font-size: 13px; letter-spacing: 2.5px;
            border-bottom: none; border-radius: 1px;
        }
        .mobile-menu .m-cta:hover { background: #b08d57; color: #fff; padding-left: 0; }
        /* ciemne tło overlay przy otwartym menu */
        .menu-overlay {
            display: none; position: fixed; inset: 0;
            background: rgba(0,0,0,0.25); z-index: 1000;
            opacity: 0; transition: opacity 0.4s;
            pointer-events: none;
        }
        .menu-overlay.open { opacity: 1; pointer-events: all; }

        /* ===== HERO ===== */
        #hero {
            min-height: 100vh; background: #faf8f3;
            display: flex; flex-direction: column; justify-content: center; align-items: center;
            padding-top: 80px; position: relative; overflow: hidden;
        }
        #hero::before {
            content: ''; position: absolute; inset: 0; pointer-events: none;
            background: radial-gradient(ellipse at 20% 80%, rgba(176,141,87,0.06) 0%, transparent 55%),
                        radial-gradient(ellipse at 80% 20%, rgba(176,141,87,0.04) 0%, transparent 55%);
        }
        .hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; transform: scale(1.1); transform-origin: center; }

        /* Clock row z liniami */
        .hero-clock-row { display: flex; align-items: center; width: min(640px, 88vw); margin-bottom: 36px; }
        .hero-line-group { flex: 1; display: flex; flex-direction: column; gap: 4px; }
        .hline { display: block; height: 1px; }
        .hline-thick { background: #1a1a1a; opacity: 0.85; }
        .hline-thin  { background: #b08d57; opacity: 0.55; }

        /* Zegar 140px */
        #clock-wrap { position: relative; width: 140px; height: 140px; flex-shrink: 0; margin: 0 28px; }
        #face { width: 140px; height: 140px; border-radius: 50%; background: #fff; border: 3px solid #1a1a1a; position: absolute; top: 0; left: 0; box-shadow: 0 0 0 6px rgba(176,141,87,0.18), 0 6px 28px rgba(0,0,0,0.15); }
        .num { position: absolute; font-family: Arial, sans-serif; font-weight: 700; font-size: 11px; color: #222; width: 14px; height: 14px; display: flex; align-items: center; justify-content: center; transform: translate(-50%,-50%); }
        .hand { position: absolute; bottom: 50%; left: 50%; transform-origin: bottom center; border-radius: 2px; will-change: transform; }
        #h-hand { width: 6px;   height: 38px; background: #1a1a1a; margin-left: -3px; }
        #m-hand { width: 4px;   height: 50px; background: #1a1a1a; margin-left: -2px; }
        #s-hand { width: 2px;   height: 58px; background: #cc2222; margin-left: -1px; }
        #ct     { width: 10px; height: 10px; border-radius: 50%; background: #1a1a1a; position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); z-index:10; }
        #ct2    { width: 6px;   height: 6px;  border-radius: 50%; background: #cc2222; position: absolute; top:50%; left:50%; transform: translate(-50%,-50%); z-index:11; }

        /* Tytuł */
        .hero-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 300; font-size: clamp(36px, 9vw, 120px); color: #1a1a1a; letter-spacing: clamp(8px, 2.5vw, 32px); text-transform: uppercase; line-height: 1; margin-bottom: 22px; }

        /* Rotujące napisy */
        .sub-lines { min-height: 80px; text-align: center; margin-bottom: 28px; }
        .sub-slide { opacity: 0; transform: translateY(10px); transition: opacity 0.6s ease, transform 0.6s ease; }
        .sub-slide.active { opacity: 1; transform: translateY(0); }
        .sub-slide.exit   { opacity: 0; transform: translateY(-10px); transition: opacity 0.4s ease, transform 0.4s ease; }
        .sub { font-family: 'Cormorant Garamond', Georgia, serif; font-size: clamp(18px, 3.5vw, 42px); font-weight: 300; color: #999; letter-spacing: clamp(6px, 1.5vw, 14px); text-transform: uppercase; line-height: 1.6; }
        .hero-cta { display: inline-flex; align-items: center; gap: 12px; background: #1e2d4a; color: #fff; text-decoration: none; padding: 18px 56px; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; border-radius: 2px; transition: background 0.3s, box-shadow 0.3s; }
        .hero-cta:hover { background: #b08d57; box-shadow: 0 6px 24px rgba(176,141,87,0.28); }

        /* Strzałka */
        .scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); color: rgba(0,0,0,0.22); font-size: 10px; letter-spacing: 3px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; animation: bob 2.2s ease-in-out infinite; }
        .scroll-hint::after { content: ''; width: 1px; height: 36px; background: rgba(0,0,0,0.18); }
        @keyframes bob { 0%,100%{opacity:.22;transform:translateX(-50%) translateY(0)}50%{opacity:.55;transform:translateX(-50%) translateY(6px)} }

        /* ===== SEKCJE WSPÓLNE ===== */
        .section-label { display: block; font-size: 11px; font-weight: 600; color: #cc2222; letter-spacing: 3.5px; text-transform: uppercase; margin-bottom: 12px; }
        .section-title { font-family: Arial Black, sans-serif; font-weight: 900; font-size: 2.8rem; color: #fff; line-height: 1.1; }
        .red-line { width: 48px; height: 3px; background: #cc2222; margin-top: 20px; }
        .red-line.center { margin-left: auto; margin-right: auto; }
        .reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
        .reveal.visible { opacity: 1; transform: translateY(0); }
        .reveal-d1{transition-delay:.1s}.reveal-d2{transition-delay:.2s}.reveal-d3{transition-delay:.3s}

        /* ===== ANIMACJE HERO — wejście ===== */
        .hero-animate { opacity: 0; transform: translateY(20px); }
        .hero-animate.in {
            animation: heroIn 0.9s cubic-bezier(.22,1,.36,1) forwards;
        }
        @keyframes heroIn {
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== GOLD LINE — rysowanie przy reveal ===== */
        .about-gold-line,
        .kontakt-header::after,
        .obszary-top-line {
            transform-origin: left;
            transform: scaleX(0);
            transition: transform 0.9s cubic-bezier(.22,1,.36,1) 0.3s;
        }
        .reveal.visible .about-gold-line,
        .reveal.visible .obszary-top-line {
            transform: scaleX(1);
        }

        /* ===== KARTY OBSZARÓW — lekki lift ===== */
        .obszary-card {
            transition: transform 0.4s ease, box-shadow 0.4s ease;
        }
        .obszary-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 36px rgba(0,0,0,0.15);
        }

        /* ===== ARTYKUŁY — lift ===== */
        .art-card {
            transition: transform 0.4s ease, background 0.3s;
        }
        .art-card:hover {
            transform: translateY(-4px);
        }

        /* ===== PARALLAX CTA ===== */
        .cta-section-bg {
            will-change: transform;
            transition: transform 0s linear;
        }

        /* ===== SEPARATOR ===== */
        .section-divider {
            display: flex; align-items: center; justify-content: center;
            padding: 0; height: 32px;
            background: #faf8f3;
            position: relative; z-index: 1;
        }
        .section-divider::before,
        .section-divider::after {
            content: '';
            flex: 1; max-width: 120px; height: 1px;
            background: linear-gradient(to var(--dir, right), transparent, rgba(176,141,87,0.5));
        }
        .section-divider::before { --dir: right; }
        .section-divider::after  { --dir: left; }
        .section-divider span {
            width: 6px; height: 6px;
            transform: rotate(45deg);
            background: #b08d57;
            margin: 0 12px; flex-shrink: 0;
            opacity: 0.8;
        }

        /* ===== O MNIE — full screen ===== */
        .about-section {
            min-height: auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
        }

        /* lewa — panel ze zdjęciem w kole */
        .about-photo-panel {
            background: #eee9e0;
            display: flex; align-items: center; justify-content: center;
            padding: 60px 48px;
            position: relative;
        }
        /* dekoracyjny numer w tle */
        .about-photo-num {
            position: absolute; bottom: 24px; right: 28px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 6rem; font-weight: 300; line-height: 1;
            color: rgba(176,141,87,0.12);
            user-select: none; letter-spacing: -4px;
        }
        /* okrągła ramka */
        .about-photo-circle-wrap {
            position: relative;
        }
        /* złoty ring zewnętrzny */
        .about-photo-circle-wrap::before {
            content: '';
            position: absolute;
            inset: -10px;
            border-radius: 50%;
            border: 1px solid rgba(176,141,87,0.45);
        }
        /* drugi, offset ring */
        .about-photo-circle-wrap::after {
            content: '';
            position: absolute;
            inset: -20px;
            border-radius: 50%;
            border: 1px solid rgba(176,141,87,0.18);
        }
        .about-photo-circle {
            width: clamp(220px, 28vw, 380px);
            height: clamp(220px, 28vw, 380px);
            border-radius: 50%;
            overflow: hidden;
            box-shadow: 0 12px 48px rgba(0,0,0,0.18);
            flex-shrink: 0;
        }
        .about-photo-circle img {
            width: 100%; height: 100%;
            object-fit: cover; object-position: top center;
            filter: grayscale(100%);
            transition: filter 0.6s ease, transform 0.6s ease;
            display: block;
        }
        .about-photo-panel:hover .about-photo-circle img {
            filter: grayscale(0%);
            transform: scale(1.04);
        }

        /* prawa — treść */
        .about-content-panel {
            background: #f5f0e8;
            display: flex; flex-direction: column;
            justify-content: center;
            padding: 60px 52px;
            min-height: 100vh;
            position: relative;
        }
        /* dekoracyjny duży napis w tle */
        .about-content-panel::before {
            content: 'O MNIE';
            position: absolute; bottom: 32px; right: 40px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 5rem; font-weight: 300;
            color: rgba(176,141,87,0.07);
            letter-spacing: 10px; text-transform: uppercase;
            user-select: none; pointer-events: none;
        }

        .about-label {
            display: block; font-size: 10px; letter-spacing: 3.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 20px;
        }
        .about-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2.2rem, 3.5vw, 3.8rem);
            line-height: 1.15; color: #1a1a1a; font-weight: 300;
            margin-bottom: 8px;
        }
        .about-heading .gold {
            color: #b08d57; font-style: italic; display: block;
        }
        .about-gold-line {
            width: 48px; height: 1px;
            background: #b08d57; margin: 24px 0 28px;
        }
        .about-body {
            font-size: 1rem; color: #666;
            line-height: 1.9; max-width: 440px;
            margin-bottom: 40px;
        }

        /* statystyki / wyróżniki */
        .about-stats {
            display: grid; grid-template-columns: repeat(3, 1fr);
            gap: 0; border-top: 1px solid rgba(176,141,87,0.2);
            margin-top: 8px;
        }
        .about-stat {
            padding: 24px 0 0;
            border-right: 1px solid rgba(176,141,87,0.2);
        }
        .about-stat:last-child { border-right: none; padding-left: 24px; }
        .about-stat:nth-child(2) { padding-left: 24px; }
        .about-stat-num {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 2.6rem; font-weight: 300; color: #1a1a1a;
            line-height: 1;
        }
        .about-stat-num span { font-size: 1.4rem; color: #b08d57; }
        .about-stat-label {
            font-size: 9px; letter-spacing: 2px;
            text-transform: uppercase; color: #999;
            margin-top: 6px; display: block;
        }

        /* CTA w sekcji */
        .about-cta {
            display: inline-flex; align-items: center; gap: 12px;
            text-decoration: none; color: #1a1a1a;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 13px; letter-spacing: 2.5px;
            text-transform: uppercase; margin-top: 40px;
            position: relative;
        }
        .about-cta::after {
            content: ''; position: absolute; bottom: -4px; left: 0;
            width: 100%; height: 1px; background: #b08d57;
            transform: scaleX(0.3); transform-origin: left;
            transition: transform 0.4s cubic-bezier(.77,0,.175,1);
        }
        .about-cta:hover::after { transform: scaleX(1); }
        .about-cta:hover { color: #b08d57; }

        @media (max-width: 820px) {
            .about-section { grid-template-columns: 1fr; }
            .about-photo-panel { padding: 52px 32px; }
            .about-photo-circle { width: clamp(180px, 55vw, 280px); height: clamp(180px, 55vw, 280px); }
            .about-content-panel { padding: 48px 28px 64px; }
            .about-stats { grid-template-columns: repeat(3,1fr); }
        }

        /* ===== OBSZARY PRACY ===== */
        .obszary-section {
            background: #faf8f3;
            padding: 100px 0;
            min-height: 100vh;
            display: flex; flex-direction: column; justify-content: center;
            overflow: hidden;
        }
        .obszary-inner {
            width: 100%;
            padding: 0 52px;
            box-sizing: border-box;
        }
        .obszary-top {
            display: flex; justify-content: space-between;
            align-items: flex-end; margin-bottom: 56px;
        }
        .obszary-label {
            display: block; font-size: 10px; letter-spacing: 3.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 16px;
        }
        .obszary-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2rem, 3.5vw, 3.2rem);
            font-weight: 300; color: #1a1a1a; line-height: 1.2;
        }
        .obszary-title .gold { color: #b08d57; font-style: italic; }
        .obszary-top-line {
            width: 80px; height: 1px;
            background: rgba(176,141,87,0.4);
            flex-shrink: 0; margin-bottom: 10px;
        }

        /* siatka kart */
        .obszary-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        .obszary-card {
            position: relative; overflow: hidden;
            aspect-ratio: 3 / 4;
            cursor: default;
        }
        /* złota ramka — zawsze widoczna, wzmacniana na hover */
        .obszary-card::before,
        .obszary-card::after {
            content: ''; position: absolute; z-index: 10;
            background: #b08d57;
            transition: transform 0.45s cubic-bezier(.77,0,.175,1);
        }
        .obszary-card::before {
            top: 0; left: 0; width: 100%; height: 3px;
            transform: scaleX(0.3); transform-origin: left;
        }
        .obszary-card::after {
            bottom: 0; left: 0; width: 100%; height: 3px;
            transform: scaleX(0.3); transform-origin: right;
        }
        .obszary-card:hover::before { transform: scaleX(1); }
        .obszary-card:hover::after  { transform: scaleX(1); }
        .obszary-card .card-border-l,
        .obszary-card .card-border-r {
            position: absolute; z-index: 10;
            width: 3px; background: #b08d57;
            top: 0; height: 100%;
            transition: transform 0.45s cubic-bezier(.77,0,.175,1);
        }
        .obszary-card .card-border-l { left: 0;  transform: scaleY(0.3); transform-origin: bottom; }
        .obszary-card .card-border-r { right: 0; transform: scaleY(0.3); transform-origin: top; }
        .obszary-card:hover .card-border-l,
        .obszary-card:hover .card-border-r { transform: scaleY(1); }
        .obszary-card img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover; object-position: center center;
            filter: grayscale(30%);
            transition: transform 0.7s ease, filter 0.5s ease;
        }
        .obszary-card:hover img { transform: scale(1.06); filter: grayscale(0%); }
        .obszary-card-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(
                to bottom,
                rgba(15,10,5,0.05) 0%,
                rgba(15,10,5,0.45) 35%,
                rgba(15,10,5,0.88) 100%
            );
        }
        .obszary-card-body {
            position: absolute; bottom: 0; left: 0; right: 0;
            padding: 28px 24px;
        }
        .obszary-card-num {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 0.75rem; font-weight: 300;
            color: #b08d57; letter-spacing: 2px;
            display: block; margin-bottom: 10px;
        }
        .obszary-card-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.4rem; font-weight: 300;
            color: #fff; line-height: 1.3;
            margin-bottom: 14px;
        }
        .obszary-card-sep {
            width: 24px; height: 1px;
            background: #b08d57; margin-bottom: 12px;
            transition: width 0.4s ease;
        }
        .obszary-card:hover .obszary-card-sep { width: 48px; }
        .obszary-card-desc {
            font-size: 0.84rem; color: rgba(255,255,255,0.72);
            line-height: 1.75;
        }

        @media (max-width: 820px) {
            .obszary-inner { padding: 0 24px; }
            .obszary-grid { grid-template-columns: repeat(2, 1fr); gap: 2px; }
            .obszary-top { flex-direction: column; align-items: flex-start; gap: 16px; }
        }
        @media (max-width: 500px) {
            .obszary-grid { grid-template-columns: 1fr; }
        }

        /* ===== ARTYKUŁY ===== */
        .artykuly-section {
            background: #f5f0e8;
            padding: 0;
            overflow: hidden;
            min-height: 97vh;
            display: flex; flex-direction: column; justify-content: center;
        }
        .artykuly-inner {
            width: 100%;
            padding: 0 52px;
            box-sizing: border-box;
        }

        /* nagłówek sekcji */
        .artykuly-top {
            display: flex; justify-content: space-between;
            align-items: flex-end; margin-bottom: 56px;
            border-bottom: 1px solid rgba(176,141,87,0.25);
            padding-bottom: 28px;
        }
        .artykuly-label {
            display: block; font-size: 10px; letter-spacing: 3.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 14px;
        }
        .artykuly-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2rem, 3vw, 3rem); font-weight: 300;
            color: #1a1a1a; line-height: 1.15;
        }
        .artykuly-link {
            display: inline-flex; align-items: center; gap: 8px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 14px; letter-spacing: 2px;
            text-transform: uppercase; color: #1a1a1a;
            text-decoration: none; white-space: nowrap;
            transition: gap 0.3s, color 0.3s;
            flex-shrink: 0; padding-bottom: 2px;
            border-bottom: 1px solid rgba(176,141,87,0.4);
        }
        .artykuly-link:hover { gap: 14px; color: #b08d57; border-bottom-color: #b08d57; }

        /* 3 karty */
        .artykuly-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2px;
        }
        .art-card {
            cursor: pointer;
            background: #fff;
            display: flex; flex-direction: column;
            transition: background 0.3s;
            position: relative;
        }
        .art-card:hover { background: #faf8f3; }
        .art-card-img-wrap {
            overflow: hidden;
            aspect-ratio: 3/2;
        }
        .art-card-img {
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            filter: grayscale(20%);
            transition: transform 0.6s ease, filter 0.4s ease;
        }
        .art-card:hover .art-card-img { transform: scale(1.05); filter: grayscale(0%); }

        .art-card-body { padding: 28px 28px 32px; flex: 1; display: flex; flex-direction: column; }
        .art-card-tag {
            font-size: 9px; letter-spacing: 2.5px;
            text-transform: uppercase; color: #b08d57;
            margin-bottom: 12px; display: block;
        }
        .art-card-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.35rem; font-weight: 400;
            color: #1a1a1a; line-height: 1.4;
            margin-bottom: 16px; flex: 1;
        }
        .art-card-footer {
            display: flex; align-items: center;
            justify-content: space-between;
            border-top: 1px solid rgba(0,0,0,0.07);
            padding-top: 16px; margin-top: auto;
        }
        .art-card-num {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 0.75rem; color: rgba(0,0,0,0.25);
            letter-spacing: 1px;
        }
        .art-card-arrow {
            font-size: 1rem; color: #b08d57;
            transition: transform 0.3s;
        }
        .art-card:hover .art-card-arrow { transform: translateX(5px); }

        @media (max-width: 860px) {
            .artykuly-inner { padding: 0 24px; }
            .artykuly-grid { grid-template-columns: 1fr; gap: 2px; }
            .artykuly-top { flex-direction: column; align-items: flex-start; gap: 20px; }
        }

        /* ===== CTA CYTAT ===== */
        /* ===== GALERIA ===== */
        .galeria-section {
            background: #faf8f3;
            padding: 52px 0;
            overflow: hidden;
            min-height: 100vh;
            display: flex; flex-direction: column; justify-content: center;
            box-sizing: border-box;
            width: 100%;
            max-width: 100%;
        }
        .galeria-inner {
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
            overflow: hidden;
        }
        .galeria-top {
            padding: 0 52px;
        }
        .galeria-top {
            display: flex; justify-content: space-between;
            align-items: flex-end; margin-bottom: 48px;
        }
        .galeria-label {
            display: block; font-size: 10px; letter-spacing: 3.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 14px;
        }
        .galeria-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2rem, 3vw, 3rem); font-weight: 300;
            color: #1a1a1a; line-height: 1.15;
        }
        .galeria-heading em { color: #b08d57; font-style: italic; }

        /* slider */
        .galeria-slider-wrap {
            width: 100%;
            max-width: 100%;
            overflow-x: scroll;
            scroll-snap-type: x mandatory;
            scroll-behavior: smooth;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
            box-sizing: border-box;
        }
        .galeria-slider-wrap::-webkit-scrollbar { display: none; }
        .galeria-slider {
            display: flex;
            gap: 5px;
            width: max-content;
        }
        .galeria-slide {
            width: calc((100vw - 10px) / 3);
            flex-shrink: 0;
            scroll-snap-align: start;
            position: relative; overflow: hidden;
            aspect-ratio: 16/9;
        }
        .galeria-slide img {
            position: absolute; inset: 0;
            width: 100%; height: 100%;
            object-fit: cover; display: block;
            filter: grayscale(15%);
            transition: transform 0.6s ease, filter 0.4s ease;
        }
        .galeria-slide:hover img { transform: scale(1.04); filter: grayscale(0%); }
        .galeria-slide-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(to top, rgba(10,18,35,0.4) 0%, transparent 50%);
            pointer-events: none;
        }

        /* kontrolki */
        .galeria-controls {
            display: flex; align-items: center;
            justify-content: space-between; margin-top: 24px;
            padding: 0 52px;
        }
        .galeria-dots { display: flex; gap: 8px; }
        .galeria-dot {
            width: 28px; height: 2px; background: rgba(176,141,87,0.3);
            cursor: pointer; transition: background 0.3s;
            border: none; padding: 0;
        }
        .galeria-dot.active { background: #b08d57; }
        .galeria-arrows { display: flex; gap: 8px; }
        .galeria-arrow {
            width: 44px; height: 44px;
            border: 1px solid rgba(176,141,87,0.4);
            background: transparent; cursor: pointer;
            display: flex; align-items: center; justify-content: center;
            color: #1a1a1a; font-size: 1rem;
            transition: background 0.3s, border-color 0.3s, color 0.3s;
        }
        .galeria-arrow:hover { background: #b08d57; border-color: #b08d57; color: #fff; }

        @media (max-width: 820px) {
            .galeria-section { min-height: 100vh; padding: 40px 0; }
            .galeria-top { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 12px; }
            .galeria-controls { padding: 0 24px; }
            .galeria-slide { width: calc((100vw - 5px) / 2); }
        }
        @media (max-width: 480px) {
            .galeria-slide { width: 100vw; }
        }

        /* ===== CYTAT CTA ===== */
        .cta-section {
            position: relative; overflow: hidden;
            min-height: 380px;
            display: flex; align-items: center;
        }
        .cta-section-bg {
            position: absolute; inset: 0;
            background: url('https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
            filter: grayscale(60%);
        }
        .cta-section-overlay {
            position: absolute; inset: 0;
            background: linear-gradient(135deg, rgba(20,14,8,0.82) 0%, rgba(20,14,8,0.55) 100%);
        }
        .cta-inner {
            position: relative; z-index: 2;
            width: 100%; padding: 80px 52px;
            box-sizing: border-box;
            display: flex; align-items: center;
            justify-content: space-between; gap: 60px;
        }
        .cta-quote {
            max-width: 600px;
        }
        .cta-quote-mark {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 5rem; line-height: 0.6;
            color: #b08d57; display: block; margin-bottom: 16px;
        }
        .cta-text {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 300;
            color: #fff; line-height: 1.3;
        }
        .cta-text em { color: #b08d57; font-style: italic; }
        .cta-sep { width: 40px; height: 1px; background: #b08d57; margin-top: 28px; }
        .cta-btn {
            flex-shrink: 0;
            display: inline-flex; align-items: center; gap: 12px;
            border: 1px solid rgba(176,141,87,0.6); color: #fff;
            text-decoration: none; padding: 16px 36px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase;
            transition: background 0.3s, border-color 0.3s;
            white-space: nowrap;
        }
        .cta-btn:hover { background: #b08d57; border-color: #b08d57; }
        @media (max-width: 820px) {
            .cta-inner { flex-direction: column; align-items: flex-start; padding: 60px 28px; gap: 36px; }
        }

        /* ===== KONTAKT ===== */
        .kontakt-section {
            background: #faf8f3;
            min-height: 100vh;
            display: flex; flex-direction: column;
        }

        /* Nagłówek — jasny, elegancki */
        .kontakt-header {
            padding: 72px 52px 52px;
            display: flex; align-items: flex-end;
            justify-content: space-between; gap: 40px;
            border-bottom: 1px solid rgba(176,141,87,0.2);
        }
        .kontakt-header-text {}
        .kontakt-label {
            display: block; font-size: 10px; letter-spacing: 3.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 16px;
        }
        .kontakt-heading {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: clamp(2rem, 3.5vw, 3.6rem); font-weight: 300;
            color: #1a1a1a; line-height: 1.15;
        }
        .kontakt-heading em { color: #b08d57; font-style: italic; display: block; }
        .kontakt-header-cta {
            flex-shrink: 0;
            display: inline-flex; align-items: center; gap: 10px;
            background: #1e2d4a; color: #fff;
            text-decoration: none; padding: 15px 32px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
            transition: background 0.3s;
            white-space: nowrap;
        }
        .kontakt-header-cta:hover { background: #b08d57; }

        /* Siatka — 3 kolumny */
        .kontakt-grid {
            display: grid;
            grid-template-columns: 1fr 1.4fr 1.2fr;
            flex: 1;
        }

        /* Kolumna 1 — dane */
        .kontakt-dane {
            background: #f5f0e8;
            padding: 48px 40px;
            display: flex; flex-direction: column; justify-content: center;
            border-right: 1px solid rgba(176,141,87,0.15);
        }
        .kontakt-dane-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.1rem; font-weight: 300;
            color: #999; letter-spacing: 1px;
            margin-bottom: 28px;
        }
        .kontakt-items { display: flex; flex-direction: column; gap: 20px; }
        .kontakt-item { display: flex; align-items: flex-start; gap: 12px; }
        .ci-icon { flex-shrink: 0; width: 15px; height: 15px; color: #b08d57; margin-top: 3px; }
        .ci-label { font-size: 8px; letter-spacing: 2px; text-transform: uppercase; color: #b08d57; display: block; margin-bottom: 2px; }
        .ci-text { font-size: 0.88rem; color: #555; line-height: 1.5; }
        .ci-text a { color: #555; text-decoration: none; transition: color 0.3s; }
        .ci-text a:hover { color: #b08d57; }
        .kontakt-dane-sep { width: 28px; height: 1px; background: rgba(176,141,87,0.35); margin: 24px 0; }
        .kontakt-godziny { font-size: 0.8rem; color: #999; line-height: 1.9; }
        .kontakt-godziny strong { color: #666; font-weight: 500; display: block; font-size: 9px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }

        /* Kolumna 2 — formularz */
        .kontakt-form-col {
            background: #fff;
            padding: 48px 44px;
            display: flex; flex-direction: column; justify-content: center;
            border-right: 1px solid rgba(0,0,0,0.05);
        }
        .kontakt-form-title {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.6rem; font-weight: 300; color: #1a1a1a;
            margin-bottom: 28px; letter-spacing: 0.5px;
        }
        .kontakt-form { display: flex; flex-direction: column; gap: 0; }
        .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; }
        .form-field { display: flex; flex-direction: column; }
        .form-field input,
        .form-field textarea {
            border: none;
            border-bottom: 1px solid #e0ddd8;
            background: transparent;
            padding: 13px 2px;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1rem; color: #1a1a1a;
            outline: none; transition: border-color 0.3s;
            resize: none; width: 100%;
        }
        .form-field input:focus,
        .form-field textarea:focus { border-bottom-color: #b08d57; }
        .form-field textarea { min-height: 90px; }
        .form-field input::placeholder,
        .form-field textarea::placeholder { color: #bbb; font-size: 0.9rem; font-family: inherit; }
        .form-submit-row { padding-top: 20px; }
        .btn-submit {
            width: 100%; background: #1e2d4a; color: #fff; border: none;
            padding: 15px; cursor: pointer;
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
            display: flex; align-items: center; justify-content: center; gap: 10px;
            position: relative; overflow: hidden; transition: background 0.3s;
        }
        .btn-submit::before {
            content: ''; position: absolute; inset: 0;
            background: #b08d57;
            transform: translateX(-100%);
            transition: transform 0.4s cubic-bezier(.77,0,.175,1);
        }
        .btn-submit span { position: relative; z-index: 1; }
        .btn-submit:hover::before { transform: translateX(0); }

        /* Kolumna 3 — mapa */
        .kontakt-mapa { position: relative; overflow: hidden; }
        .kontakt-mapa iframe {
            position: absolute; inset: 0; width: 100%; height: 100%;
            border: none; filter: grayscale(20%); transition: filter 0.4s;
        }
        .kontakt-mapa:hover iframe { filter: grayscale(0%); }
        .kontakt-mapa-label {
            position: absolute; bottom: 16px; left: 16px;
            background: #fff; padding: 8px 14px;
            font-size: 10px; letter-spacing: 1.5px; text-transform: uppercase;
            color: #1a1a1a; z-index: 2; border-left: 2px solid #b08d57;
        }

        @media (max-width: 960px) {
            .kontakt-header { padding: 52px 24px 40px; flex-direction: column; align-items: flex-start; gap: 28px; }
            .kontakt-grid { grid-template-columns: 1fr; min-height: auto; }
            .kontakt-dane { padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(176,141,87,0.15); }
            .kontakt-form-col { padding: 40px 24px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.05); }
            .kontakt-mapa { height: 300px; }
            .form-row { grid-template-columns: 1fr; gap: 0; }
        }

        @media (max-width: 960px) {
            .kontakt-header { padding: 52px 24px 36px; }
            .kontakt-grid { grid-template-columns: 1fr; min-height: auto; }
            .kontakt-dane { padding: 44px 28px; }
            .kontakt-form-col { padding: 44px 28px; border-left: none; border-top: 1px solid rgba(0,0,0,0.06); }
            .kontakt-mapa { height: 320px; }
        }
        @media (max-width: 540px) {
            .form-row { grid-template-columns: 1fr; }
            .kontakt-header { flex-direction: column; align-items: flex-start; }
        }

        /* Stopka */
        /* ===== NOWA STOPKA ===== */
        .site-footer {
            background: #1e2d4a;
            width: 100%;
        }
        .footer-main {
            width: 100%; box-sizing: border-box;
            padding: 40px 52px 32px;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.4fr;
            gap: 32px;
            align-items: start;
        }
        .footer-col-brand .footer-logo-name {
            font-family: 'Cormorant Garamond', Georgia, serif;
            font-size: 1.2rem; font-weight: 400;
            color: #fff; letter-spacing: 4px;
            text-transform: uppercase;
        }
        .footer-col-brand .footer-logo-sep {
            display: block; width: 28px; height: 1px;
            background: #b08d57; margin: 7px 0;
        }
        .footer-col-brand .footer-logo-sub {
            font-size: 8px; letter-spacing: 2px;
            text-transform: uppercase; color: rgba(255,255,255,0.4);
        }
        .footer-col-brand p {
            margin-top: 12px;
            font-size: 0.78rem; color: rgba(255,255,255,0.45);
            line-height: 1.7; max-width: 260px;
        }
        .footer-col { min-width: 0; }
        .footer-col h4 {
            font-size: 8.5px; letter-spacing: 2.5px;
            text-transform: uppercase; color: #b08d57;
            font-weight: 600; margin-bottom: 14px;
        }
        .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
        .footer-col ul li a {
            font-size: 0.8rem; color: rgba(255,255,255,0.5);
            text-decoration: none; transition: color 0.3s;
        }
        .footer-col ul li a:hover { color: #b08d57; }
        .footer-col-contact .fc-item {
            display: flex; align-items: flex-start; gap: 8px;
            margin-bottom: 10px;
        }
        .footer-col-contact .fc-icon {
            flex-shrink: 0; width: 13px; height: 13px;
            color: #b08d57; margin-top: 2px;
        }
        .footer-col-contact .fc-text {
            font-size: 0.78rem; color: rgba(255,255,255,0.5);
            line-height: 1.45;
        }
        .footer-col-contact .fc-text a {
            color: rgba(255,255,255,0.5); text-decoration: none;
            transition: color 0.3s;
        }
        .footer-col-contact .fc-text a:hover { color: #b08d57; }
        .footer-social {
            display: flex; gap: 8px; margin-top: 16px;
        }
        .footer-social a {
            display: flex; align-items: center; justify-content: center;
            width: 30px; height: 30px; border-radius: 50%;
            border: 1px solid rgba(255,255,255,0.15);
            color: rgba(255,255,255,0.5); text-decoration: none;
            transition: border-color 0.3s, color 0.3s, background 0.3s;
        }
        .footer-social a:hover {
            border-color: #b08d57; color: #b08d57;
        }
        .footer-bottom-bar {
            border-top: 1px solid rgba(255,255,255,0.08);
            padding: 14px 52px;
            display: flex; justify-content: space-between;
            align-items: center; flex-wrap: wrap; gap: 8px;
        }
        .footer-bottom-bar span, .footer-bottom-bar a {
            font-size: 0.7rem; color: rgba(255,255,255,0.3);
            text-decoration: none; transition: color 0.3s;
        }
        .footer-bottom-bar a:hover { color: rgba(255,255,255,0.7); }
        .footer-bottom-links { display: flex; gap: 24px; }
        .footer-agency-link { color: rgba(255,255,255,0.35) !important; }
        .footer-agency-link a { color: rgba(255,255,255,0.55) !important; text-decoration: none; transition: color 0.3s; }
        .footer-agency-link a:hover { color: #b08d57 !important; }

        @media (max-width: 900px) {
            .footer-main {
                grid-template-columns: 1fr 1fr !important;
                gap: 20px 28px;
                padding: 32px 24px 20px;
            }
            .footer-col-brand {
                grid-column: 1 / -1;
                display: grid;
                grid-template-columns: auto 1fr;
                align-items: start;
                gap: 0 20px;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(255,255,255,0.07);
            }
            .footer-col-brand p { display: none; }
            .footer-col-brand .footer-logo-name { grid-row: 1; }
            .footer-col-brand .footer-logo-sep { grid-row: 2; }
            .footer-col-brand .footer-logo-sub { grid-row: 3; }
            .footer-col-brand .footer-social { grid-column: 2; grid-row: 1 / 4; margin-top: 0; align-self: center; }
            .footer-bottom-bar {
                padding: 12px 24px;
                flex-direction: column; gap: 5px; text-align: center;
            }
            .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 10px; }
        }
        @media (max-width: 480px) {
            .footer-col-contact { display: none; }
            .footer-bottom-links { gap: 8px; }
        }

        /* ===== RESPONSYWNOŚĆ ===== */
        @media (max-width: 900px) {
            .opinie-grid { grid-template-columns:1fr; max-width:500px; margin:0 auto; }
        }
        @media (max-width: 820px) {
            /* Navbar mobile */
            .navbar { padding: 0 20px; height: 64px; top: 2px; }
            .nav-links { display: none; }
            .nav-cta  { display: none; }
            .nav-sep  { display: none; }
            .hamburger { display: flex; }
            .mobile-menu { display: flex; }

            /* 1. Hero — zegar większy na mobile, wycentrowany */
            #hero { padding-top: 68px; }
            .hero-clock-row { width: min(400px, 90vw); }
            #clock-wrap { transform: scale(0.9); margin: -8px 16px; }

            /* Sekcje */
            .obszary-section,.artykuly-section { padding: 60px 0; }
            .kontakt-section { padding: 0; }
            .kontakt-grid { grid-template-columns: 1fr; gap: 0; }
            .form-row { grid-template-columns: 1fr; }
            .artykuly-grid { grid-template-columns: 1fr; gap: 2px; }
            .obszary-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
            .about-img-frame { display:none; }

            /* 3. O mnie — wszystko widoczne na mobile */
            .about-section { grid-template-columns: 1fr; }
            .about-photo-panel { padding: 48px 24px; min-height: auto; }
            .about-photo-circle { width: clamp(160px, 50vw, 260px); height: clamp(160px, 50vw, 260px); }
            .about-content-panel { padding: 40px 24px 56px; }
            .about-content-panel::before { font-size: 3rem; }
            .about-stats { grid-template-columns: repeat(3,1fr); }

            /* 5. CTA cytat — wycentrowany */
            .cta-inner { flex-direction: column; align-items: center; text-align: center; padding: 56px 24px; gap: 32px; }
            .cta-sep { margin: 24px auto 0; }

            /* 6. Galeria — obsługiwana przez własne media queries */

            /* 7. Stopka — obsługiwana przez własne media queries w sekcji stopki */
        }

        @media (max-width: 500px) {
            /* 2. Zegar — większy na małych telefonach */
            .hero-clock-row { width: min(320px, 88vw); }
            #clock-wrap { transform: scale(0.85); margin: -10px 10px; }
            .hero-cta { padding: 14px 32px; font-size: 10px; }
            .form-row { grid-template-columns: 1fr; }

            /* skalowanie banera bez wypychania poza ekran */
            .hero-inner { transform: scale(1.02); }

            /* 4. Obszary pracy — 1 kolumna na małych */
            .obszary-grid { grid-template-columns: 1fr; }
        }

        /* ===== COOKIE BANNER (RODO) — responsywność ===== */
        #cookie-banner {
            box-sizing: border-box;
            max-width: 100%;
        }
        #cookie-banner * { box-sizing: border-box; }
        @media (max-width: 700px) {
            #cookie-banner {
                flex-direction: column !important;
                align-items: stretch !important;
                padding: 18px 20px !important;
                gap: 14px !important;
                text-align: center;
            }
            #cookie-banner > div { min-width: 0 !important; width: 100%; }
            #cookie-banner p { font-size: 0.92rem !important; }
            #cookie-banner > div:last-child {
                display: flex !important;
                justify-content: center;
                flex-wrap: wrap;
                gap: 10px !important;
            }
            #cookie-banner button { flex: 1 1 auto; min-width: 130px; }
        }


/* ===================== BLOG / ARTYKUŁ (premium) ===================== */

/* pasek postępu czytania */
.tc-progress {
    position: fixed; top: 0; left: 0; height: 3px; width: 0%;
    background: #b08d57; z-index: 1200; transition: width 0.1s linear;
}

.tc-article { background: #faf8f3; }

/* ===== HERO artykułu ===== */
.tc-article-hero {
    position: relative; min-height: 72vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 140px 24px 80px;
    overflow: hidden;
}
.tc-article-hero-img {
    position: absolute; inset: 0;
    background-size: cover; background-position: center;
    filter: grayscale(35%); transform: scale(1.05);
}
.tc-article-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to bottom, rgba(20,14,8,0.55) 0%, rgba(20,14,8,0.7) 60%, rgba(20,14,8,0.9) 100%);
}
/* gdy brak zdjęcia — jasne tło */
.tc-article-hero.no-img { background: #f5f0e8; min-height: 52vh; }
.tc-article-hero.no-img .tc-article-tag { color: #b08d57; }
.tc-article-hero.no-img .tc-article-title { color: #1a1a1a; }
.tc-article-hero.no-img .tc-article-meta { color: #888; }

.tc-article-hero-inner { position: relative; z-index: 2; max-width: 800px; }
.tc-article-tag {
    display: inline-block; font-size: 11px; letter-spacing: 4px;
    text-transform: uppercase; color: #b08d57; font-weight: 600;
    margin-bottom: 22px;
}
.tc-article-tag::before, .tc-article-tag::after {
    content: ''; display: inline-block; width: 24px; height: 1px;
    background: #b08d57; vertical-align: middle; margin: 0 12px; opacity: 0.6;
}
.tc-article-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5.5vw, 4.4rem); font-weight: 300;
    color: #fff; line-height: 1.12; margin-bottom: 28px;
    letter-spacing: 0.5px;
}
.tc-article-meta {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem; color: rgba(255,255,255,0.75); letter-spacing: 0.5px;
}
.tc-dot { width: 4px; height: 4px; border-radius: 50%; background: #b08d57; }

/* scroll hint pod hero */
.tc-article-scrollhint {
    position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
    z-index: 2; color: rgba(255,255,255,0.5); font-size: 22px;
    animation: tcBob 2s ease-in-out infinite;
}
@keyframes tcBob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ===== TREŚĆ ===== */
.tc-article-body { max-width: 720px; margin: 0 auto; padding: 80px 24px 40px; }

.tc-article-content {
    font-family: 'Georgia', serif;
    font-size: 1.18rem; line-height: 1.95; color: #2e2823;
}
.tc-article-content > p { margin-bottom: 1.7em; }

/* drop cap na pierwszym akapicie */
.tc-article-content > p:first-of-type::first-letter {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.6rem; font-weight: 400; line-height: 0.8;
    float: left; margin: 8px 14px 0 0; color: #b08d57;
}

.tc-article-content h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem; font-weight: 400; color: #1a1a1a;
    margin: 1.9em 0 0.5em; line-height: 1.2; position: relative;
    padding-top: 0.5em;
}
.tc-article-content h2::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 36px; height: 2px; background: #b08d57;
}
.tc-article-content h3 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem; font-weight: 500; color: #1a1a1a;
    margin: 1.5em 0 0.4em;
}
.tc-article-content a { color: #b08d57; text-decoration: none; border-bottom: 1px solid rgba(176,141,87,0.4); transition: border-color 0.3s; }
.tc-article-content a:hover { border-bottom-color: #b08d57; }
.tc-article-content img, .tc-article-content figure img {
    max-width: 100%; height: auto; border-radius: 4px; margin: 2em 0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* cytat — duży złoty znak */
.tc-article-content blockquote,
.tc-article-content .wp-block-quote {
    position: relative; margin: 2.4em 0; padding: 8px 0 8px 48px;
    border: none;
}
.tc-article-content blockquote::before,
.tc-article-content .wp-block-quote::before {
    content: '\201C';
    position: absolute; top: -10px; left: 0;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 4.5rem; line-height: 1; color: #b08d57;
}
.tc-article-content blockquote p,
.tc-article-content .wp-block-quote p {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.7rem; font-style: italic; font-weight: 400;
    color: #3a342e; line-height: 1.45; margin: 0;
}

/* listy ze złotym znacznikiem */
.tc-article-content ul { list-style: none; margin: 0 0 1.7em; padding: 0; }
.tc-article-content ul li {
    position: relative; padding-left: 28px; margin-bottom: 0.7em;
}
.tc-article-content ul li::before {
    content: ''; position: absolute; left: 0; top: 0.7em;
    width: 7px; height: 7px; transform: rotate(45deg);
    background: #b08d57;
}
.tc-article-content ol { margin: 0 0 1.7em 1.4em; }
.tc-article-content ol li { margin-bottom: 0.7em; padding-left: 6px; }

/* ===== PODPIS AUTORA ===== */
.tc-author-box {
    max-width: 720px; margin: 56px auto 0; padding: 36px 0;
    border-top: 1px solid rgba(176,141,87,0.25);
    border-bottom: 1px solid rgba(176,141,87,0.25);
    display: flex; align-items: center; gap: 24px;
}
.tc-author-avatar {
    width: 72px; height: 72px; border-radius: 50%;
    object-fit: cover; flex-shrink: 0; filter: grayscale(100%);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.tc-author-info .tc-author-label { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: #b08d57; font-weight: 600; }
.tc-author-info .tc-author-name { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; color: #1a1a1a; margin: 4px 0 6px; }
.tc-author-info p { font-size: 0.92rem; color: #777; line-height: 1.6; margin: 0; }

/* ===== STOPKA ARTYKUŁU ===== */
.tc-article-footer {
    max-width: 720px; margin: 40px auto 0; padding: 32px 24px 0;
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.tc-back-link {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 15px; letter-spacing: 1.5px; text-transform: uppercase;
    color: #1a1a1a; text-decoration: none; transition: gap 0.3s, color 0.3s;
    display: inline-flex; align-items: center; gap: 8px;
}
.tc-back-link:hover { color: #b08d57; gap: 14px; }
.tc-article-cta {
    display: inline-flex; align-items: center; gap: 10px;
    background: #1e2d4a; color: #fff; text-decoration: none;
    padding: 15px 34px; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 13px; letter-spacing: 2.5px; text-transform: uppercase;
    transition: background 0.3s;
}
.tc-article-cta:hover { background: #b08d57; }

/* ===== ARCHIWUM BLOGA (magazine) ===== */
.tc-blog-archive { background: #faf8f3; padding-top: 130px; min-height: 80vh; }
.tc-blog-header { text-align: center; max-width: 720px; margin: 0 auto 24px; padding: 0 24px; }
.tc-blog-header .artykuly-label::before,
.tc-blog-header .artykuly-label::after {
    content: ''; display: inline-block; width: 28px; height: 1px;
    background: #b08d57; vertical-align: middle; margin: 0 12px; opacity: 0.6;
}
.tc-blog-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.6rem, 6vw, 4.4rem); font-weight: 300;
    color: #1a1a1a; line-height: 1.05; margin: 14px 0 16px;
}
.tc-blog-sub { font-size: 1.1rem; color: #777; line-height: 1.7; font-family: 'Cormorant Garamond', Georgia, serif; font-style: italic; }

/* duży wyróżniony pierwszy wpis */
.tc-featured {
    max-width: 1200px; margin: 48px auto 8px; padding: 0 52px;
}
.tc-featured a {
    display: grid; grid-template-columns: 1.2fr 1fr;
    background: #fff; text-decoration: none; overflow: hidden;
    min-height: 380px; transition: box-shadow 0.4s;
}
.tc-featured a:hover { box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.tc-featured-img { position: relative; overflow: hidden; }
.tc-featured-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: grayscale(20%); transition: transform 0.7s; }
.tc-featured a:hover .tc-featured-img img { transform: scale(1.05); }
.tc-featured-body { padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; }
.tc-featured-body .art-card-tag { margin-bottom: 16px; }
.tc-featured-body h2 { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 2.2rem; font-weight: 400; color: #1a1a1a; line-height: 1.25; margin-bottom: 16px; }
.tc-featured-body p { font-size: 1rem; color: #777; line-height: 1.8; margin-bottom: 24px; }
.tc-featured-body .tc-read { font-family: 'Cormorant Garamond', Georgia, serif; font-size: 14px; letter-spacing: 2px; text-transform: uppercase; color: #b08d57; }

.tc-pagination {
    display: flex; justify-content: center; gap: 8px;
    margin-top: 64px; padding-bottom: 48px;
}
.tc-pagination .page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; padding: 0 14px;
    border: 1px solid rgba(176,141,87,0.35); color: #1a1a1a;
    text-decoration: none; font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1rem; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.tc-pagination .page-numbers.current,
.tc-pagination .page-numbers:hover { background: #b08d57; color: #fff; border-color: #b08d57; }

@media (max-width: 820px) {
    .tc-featured { padding: 0 24px; }
    .tc-featured a { grid-template-columns: 1fr; }
    .tc-featured-img { height: 240px; }
    .tc-featured-body { padding: 36px 28px; }
}
@media (max-width: 700px) {
    .tc-article-hero { padding: 100px 20px 56px; min-height: 56vh; }
    .tc-article-body { padding: 56px 22px 32px; }
    .tc-article-content { font-size: 1.08rem; }
    .tc-article-content > p:first-of-type::first-letter { font-size: 3.6rem; }
    .tc-article-content blockquote p, .tc-article-content .wp-block-quote p { font-size: 1.4rem; }
    .tc-article-footer { flex-direction: column; align-items: stretch; text-align: center; }
    .tc-article-cta, .tc-back-link { justify-content: center; }
    .tc-author-box { flex-direction: column; text-align: center; }
}

/* ===== BLOG ARCHIWUM — siatka 3/2/1 ===== */
.tc-blog-archive .artykuly-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 52px;
    box-sizing: border-box;
}
.tc-blog-archive .artykuly-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.tc-blog-archive .art-card {
    border: 1px solid rgba(176,141,87,0.18);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.3s;
}
.tc-blog-archive .art-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(0,0,0,0.1);
    border-color: rgba(176,141,87,0.4);
}
@media (max-width: 900px) {
    .tc-blog-archive .artykuly-inner { padding: 0 28px; }
    .tc-blog-archive .artykuly-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}
@media (max-width: 600px) {
    .tc-blog-archive .artykuly-inner { padding: 0 20px; }
    .tc-blog-archive .artykuly-grid { grid-template-columns: 1fr; gap: 18px; }
}

/* ===== NAVBAR pełny na podstronach (blog, artykuł) ===== */
body:not(.home) .navbar {
    background: rgba(250,248,243,0.96);
    backdrop-filter: blur(12px);
    border-bottom-color: rgba(176,141,87,0.2);
    box-shadow: 0 2px 24px rgba(0,0,0,0.05);
}
/* dodatkowy odstęp pod menu, żeby treść nie wchodziła pod pasek */
body.blog .tc-blog-archive { padding-top: 150px; }
body.single .tc-article-hero { padding-top: 150px; }

/* ===== Bloki ze zdjęciami w artykule ===== */
.tc-article-content .wp-block-image { margin: 2em 0; }
.tc-article-content .wp-block-image img { border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.tc-article-content .wp-block-image.alignwide {
    width: calc(100% + 120px); max-width: calc(100% + 120px); margin-left: -60px;
}
.tc-article-content figcaption,
.tc-article-content .wp-element-caption {
    text-align: center; font-size: 0.85rem; color: #999;
    font-style: italic; margin-top: 10px;
}
/* media + text */
.tc-article-content .wp-block-media-text {
    margin: 2.4em 0; gap: 32px; align-items: center;
}
.tc-article-content .wp-block-media-text__media img { border-radius: 4px; box-shadow: 0 12px 40px rgba(0,0,0,0.1); }
.tc-article-content .wp-block-media-text__content h3 { margin-top: 0; }
.tc-article-content .wp-block-media-text.alignwide {
    width: calc(100% + 120px); max-width: calc(100% + 120px); margin-left: -60px;
}
/* kolumny */
.tc-article-content .wp-block-columns { gap: 20px; margin: 2.2em 0; }
.tc-article-content .wp-block-columns img { border-radius: 4px; }

@media (max-width: 800px) {
    .tc-article-content .wp-block-image.alignwide,
    .tc-article-content .wp-block-media-text.alignwide {
        width: 100%; max-width: 100%; margin-left: 0;
    }
}

/* ===== Przycisk powrotu na stronę główną ===== */
.tc-home-link {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase;
    color: #1a1a1a; text-decoration: none;
    padding: 10px 22px; border: 1px solid rgba(176,141,87,0.4);
    border-radius: 1px; transition: background 0.3s, color 0.3s, gap 0.3s;
}
.tc-home-link:hover { background: #b08d57; color: #fff; border-color: #b08d57; gap: 14px; }
/* wariant jasny (na ciemnym hero artykułu) */
.tc-home-link.light { color: #fff; border-color: rgba(255,255,255,0.4); }
.tc-home-link.light:hover { background: #b08d57; border-color: #b08d57; color: #fff; }

/* pasek powrotu na blogu */
.tc-blog-back { max-width: 1200px; margin: 0 auto 8px; padding: 0 52px; }
@media (max-width: 600px) { .tc-blog-back { padding: 0 20px; } }

/* ===== Stopka artykułu — 3 przyciski w wierszu ===== */
.tc-article-footer-3 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: nowrap;
}
.tc-article-footer-3 .tc-home-link,
.tc-article-footer-3 .tc-article-cta {
    margin: 4px 0;
    white-space: nowrap;
}
@media (max-width: 700px) {
    .tc-article-footer-3 { flex-wrap: wrap; justify-content: center; }
    .tc-article-footer-3 .tc-home-link,
    .tc-article-footer-3 .tc-article-cta { flex: 1 1 auto; text-align: center; justify-content: center; }
}

/* ===== SLIDER ARTYKUŁÓW (jak galeria) ===== */
.art-slider-wrap {
    width: 100%; overflow-x: scroll;
    scroll-snap-type: x mandatory; scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
    margin-top: 8px;
}
.art-slider-wrap::-webkit-scrollbar { display: none; }
.art-slider { display: flex; gap: 24px; width: max-content; }
.art-slide {
    flex: 0 0 calc((min(1200px, 100vw - 104px) - 48px) / 3);
    scroll-snap-align: start;
}
.art-controls {
    display: flex; align-items: center; justify-content: space-between;
    margin-top: 28px;
}
.art-dots { display: flex; gap: 8px; }
.art-dot {
    width: 28px; height: 2px; background: rgba(176,141,87,0.3);
    border: none; padding: 0; cursor: pointer; transition: background 0.3s;
}
.art-dot.active { background: #b08d57; }
.art-arrows { display: flex; gap: 8px; }

@media (max-width: 900px) {
    .art-slide { flex: 0 0 calc((100vw - 48px - 18px) / 2); }
    .art-slider { gap: 18px; }
}
@media (max-width: 600px) {
    .art-slide { flex: 0 0 calc(100vw - 48px); }
}

/* ===== Przycisk: do góry ===== */
#tc-to-top {
    position: fixed; right: 24px; bottom: 24px; z-index: 1150;
    width: 44px; height: 44px;
    background: #1e2d4a; color: #fff;
    border: 1px solid #b08d57; border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(12px);
    transition: opacity .35s ease, transform .35s ease, background .3s, visibility .35s;
}
#tc-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
#tc-to-top:hover { background: #b08d57; border-color: #b08d57; }
@media (max-width: 600px) {
    #tc-to-top { right: 16px; bottom: 16px; width: 40px; height: 40px; }
}
