        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        html { overflow-anchor: auto; }
        :root {
            --primary: #0a0f1f; --accent: #f59e0b; --accent-dark: #d97706;
            --text: #0f172a; --text-light: #64748b; --white: #fff; --light-bg: #f8fafc;
            --radius: 16px;
        }
        html { scroll-behavior: smooth; }
        body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

        /* Nav */
        nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 32px; display: flex; align-items: center; justify-content: space-between; background: var(--primary); }
        .nav-logo { font-size: 1.45rem; font-weight: 800; color: white; text-decoration: none; letter-spacing: -0.5px; }
        .nav-logo span { color: var(--accent); }
        .nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
        .nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-weight: 500; font-size: 0.88rem; transition: color 0.2s; }
        .nav-links a:hover { color: var(--accent); }
        .lang-dropdown { position: relative; }
        .lang-btn { display: flex; align-items: center; gap: 7px; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); color: white; padding: 6px 12px; border-radius: 8px; cursor: pointer; font-family: 'Poppins',sans-serif; font-size: 0.82rem; font-weight: 500; }
        .lang-btn:hover { background: rgba(255,255,255,0.2); }
        .lang-btn img { border-radius: 2px; }
        .lang-btn-arrow { font-size: 0.65rem; opacity: 0.7; }
        .lang-menu { display: none; position: absolute; top: calc(100% + 8px); right: 0; background: #1e293b; border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; overflow: hidden; min-width: 140px; box-shadow: 0 8px 28px rgba(0,0,0,0.5); z-index: 2000; }
        .lang-menu.open { display: block; }
        .lang-option { display: flex; align-items: center; gap: 10px; padding: 10px 16px; cursor: pointer; color: rgba(255,255,255,0.8); font-family: 'Poppins',sans-serif; font-size: 0.85rem; font-weight: 500; border: none; background: none; width: 100%; text-align: left; }
        .lang-option:hover { background: rgba(255,255,255,0.08); color: white; }
        .lang-option.active { color: var(--accent); }
        .hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
        .hamburger span { width: 26px; height: 2px; background: white; border-radius: 2px; display: block; }
        .mobile-menu { display: none; position: fixed; inset: 0; background: var(--primary); z-index: 1001; flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
        .mobile-menu.open { display: flex; }
        .mobile-menu a { color: white; text-decoration: none; font-size: 1.6rem; font-weight: 700; }
        .mobile-menu a:hover { color: var(--accent); }
        .mobile-close { position: absolute; top: 24px; right: 28px; font-size: 2rem; color: white; cursor: pointer; background: none; border: none; }
        .lang-mobile-btns { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; }
        .lang-mobile-btn { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); color: white; padding: 10px 18px; border-radius: 8px; font-family: 'Poppins',sans-serif; font-size: 0.95rem; font-weight: 500; cursor: pointer; }
        .lang-mobile-btn:hover, .lang-mobile-btn.active { background: rgba(245,158,11,0.2); color: var(--accent); border-color: var(--accent); }

        /* Hero */
        .landing-hero { min-height: 45vh; background: linear-gradient(160deg, rgba(10,15,30,0.88) 0%, rgba(10,37,69,0.8) 60%, rgba(10,15,30,0.9) 100%), url('/images/YourKrakowPhoto1.jpeg') center/cover; display: flex; align-items: flex-end; padding: 120px 24px 48px; }
        .landing-hero-inner { max-width: 860px; margin: 0 auto; width: 100%; }
        .landing-hero .category-badge { display: inline-block; background: rgba(245,158,11,0.18); color: var(--accent); border: 1px solid rgba(245,158,11,0.3); padding: 4px 14px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 14px; }
        .landing-hero h1 { font-size: clamp(1.6rem, 4vw, 2.8rem); font-weight: 800; color: white; line-height: 1.2; margin-bottom: 12px; }
        .landing-hero-excerpt { font-size: 1rem; color: rgba(255,255,255,0.7); max-width: 600px; }

        /* Content */
        .landing-wrap { max-width: 860px; margin: 0 auto; padding: 48px 24px 80px; }
        .landing-content { line-height: 1.85; font-size: 1.05rem; }
        .landing-content h2 { font-size: 1.5rem; font-weight: 700; margin: 36px 0 16px; }
        .landing-content h3 { font-size: 1.2rem; font-weight: 600; margin: 28px 0 12px; }
        .landing-content p { margin-bottom: 1.3rem; }
        .landing-content img { max-width: 100%; border-radius: 12px; margin: 16px 0; }
        .landing-content blockquote { border-left: 4px solid var(--accent); padding: 12px 20px; margin: 24px 0; background: rgba(245,158,11,0.06); border-radius: 0 8px 8px 0; color: var(--text-light); font-style: italic; }
        .landing-content ul, .landing-content ol { padding-left: 28px; margin-bottom: 1.3rem; }
        .landing-content li { margin-bottom: 6px; }
        .landing-content a { color: var(--accent); }
        .landing-content a:hover { color: var(--accent-dark); }

        /* Map embed */
        .landing-map { margin: 32px 0; border-radius: 12px; overflow: hidden; }
        .landing-map iframe { width: 100%; height: 350px; border: none; }

        /* Related tour cards */
        .related-tour-card {
            background: var(--light-bg); border-radius: 12px; padding: 20px;
            border: 1px solid #e2e8f0; transition: transform 0.2s, box-shadow 0.2s;
            text-decoration: none; color: inherit; display: block;
        }
        .related-tour-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
        .related-tour-card .rtc-badge { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 3px 8px; border-radius: 4px; display: inline-block; margin-bottom: 8px; }
        .related-tour-card .rtc-badge.cart      { background: rgba(245,158,11,0.15); color: #f59e0b; }
        .related-tour-card .rtc-badge.auschwitz { background: rgba(239, 68, 68,0.15); color: #ef4444; }
        .related-tour-card .rtc-badge.saltmine  { background: rgba(56,189,248,0.15); color: #0ea5e9; }
        .related-tour-card h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
        .related-tour-card p { font-size: 0.8rem; color: var(--text-light); margin-bottom: 8px; line-height: 1.5; }
        .related-tour-card .rtc-meta { font-size: 0.75rem; color: var(--text-light); }

        /* ── Inline tour widget — full-bleed image card (synced with blog-post.css) ── */
        .article-tour-widget { margin: 40px 0; }
        .tour-widget-card { position: relative; display: flex; align-items: flex-end; min-height: 320px; border-radius: 18px; overflow: hidden; background-size: cover; background-position: center; background-repeat: no-repeat; box-shadow: 0 10px 30px rgba(10,15,30,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease; }
        .tour-widget-card:hover { transform: translateY(-3px); box-shadow: 0 18px 44px rgba(10,15,30,0.28); }
        .tour-widget-content { position: relative; padding: 28px 32px 32px; color: #fff; width: 100%; }
        .tour-widget-badge { display: inline-flex; align-items: center; gap: 4px; background: var(--accent); color: #0a0f1f; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; white-space: nowrap; max-width: 100%; }
        .tour-widget-card--auschwitz .tour-widget-badge { background: #ef4444; color: #fff; }
        .tour-widget-card--saltmine  .tour-widget-badge { background: #38bdf8; color: #0a0f1f; }
        .tour-widget-title { font-size: 1.55rem; font-weight: 800; line-height: 1.2; color: #fff; margin: 0 0 10px; letter-spacing: -0.01em; text-shadow: 0 2px 8px rgba(0,0,0,0.4); }
        .tour-widget-tagline { font-size: 0.95rem; color: rgba(255,255,255,0.85); margin: 0 0 18px; line-height: 1.5; max-width: 540px; }
        .tour-widget-meta { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.92); font-weight: 500; margin-bottom: 20px; }
        .tour-widget-meta-item { display: inline-flex; align-items: center; gap: 6px; }
        .tour-widget-meta-item svg { opacity: 0.85; }
        .tour-widget-meta-sep { opacity: 0.45; }
        /* Higher-specificity selector — overrides .landing-content a color: var(--accent) */
        .landing-content .tour-widget-btn,
        .tour-widget-btn { display: inline-flex; align-items: center; gap: 6px; background: var(--accent); color: #0a0f1f; font-weight: 800; font-size: 0.95rem; padding: 13px 26px; border-radius: 10px; text-decoration: none; transition: transform 0.18s ease, background 0.18s ease; }
        .landing-content .tour-widget-btn:hover,
        .tour-widget-btn:hover { background: #fbbf24; color: #0a0f1f; transform: translateX(3px); }
        @media (max-width: 640px) {
            .tour-widget-card { min-height: 280px; border-radius: 14px; }
            .tour-widget-content { padding: 22px 22px 26px; }
            .tour-widget-title { font-size: 1.25rem; }
            .tour-widget-tagline { font-size: 0.88rem; margin-bottom: 14px; }
            .tour-widget-meta { flex-direction: column; align-items: flex-start; gap: 6px; font-size: 0.82rem; margin-bottom: 18px; }
            .tour-widget-meta-sep { display: none; }
            .tour-widget-btn { font-size: 0.88rem; padding: 12px 22px; width: 100%; justify-content: center; }
        }
        @media (max-width: 380px) {
            .tour-widget-badge { font-size: 0.65rem; letter-spacing: 0.06em; padding: 4px 10px; }
            .tour-widget-title { font-size: 1.15rem; }
        }

        /* Loading */
        .skel-line { height: 14px; border-radius: 7px; background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%); background-size: 200% 100%; animation: shimmer 1.5s infinite; margin-bottom: 14px; }
        .skel-line.title { height: 36px; width: 70%; margin-bottom: 20px; }
        .skel-line.short { width: 35%; }
        .skel-line.medium { width: 60%; }
        @keyframes shimmer { 0%{background-position:200% 0} 100%{background-position:-200% 0} }

        /* Error */
        .landing-error { text-align: center; padding: 80px 24px; color: var(--text-light); }
        .landing-error a { color: var(--accent); font-weight: 600; text-decoration: none; }

        /* Footer */
        footer { background: var(--primary); color: rgba(255,255,255,0.7); text-align: center; padding: 48px 24px 28px; }
        .footer-logo { font-size: 1.9rem; font-weight: 800; color: white; margin-bottom: 6px; }
        .footer-logo span { color: var(--accent); }
        footer > p { font-size: 0.85rem; margin-bottom: 20px; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 24px; margin-bottom: 24px; }
        .footer-links a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; font-weight: 500; }
        .footer-links a:hover { color: var(--accent); }
        .footer-bottom { font-size: 0.78rem; color: rgba(255,255,255,0.35); border-top: 1px solid rgba(255,255,255,0.08); padding-top: 20px; margin-top: 8px; }

        .wa-float { position: fixed; bottom: 24px; right: 24px; z-index: 900; width: 58px; height: 58px; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; text-decoration: none; }
        .wa-float:hover { transform: scale(1.08); }

        @media (max-width: 768px) { .nav-links { display: none; } .hamburger { display: flex; } nav { padding: 14px 20px; } .landing-wrap { padding: 36px 16px 60px; } }
