/* Generated from legacy/meet-the-owner.html by scripts/build-legacy-styles.mjs. */
/* Critical Hero Section CSS for LCP optimization */
        .owner-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-desktop.webp');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            margin-top: 88px;
        }

        /* Fallback for browsers that don't support WebP */
        .no-webp .owner-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-desktop.jpg');
        }

        /* Responsive hero backgrounds */
        @media (max-width: 1366px) {
            .owner-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-tablet.webp');
            }
            .no-webp .owner-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-tablet.jpg');
            }
        }

        @media (max-width: 768px) {
            .owner-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-mobile.webp');
                padding: 100px 0 60px;
            }
            .no-webp .owner-hero {
                background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/backgrounds/hero-background-mobile.jpg');
            }
        }

/* Page-specific styles */

        /* Hero Section */
        .owner-hero .container {
            max-width: 1000px;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 50px;
            align-items: center;
        }

        .hero-image {
            text-align: center;
        }

        .hero-image img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            border: 4px solid white;
        }

        .hero-text h1 {
            font-size: 48px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .hero-text h2 {
            font-size: 28px;
            margin-bottom: 10px;
            color: var(--brand-red);
            font-weight: 600;
        }

        .hero-subtitle {
            font-size: 20px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .hero-credentials {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .credential-badge {
            background: rgba(255, 255, 255, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 25px;
            padding: 10px 20px;
            display: flex;
            align-items: center;
            gap: 10px;
            backdrop-filter: blur(5px);
        }

        .credential-badge i {
            color: var(--brand-red);
            font-size: 18px;
        }

        .credential-badge span {
            font-weight: 500;
            font-size: 14px;
        }

        /* Personal Story Section */
        .personal-story {
            padding: 80px 0;
            background: white;
        }

        .personal-story h2 {
            text-align: center;
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 50px;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .story-text .lead {
            font-size: 20px;
            font-weight: 500;
            color: var(--gray-dark);
            margin-bottom: 25px;
            line-height: 1.6;
        }

        .story-text p {
            color: var(--gray-medium);
            font-size: 16px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .story-highlights {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .highlight-card {
            background: var(--gray-light);
            padding: 25px;
            border-radius: 15px;
            text-align: center;
        }

        .highlight-card i {
            font-size: 32px;
            color: var(--brand-red);
            margin-bottom: 15px;
        }

        .highlight-card h3 {
            color: var(--gray-dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .highlight-card p {
            color: var(--gray-medium);
            font-size: 14px;
            line-height: 1.5;
        }

        /* Values Section */
        .values-section {
            padding: 80px 0;
            background: var(--gray-light);
        }

        .values-section h2 {
            text-align: center;
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 25px;
        }

        .section-intro {
            text-align: center;
            color: var(--gray-medium);
            font-size: 18px;
            line-height: 1.6;
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .values-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .value-item {
            background: white;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow-light);
            transition: var(--transition-normal);
        }

        .value-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-medium);
        }

        .value-icon {
            width: 80px;
            height: 80px;
            background: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
        }

        .value-icon i {
            font-size: 32px;
            color: white;
        }

        .value-item h3 {
            color: var(--gray-dark);
            margin-bottom: 15px;
            font-size: 20px;
        }

        .value-item p {
            color: var(--gray-medium);
            line-height: 1.6;
        }

        /* Experience Timeline */
        .experience-section {
            padding: 80px 0;
            background: white;
        }

        .experience-section h2 {
            text-align: center;
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 25px;
        }

        .timeline {
            max-width: 800px;
            margin: 50px auto 0;
            position: relative;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--brand-red);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 40px;
            padding-left: 80px;
        }

        .timeline-marker {
            position: absolute;
            left: 15px;
            top: 0;
            width: 60px;
            height: 60px;
            background: var(--brand-red);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 4px solid white;
            box-shadow: var(--shadow-light);
        }

        .timeline-marker i {
            color: white;
            font-size: 20px;
        }

        .timeline-content h3 {
            color: var(--gray-dark);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .timeline-content p {
            color: var(--gray-medium);
            line-height: 1.6;
        }

        /* Contact CTA Section */
        .contact-cta {
            padding: 80px 0;
            background: var(--gray-light);
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 60px;
            align-items: start;
        }

        .contact-text h2 {
            color: var(--gray-dark);
            font-size: 36px;
            margin-bottom: 25px;
        }

        .contact-text > p {
            color: var(--gray-medium);
            font-size: 18px;
            line-height: 1.6;
            margin-bottom: 40px;
        }

        .direct-contact h3 {
            color: var(--gray-dark);
            margin-bottom: 20px;
            font-size: 22px;
        }

        .phone-numbers {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 25px;
        }

        .personal-phone,
        .business-phone {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 15px;
            background: white;
            border-radius: 10px;
            text-decoration: none;
            box-shadow: var(--shadow-light);
            transition: var(--transition-normal);
        }

        .personal-phone:hover,
        .business-phone:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-medium);
            text-decoration: none;
        }

        .personal-phone i,
        .business-phone i {
            font-size: 24px;
            color: var(--brand-red);
        }

        .personal-phone .label,
        .business-phone .label {
            font-size: 14px;
            color: var(--gray-medium);
            font-weight: 500;
        }

        .personal-phone .number,
        .business-phone .number {
            font-size: 18px;
            color: var(--gray-dark);
            font-weight: 600;
        }

        .email-contact a {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--brand-red);
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
        }

        .email-contact a:hover {
            text-decoration: underline;
        }

        .cta-buttons {
            text-align: center;
            background: white;
            padding: 40px 30px;
            border-radius: 15px;
            box-shadow: var(--shadow-medium);
        }

        .cta-button.primary {
            display: inline-block;
            background: var(--brand-red);
            color: white;
            padding: 15px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 15px;
            transition: var(--transition-normal);
        }

        .cta-button.primary:hover {
            background: var(--brand-red-hover);
            transform: translateY(-2px);
            text-decoration: none;
            color: white;
        }

        .cta-note {
            color: var(--gray-medium);
            font-size: 14px;
            margin-bottom: 30px;
            font-style: italic;
        }

        .office-info h4 {
            color: var(--gray-dark);
            margin-bottom: 10px;
            font-size: 18px;
        }

        .office-info p {
            color: var(--gray-medium);
            line-height: 1.5;
        }

        .office-info i {
            color: var(--brand-red);
            margin-right: 8px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .owner-hero {
                padding: 80px 0 60px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 30px;
                text-align: center;
            }

            .hero-text h1 {
                font-size: 36px;
            }

            .hero-text h2 {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 18px;
            }

            .hero-credentials {
                justify-content: center;
            }

            .personal-story,
            .values-section,
            .experience-section,
            .contact-cta {
                padding: 60px 0;
            }

            .personal-story h2,
            .values-section h2,
            .experience-section h2,
            .contact-text h2 {
                font-size: 28px;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .timeline::before {
                left: 20px;
            }

            .timeline-item {
                padding-left: 70px;
            }

            .timeline-marker {
                left: 5px;
                width: 50px;
                height: 50px;
            }

            .phone-numbers {
                gap: 10px;
            }

            .personal-phone,
            .business-phone {
                padding: 12px;
            }
        }

        @media (max-width: 480px) {
            .hero-image img {
                max-width: 250px;
            }

            .values-grid {
                grid-template-columns: 1fr;
            }

            .credential-badge {
                padding: 8px 15px;
            }

            .credential-badge span {
                font-size: 13px;
            }
        }
