/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: #1a1a2e; line-height: 1.6; background: #fefefe; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* === VARIABLES === */
:root {
    --teal: #0d9488;
    --teal-light: #ccfbf1;
    --teal-dark: #0f766e;
    --navy: #1a1a2e;
    --navy-light: #16213e;
    --gold: #d4a574;
    --gold-light: #fef3e2;
    --cream: #faf8f5;
    --coral: #e8594f;
    --white: #ffffff;
    --gray-100: #f7f7f8;
    --gray-200: #e8e8ec;
    --gray-400: #9ca3af;
    --gray-600: #6b7280;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === TYPOGRAPHY === */
h1, h2, h3 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.5rem, 5vw, 4rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -0.01em; }
h3 { font-size: 1.15rem; font-weight: 600; font-family: 'Inter', sans-serif; }
em { font-style: italic; color: var(--teal); }
.section-tag { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.15em; color: var(--teal); margin-bottom: 0.75rem; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header.light { color: var(--white); }
.section-header.light .section-tag { color: var(--gold); }
.section-header.light em { color: var(--gold); }
.section-sub { color: var(--gray-600); margin-top: 1rem; font-size: 1.05rem; }

/* === BUTTONS === */
.btn-primary {
    display: inline-block; padding: 14px 32px; background: var(--teal); color: var(--white);
    border-radius: 100px; font-weight: 600; font-size: 0.95rem; transition: var(--transition);
    border: 2px solid var(--teal);
}
.btn-primary:hover { background: var(--teal-dark); border-color: var(--teal-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,148,136,0.3); }
.btn-primary.large { padding: 18px 40px; font-size: 1.1rem; }
.btn-ghost {
    display: inline-block; padding: 14px 32px; background: transparent; color: var(--white);
    border-radius: 100px; font-weight: 500; font-size: 0.95rem; border: 2px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }
.btn-nav {
    padding: 10px 24px; background: var(--teal); color: var(--white);
    border-radius: 100px; font-weight: 600; font-size: 0.85rem; transition: var(--transition);
}
.btn-nav:hover { background: var(--teal-dark); }

/* === NAV === */
.nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(255,255,255,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(0,0,0,0.06);
    padding: 0 2rem; transition: var(--transition);
}
.nav-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo-img { height: 40px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2rem; font-size: 0.9rem; font-weight: 500; color: var(--gray-600); }
.nav-links a:hover { color: var(--teal); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: var(--transition); }
.mobile-menu { display: none; position: fixed; top: 72px; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; flex-direction: column; gap: 1rem; border-bottom: 1px solid var(--gray-200); z-index: 99; font-weight: 500; }
.mobile-menu.open { display: flex; }

/* === HERO === */
.hero {
    min-height: 100vh; display: flex; align-items: center; position: relative;
    padding: 120px 2rem 80px; overflow: hidden;
}
.hero-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, #0d3b66 100%);
    z-index: 0;
}
.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(circle at 70% 50%, rgba(13,148,136,0.15) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 600px; color: var(--white); }
.hero-tag { font-size: 0.9rem; font-weight: 500; margin-bottom: 1.5rem; opacity: 0.9; }
.hero h1 { color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { color: var(--gold); }
.hero-sub { font-size: 1.1rem; line-height: 1.7; opacity: 0.85; max-width: 500px; margin-bottom: 2rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.25rem; }
.hero-image {
    position: absolute; right: 8%; top: 50%; transform: translateY(-50%); z-index: 1;
    width: 340px; animation: float 6s ease-in-out infinite;
}
.hero-image img { filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4)); }

@keyframes float {
    0%, 100% { transform: translateY(-50%) rotate(-2deg); }
    50% { transform: translateY(-53%) rotate(2deg); }
}

/* === BRANDS STRIP === */
.brands-strip {
    background: var(--teal); color: var(--white); padding: 1rem 2rem;
    text-align: center; font-size: 0.85rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
}
.brands-inner { display: flex; justify-content: center; align-items: center; gap: 1.5rem; flex-wrap: wrap; }
.dot { opacity: 0.4; }

/* === PRODUCTS === */
.products { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.product-card {
    background: var(--white); border-radius: var(--radius); padding: 1.5rem;
    border: 1px solid var(--gray-200); transition: var(--transition); position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--teal); }
.product-card.featured { border-color: var(--teal); background: linear-gradient(180deg, var(--teal-light) 0%, var(--white) 40%); }
.badge {
    position: absolute; top: 1rem; right: 1rem; padding: 4px 12px;
    border-radius: 100px; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}
.badge.bestseller { background: var(--teal); color: var(--white); }
.badge.novinka { background: var(--coral); color: var(--white); }
.product-img { display: flex; justify-content: center; padding: 1rem 0 1.5rem; height: 180px; align-items: center; }
.product-img img { max-height: 160px; width: auto; object-fit: contain; transition: var(--transition); }
.product-card:hover .product-img img { transform: scale(1.05) rotate(-2deg); }
.product-card h3 { margin-bottom: 0.5rem; color: var(--navy); }
.product-desc { font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; margin-bottom: 1rem; }
.product-footer { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.price { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700; color: var(--teal-dark); }
.weight { font-size: 0.8rem; color: var(--gray-400); }
.products-cta { text-align: center; margin-top: 3rem; }

/* === STORY === */
.story {
    background: var(--cream); padding: 6rem 2rem;
}
.story-content { max-width: 800px; margin: 0 auto; }
.story h2 { margin-bottom: 1rem; }
.story-lead { font-size: 1.2rem; color: var(--teal-dark); font-weight: 500; margin-bottom: 2rem; }
.story-text p { margin-bottom: 1.25rem; color: var(--gray-600); font-size: 1.02rem; line-height: 1.8; }
.story-facts { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; margin-top: 2.5rem; }
.fact {
    display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem;
    background: var(--white); border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem;
    border: 1px solid var(--gray-200);
}
.fact-icon { font-size: 1.3rem; }

/* === WHY SARDINES === */
.why {
    background: var(--navy); padding: 6rem 2rem; color: var(--white);
}
.why-grid {
    max-width: 1100px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem;
}
.why-card {
    padding: 2rem; border-radius: var(--radius);
    background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.why-card:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.15); transform: translateY(-2px); }
.why-icon { font-size: 2rem; margin-bottom: 1rem; }
.why-card h3 { color: var(--gold); margin-bottom: 0.5rem; }
.why-card p { color: rgba(255,255,255,0.7); font-size: 0.92rem; line-height: 1.6; }

/* === FINAL CTA === */
.final-cta {
    padding: 6rem 2rem; text-align: center;
    background: linear-gradient(135deg, var(--teal-light) 0%, var(--gold-light) 100%);
}
.cta-content { max-width: 600px; margin: 0 auto; }
.cta-content h2 { margin-bottom: 1rem; }
.cta-content p { color: var(--gray-600); font-size: 1.1rem; margin-bottom: 2rem; }

/* === FOOTER === */
.footer {
    background: var(--navy); color: rgba(255,255,255,0.7); padding: 4rem 2rem 2rem;
}
.footer-inner { max-width: 1000px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-logo { height: 36px; width: auto; margin-bottom: 1rem; filter: brightness(10); }
.footer-brand p { font-size: 0.9rem; max-width: 300px; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.5rem; }
.footer-links a { font-size: 0.88rem; transition: var(--transition); }
.footer-links a:hover { color: var(--teal); }
.footer-bottom { max-width: 1000px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; font-size: 0.8rem; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    .hero { flex-direction: column; text-align: center; padding-top: 100px; min-height: auto; }
    .hero-content { max-width: 100%; }
    .hero-sub { max-width: 100%; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; gap: 1.5rem; }
    .hero-image { position: relative; right: auto; top: auto; transform: none; width: 220px; margin: 2rem auto 0; }
    .hero-image img { animation: none; }
    .product-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
    .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
    .why-grid { grid-template-columns: 1fr; }
    .story-facts { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 0.75rem; align-items: center; }
    .stat { align-items: center; }
    .product-grid { grid-template-columns: 1fr; }
    .story-facts { grid-template-columns: 1fr; }
}
