.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: linear-gradient(135deg, #FFF8F0, #FFEFD5); }
    .hero-video { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.45; z-index: 0; }
    .hero-container { position: relative; z-index: 2; padding: 100px 40px; max-width: 1400px; margin: 0 auto; width: 100%; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
    .hero-social { position: absolute; top: 2rem; left: 40px; display: flex; align-items: center; gap: 1.5rem; background: rgba(255,255,255,0.7); backdrop-filter: blur(8px); padding: 0.5rem 1.2rem; border-radius: 50px; }
    .hero-social-follow { font-weight: 500; color: var(--soft-text); font-size: 0.85rem; }
    .hero-social-links { display: flex; gap: 0.8rem; }
    .hero-social-link { font-size: 1.1rem; color: var(--soft-text); transition: var(--transition); text-decoration: none; }
    .hero-social-link:hover { color: var(--gold); transform: translateY(-2px); }
    .hero-data { max-width: 500px; }
    
    /* Animacje startowe */
    .animate-title { opacity: 0; transform: translateY(40px); animation: slideUpFade 0.8s ease forwards; animation-delay: 1s; }
    .animate-subtitle { opacity: 0; transform: translateY(-30px); animation: slideDownFade 0.7s ease forwards; animation-delay: 1.3s; }
    .animate-desc { opacity: 0; transform: translateY(30px); animation: slideUpFade 0.7s ease forwards; animation-delay: 1.6s; }
    .animate-buttons { opacity: 0; transform: translateY(30px); animation: slideUpFade 0.7s ease forwards; animation-delay: 1.9s; }
    @keyframes slideUpFade { to { opacity: 1; transform: translateY(0); } }
    @keyframes slideDownFade { to { opacity: 1; transform: translateY(0); } }
    
    .hero-title { font-size: 3.5rem; margin-bottom: 0.5rem; color: var(--dark-text); }
    .hero-title span { color: var(--gold); display: block; }
    .hero-subtitle { font-size: 1.3rem; font-weight: 500; margin-bottom: 0.75rem; color: var(--gold-dark); }
    .hero-description { max-width: 450px; margin-bottom: 2rem; line-height: 1.7; }
    .hero-slogan { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--gold-dark); margin-top: 0.5rem; }
    .hero-info { display: flex; gap: 1.5rem; position: absolute; left: 40px; bottom: 2rem; }
    .info-item { display: flex; align-items: center; gap: 0.6rem; background: rgba(255,255,255,0.8); backdrop-filter: blur(8px); padding: 0.5rem 1.2rem; border-radius: 40px; }
    .info-icon { font-size: 1.3rem; color: var(--gold); }
    .button { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--gold); color: white; padding: 0.8rem 2rem; border-radius: 50px; font-weight: 600; transition: var(--transition); border: none; cursor: pointer; box-shadow: 0 4px 12px rgba(232,168,56,0.3); text-decoration: none; }
    .button:hover { background: var(--gold-dark); transform: translateY(-2px); }

    /* Section */
    .section { padding: 5rem 40px; }
    .container { max-width: 1400px; margin: 0 auto; }
    .section-title { text-align: center; font-size: 2.2rem; margin-bottom: 3rem; }
    .section-title::before { content: attr(data-heading); display: block; font-size: 0.9rem; font-weight: 500; color: var(--gold); letter-spacing: 3px; margin-bottom: 0.5rem; font-family: 'Inter', sans-serif; }

    /* About - nowoczesne pszczelarstwo */
    .about-wrapper { display: flex; align-items: stretch; gap: 3rem; flex-wrap: wrap; }
    .about-img-side { flex: 1; min-width: 250px; display: flex; }
    .about-img-side img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; box-shadow: var(--shadow-sm); min-height: 400px; }
    .about-text-side { flex: 2; display: flex; flex-direction: column; justify-content: center; }
    .signature-name { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; color: var(--dark-text); margin-top: 1rem; }
    .signature-title { font-family: 'Caveat', cursive; font-size: 1.5rem; color: var(--gold-dark); margin-top: 0.25rem; font-weight: 500; }
    .about-stats { display: flex; gap: 1rem; margin: 2rem 0; flex-wrap: wrap; }
    .stat-box { background: var(--white); padding: 1rem; border-radius: 20px; text-align: center; border: 1px solid var(--border-light); flex: 1; min-width: 100px; }
    .stat-number { font-size: 2rem; font-weight: 700; color: var(--gold); font-family: 'Playfair Display', serif; }

    /* Produkty - karuzela */
    .products-section { position: relative; }
    .slider-wrapper { position: relative; display: flex; align-items: center; gap: 1rem; }
    .products-slider { overflow-x: auto; scroll-snap-type: x mandatory; display: flex; gap: 2rem; padding: 1rem 0.5rem 2rem; scroll-behavior: smooth; scrollbar-width: none; }
    .products-slider::-webkit-scrollbar { display: none; }
    .product-card { flex: 0 0 320px; scroll-snap-align: start; background: var(--white); border-radius: 24px; padding: 1.5rem; transition: var(--transition); border: 1px solid var(--border-light); cursor: pointer; }
    .product-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--gold); }
    .product-img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; margin-bottom: 1rem; }
    .product-title { font-size: 1.3rem; margin-bottom: 0.5rem; }
    .slider-arrow { background: var(--gold); color: white; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); flex-shrink: 0; border: none; }
    .slider-arrow:hover { background: var(--gold-dark); transform: scale(1.05); }

    /* Popup produktów */
    .product-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.7); backdrop-filter: blur(5px); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
    .product-popup.active { opacity: 1; visibility: visible; }
    .popup-content { background: var(--white); max-width: 700px; width: 90%; border-radius: 32px; padding: 2rem; max-height: 85vh; overflow-y: auto; position: relative; transform: scale(0.9); transition: transform 0.3s ease; }
    .product-popup.active .popup-content { transform: scale(1); }
    .popup-close { position: sticky; top: 0; float: right; font-size: 1.8rem; cursor: pointer; color: var(--soft-text); transition: var(--transition); background: var(--white); border-radius: 50%; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; z-index: 10; margin-bottom: 1rem; border: none; }
    .popup-close:hover { color: var(--gold); transform: rotate(90deg); background: var(--cream); }
    .popup-img { width: 100%; border-radius: 24px; margin-bottom: 1rem; clear: both; }
    .popup-title { font-size: 1.8rem; margin-bottom: 1rem; color: var(--dark-text); }
    .popup-desc { line-height: 1.7; margin-bottom: 1rem; color: var(--soft-text); }
    .popup-signature { font-family: 'Caveat', cursive; font-size: 1.1rem; color: var(--gold-dark); margin-top: 1rem; text-align: right; }

    /* Galeria popup */
    .gallery-popup { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.85); backdrop-filter: blur(8px); display: flex; justify-content: center; align-items: center; z-index: 2000; opacity: 0; visibility: hidden; transition: var(--transition); }
    .gallery-popup.active { opacity: 1; visibility: visible; }
    .gallery-popup-content { max-width: 90vw; max-height: 90vh; position: relative; transform: scale(0.9); transition: transform 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.2); }
    .gallery-popup.active .gallery-popup-content { transform: scale(1); }
    .gallery-popup-img { width: auto; max-width: 100%; max-height: 85vh; border-radius: 20px; box-shadow: 0 20px 40px rgba(0,0,0,0.3); }
    .gallery-popup-close { position: absolute; top: -20px; right: -20px; background: var(--gold); color: white; width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; cursor: pointer; transition: var(--transition); border: none; }
    .gallery-popup-close:hover { transform: rotate(90deg) scale(1.1); background: var(--gold-dark); }

    /* Features */
    .features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
    .feature-card { background: var(--white); padding: 2rem 1.5rem; border-radius: 24px; text-align: center; transition: var(--transition); border: 1px solid var(--border-light); }
    .feature-card:hover { transform: translateY(-5px); border-color: var(--gold); }
    .feature-icon { font-size: 2.5rem; color: var(--gold); margin-bottom: 1rem; display: inline-block; }

    /* Gallery */
    .gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
    .gallery-item { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; cursor: pointer; }
    .gallery-img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
    .gallery-item:hover .gallery-img { transform: scale(1.05); }
    .gallery-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); padding: 1rem; opacity: 0; transition: var(--transition); }
    .gallery-item:hover .gallery-overlay { opacity: 1; }
    .gallery-overlay span { color: white; font-weight: 500; }

    /* Contact */
    .contact-grid { display: grid; grid-template-columns: 300px 1fr; gap: 3rem; }
    .contact-card { background: var(--white); padding: 1.5rem; border-radius: 20px; text-align: center; margin-bottom: 1rem; border: 1px solid var(--border-light); }
    .contact-icon { font-size: 2rem; color: var(--gold); margin-bottom: 0.5rem; }
    .input-group { position: relative; margin-bottom: 1.5rem; }
    .input-group input, .input-group textarea { width: 100%; padding: 0.9rem 1.2rem; border: 2px solid var(--border-light); border-radius: 16px; background: var(--white); font-family: 'Inter', sans-serif; transition: var(--transition); }
    .input-group input:focus, .input-group textarea:focus { border-color: var(--gold); outline: none; }
    .input-group label { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); background: var(--white); padding: 0 0.3rem; transition: var(--transition); pointer-events: none; color: var(--soft-text); }
    .input-group textarea ~ label { top: 1rem; transform: none; }
    .input-group.focus label { top: 0; transform: translateY(-50%); font-size: 0.7rem; color: var(--gold); }

    /* Footer */
    .footer { background: linear-gradient(135deg, #FFF3E0, #FFE8CC); padding: 3rem 40px 2rem; border-radius: 40px 40px 0 0; margin-top: 2rem; }
    .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; align-items: center; text-align: center; }
    .footer-social a { color: var(--soft-text); font-size: 1.3rem; margin: 0 0.5rem; transition: var(--transition); display: inline-block; text-decoration: none; }
    .footer-social a:hover { color: var(--gold); transform: translateY(-3px); }
    .footer-copy { text-align: center; margin-top: 2.5rem; font-size: 0.75rem; color: var(--soft-text); }

    /* Responsive */
    @media (max-width: 1024px) {
      .sidebar { transform: translateX(-100%); width: 280px; }
      .show-sidebar { transform: translateX(0); }
      .nav-menu { transform: rotate(0deg) translateX(0); width: 100%; position: relative; }
      .nav-list { flex-direction: column; align-items: center; gap: 1.5rem; padding: 2rem; }
      .nav-link { line-height: 1.5; padding: 0.5rem 0; }
      .nav-link.active-link::after, .nav-link:hover::after { bottom: -5px; }
      .nav-close { display: block; }
      .nav-toggle { display: flex; }
      .main { margin-left: 0; }
      .features-grid { grid-template-columns: repeat(2, 1fr); }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .contact-grid { grid-template-columns: 1fr; }
      .hero-info { display: none; }
      .about-wrapper { flex-direction: column; }
      .about-img-side { min-height: 300px; }
    }
    @media (max-width: 768px) {
      .section { padding: 3rem 20px; }
      .features-grid { grid-template-columns: 1fr; }
      .gallery-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 1rem; }
      .hero-title { font-size: 2.2rem; }
      .hero-container { padding: 80px 20px; }
      .hero-social { display: none; }
      .about-stats { flex-direction: column; }
    }
    .reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }