/* =================================================================
   Page: Our Story (source: resources/views/home/our-story.blade.php)
   Extracted from inline <style> block(s).
   ================================================================= */

        .story-page {
            background: #fff;
            position: relative;
            z-index: 1;
        }

        .story-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
            gap: 60px;
        }

        /* Left sidebar - navigation */
        .story-sidebar {
            width: 280px;
            flex-shrink: 0;
            position: sticky;
            top: 100px;
            height: fit-content;
            z-index: 10;
            /* Keep below navbar (typically 1000+) */
        }

        .story-sidebar h2 {
            font-family: var(--berr-font-display);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 25px;
            color: #1a1a1a;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .story-nav-item {
            padding: 14px 0;
            border-bottom: 1px solid #eee;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .story-nav-item:hover {
            color: #c5a47e;
        }

        .story-nav-item.active {
            color: #c5a47e;
        }

        .story-nav-item.active .story-nav-title {
            font-weight: 600;
        }

        .story-nav-title {
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            margin-bottom: 4px;
            color: inherit;
        }

        .story-nav-desc {
            font-size: 0.8rem;
            color: #888;
        }

        /* Main content area */
        .story-content {
            flex: 1;
            max-width: 720px;
        }

        .content-section {
            margin-bottom: 80px;
            scroll-margin-top: 120px;
        }

        .section-inner {
            padding: 45px;
            background: var(--berr-gold-faint);
            border-radius: 0;
            border-top: 2px solid var(--berr-gold);
        }

        .section-inner h1 {
            font-family: var(--berr-font-display);
            font-size: 2.2rem;
            color: #1a1a1a;
            margin-bottom: 8px;
        }

        .section-inner h2 {
            font-family: var(--berr-font-display);
            font-size: 1.6rem;
            color: #1a1a1a;
            margin-bottom: 20px;
        }

        .section-inner .subtitle {
            font-family: 'Jost', sans-serif;
            font-size: 1.1rem;
            color: #c5a47e;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-inner h3 {
            font-family: var(--berr-font-display);
            font-size: 1.2rem;
            margin: 25px 0 12px 0;
            color: #1a1a1a;
        }

        .section-inner p {
            font-family: 'Jost', sans-serif;
            font-size: 1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 15px;
        }

        .section-inner ul {
            padding-left: 20px;
            margin-bottom: 20px;
        }

        .section-inner li {
            font-family: 'Jost', sans-serif;
            margin-bottom: 10px;
            line-height: 1.7;
            color: #555;
        }

        .highlight-box {
            background: var(--berr-surface);
            border: 1px solid var(--berr-gold-light);
            padding: 20px 25px;
            margin: 25px 0;
            font-style: italic;
        }

        .highlight-box p {
            margin-bottom: 0;
            color: #666;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }

        .product-card {
            background: #fff;
            border-radius: 8px;
            padding: 25px 20px;
            text-align: center;
            border: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
        }

        .product-card h3 {
            color: #c5a47e;
            margin: 0 0 10px 0;
            font-size: 1.1rem;
        }

        .product-card p {
            font-size: 0.9rem;
            margin: 0;
        }

        /* Timeline */
        .timeline {
            margin-top: 20px;
        }

        .timeline-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
        }

        .timeline-year {
            font-weight: 600;
            color: #c5a47e;
            min-width: 50px;
        }

        /* Mobile header - hidden on desktop */
        .mobile-section-header {
            display: none;
        }

        /* Back link */
        .back-link {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #888;
            text-decoration: none;
            font-size: 0.9rem;
            margin-bottom: 30px;
            transition: color 0.3s;
        }

        .back-link:hover {
            color: #c5a47e;
        }

        /* Mobile Responsive */
        @media (max-width: 992px) {
            .story-container {
                flex-direction: column;
                padding: 30px 15px;
                gap: 0;
            }

            .story-sidebar {
                display: none;
            }

            .story-content {
                max-width: 100%;
            }

            .content-section {
                margin-bottom: 40px;
            }

            .mobile-section-header {
                display: block;
                background: #fff;
                padding: 20px;
                border-radius: 8px 8px 0 0;
                border-bottom: 2px solid #c5a47e;
            }

            .mobile-section-header .story-nav-title {
                font-size: 1.2rem;
                font-weight: 600;
                color: #c5a47e;
                margin-bottom: 4px;
            }

            .mobile-section-header .story-nav-desc {
                font-size: 0.85rem;
                color: #888;
            }

            .section-inner {
                padding: 25px 20px;
                border-radius: 0 0 8px 8px;
                border-left: none;
                border-top: none;
            }

            .section-inner h1 {
                font-size: 1.8rem;
            }

            .section-inner h2 {
                font-size: 1.4rem;
            }

            .product-grid {
                grid-template-columns: 1fr;
            }
        }
    
