:root {
            --primary-color: #dc3545;
            --secondary-color: #6c757d;
            --accent-color: #ffc107;
            --dark-color: #212529;
            --light-color: #f8f9fa;
        }
        
        body {
            font-family: 'Roboto Condensed', sans-serif;
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Josefin Sans', sans-serif;
            font-weight: 700;
        }
        
        .display-1, .display-2, .display-3, .display-4 {
            font-family: 'Josefin Sans', sans-serif;
        }
        
        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 100vh;
            min-height: 100svh;
            display: flex;
            align-items: center;
            overflow: hidden;
            background: #1a1a1a;
        }

        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
            overflow: hidden;
            background: #1a1a1a;
        }

        .hero-lcp-picture {
            position: absolute;
            inset: 0;
            z-index: 1;
            margin: 0;
            transition: opacity .7s ease;
        }

        .hero-lcp-img,
        .hero-video-background {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            max-width: none;
            object-fit: cover;
            object-position: center center;
            display: block;
        }

        .hero-video-background {
            z-index: 2;
            opacity: 0;
            transition: opacity .65s ease;
            pointer-events: none;
        }

        .hero-video-background.is-ready {
            opacity: 1;
        }

        .hero-lcp-picture.is-faded {
            opacity: 0;
            pointer-events: none;
        }

        /* Smart video preloader */
        .hero-video-loader {
            position: absolute;
            inset: 0;
            z-index: 3;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(26, 26, 26, 0.35), rgba(139, 0, 0, 0.28));
            backdrop-filter: blur(2px);
            -webkit-backdrop-filter: blur(2px);
            opacity: 0;
            visibility: hidden;
            transition: opacity .35s ease, visibility .35s ease;
            pointer-events: none;
        }

        .hero-video-loader.is-visible {
            opacity: 1;
            visibility: visible;
        }

        .hero-video-loader.is-done {
            opacity: 0;
            visibility: hidden;
        }

        .hero-video-loader__inner {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.25rem;
            border-radius: 1rem;
            background: rgba(0, 0, 0, 0.28);
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        }

        .hero-video-loader__svg {
            display: block;
            overflow: visible;
        }

        .hero-video-loader__track {
            stroke: rgba(255, 255, 255, 0.22);
        }

        .hero-video-loader__arc {
            stroke: #ffc107;
            stroke-dasharray: 60 130;
            transform-origin: 40px 40px;
            animation: lmHeroSpin 1s linear infinite;
        }

        .hero-video-loader__mark path {
            stroke: #fff;
        }

        .hero-video-loader__text {
            color: #fff;
            font-family: 'Roboto Condensed', sans-serif;
            font-size: 0.85rem;
            letter-spacing: 0.06em;
            text-transform: uppercase;
            text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
        }

        @keyframes lmHeroSpin {
            to { transform: rotate(360deg); }
        }

        @media (prefers-reduced-motion: reduce) {
            .hero-video-loader__arc {
                animation: none;
                stroke-dasharray: 188;
            }
        }

        /* Mobile / small screens: poster only, no video loader */
        @media (max-width: 767.98px) {
            .hero-video-loader,
            .hero-video-background {
                display: none !important;
            }
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.28);
            z-index: 4;
        }
        
        .hero-content {
            position: relative;
            z-index: 5;
            color: white;
            padding-top: 80px;
            padding-bottom: 40px;
        }
        
        .hero-badge {
            display: inline-block;
            padding: 10px 25px;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(10px);
            border-radius: 50px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }
        
        .hero-title {
            font-size: 4.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            text-shadow: 3px 3px 15px rgba(0,0,0,0.7), 0 0 30px rgba(0,0,0,0.5);
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.5rem;
            margin-bottom: 40px;
            opacity: 0.98;
            line-height: 1.6;
            text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
        }
        
        .hero-cta {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .btn-hero {
            padding: 15px 40px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
        }
        
        .btn-hero-primary {
            background: white;
            color: var(--primary-color);
            border: 2px solid white;
        }
        
        .btn-hero-outline {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        @media (hover: hover) and (pointer: fine) {
            .btn-hero-primary:hover {
                background: transparent;
                color: white;
                transform: translateY(-3px);
                box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            }
            .btn-hero-outline:hover {
                background: white;
                color: var(--primary-color);
                transform: translateY(-3px);
            }
            .service-card:hover,
            .why-item:hover {
                transform: translateY(-5px);
            }
        }
        
        /* Services Section */
        .services-section {
            padding: 100px 0;
            background: var(--light-color);
        }
        
        .service-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #e9ecef;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        @media (hover: hover) and (pointer: fine) {
            .service-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 15px 40px rgba(0,0,0,0.15);
            }
        }
        
        .service-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary-color), #e74c3c);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.5rem;
        }
        
        .service-card h3 {
            color: var(--dark-color);
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        .service-card p {
            color: var(--secondary-color);
            line-height: 1.8;
            margin-bottom: 25px;
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background: white;
        }
        
        .about-images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            height: 100%;
            min-height: 300px;
        }
        
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            aspect-ratio: 4/3;
            width: 100%;
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
            display: block;
        }
        
        .about-image-large {
            grid-column: 1 / -1;
            aspect-ratio: 16/9;
        }
        
        .about-content h2 {
            color: var(--dark-color);
            margin-bottom: 30px;
        }
        
        .about-content p {
            color: var(--secondary-color);
            line-height: 1.8;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .feature-list {
            list-style: none;
            padding: 0;
        }
        
        .feature-list li {
            padding: 15px 0;
            border-bottom: 1px solid #e9ecef;
            color: var(--secondary-color);
            font-size: 1.1rem;
        }
        
        .feature-list li:last-child {
            border-bottom: none;
        }
        
        .feature-list li i {
            color: var(--primary-color);
            margin-right: 15px;
            font-size: 1.3rem;
        }
        
        /* Models Preview Section */
        .models-preview-section {
            padding: 100px 0;
            background: var(--dark-color);
            color: white;
        }
        
        .models-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 15px;
            margin-top: 50px;
        }
        
        .model-card {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            aspect-ratio: 3/4;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .model-card:hover {
            transform: scale(1.05);
        }
        
        .model-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: top center;
        }
        
        .model-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
            padding: 30px 20px 20px;
            color: white;
            transform: translateY(100%);
            transition: transform 0.3s ease;
        }
        
        .model-card:hover .model-overlay {
            transform: translateY(0);
        }

        @media (hover: none), (pointer: coarse) {
            .model-card:hover {
                transform: none;
            }
            .model-overlay {
                transform: translateY(0);
                padding: 16px 12px 12px;
            }
            .model-overlay h5 {
                font-size: 0.85rem;
                margin-bottom: 0;
            }
        }
        
        /* Why Choose Us Section */
        .why-choose-section {
            padding: 100px 0;
            background: var(--light-color);
        }
        
        .why-item {
            text-align: center;
            padding: 40px 20px;
            background: white;
            border-radius: 15px;
            margin-bottom: 30px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(0,0,0,0.08);
        }
        
        .why-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .why-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--primary-color), #e74c3c);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2rem;
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-color), #e74c3c);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            color: white;
            margin-bottom: 30px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            opacity: 0.95;
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .models-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 12px;
            }
            
            .hero-title {
                font-size: 3.5rem;
            }
            
            .service-card {
                padding: 30px 20px;
            }
            
        }
        
        @media (max-width: 768px) {
            .hero-section {
                min-height: 90vh;
            }
            
            .hero-content {
                padding-top: 60px;
                padding-bottom: 30px;
            }
            
            .hero-title {
                font-size: 2.2rem;
                margin-bottom: 15px;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
                margin-bottom: 30px;
            }
            
            .hero-badge {
                padding: 8px 20px;
                font-size: 0.9rem;
                margin-bottom: 15px;
            }
            
            .btn-hero {
                padding: 12px 25px;
                font-size: 1rem;
            }
            
            .hero-cta {
                gap: 10px;
                justify-content: center;
            }
            
            .services-section {
                padding: 60px 0;
            }
            
            .service-card {
                padding: 25px 20px;
                margin-bottom: 20px;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 2rem;
            }
            
            .service-card h3 {
                font-size: 1.3rem;
            }
            
            .about-section {
                padding: 40px 0;
                overflow-x: hidden;
            }
            
            .about-section .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
            }
            
            .about-section .row {
                margin-left: 0;
                margin-right: 0;
            }
            
            .about-section .col-lg-6,
            .about-section .col-12 {
                padding-left: 15px;
                padding-right: 15px;
                width: 100%;
                max-width: 100%;
            }
            
            .about-content {
                margin-top: 30px;
                padding: 0 10px;
            }
            
            .about-content h2 {
                font-size: 1.75rem;
                margin-bottom: 20px;
                line-height: 1.3;
            }
            
            .about-content p {
                font-size: 0.95rem;
                margin-bottom: 15px;
                line-height: 1.6;
            }
            
            .feature-list {
                margin-top: 20px;
                margin-bottom: 20px;
            }
            
            .feature-list li {
                padding: 10px 0;
                font-size: 0.9rem;
                line-height: 1.5;
            }
            
            .feature-list li i {
                font-size: 1rem;
                margin-right: 10px;
            }
            
            .about-content .btn {
                width: 100%;
                padding: 12px 20px;
                font-size: 1rem;
            }
            
            .about-images-grid {
                grid-template-columns: 1fr;
                gap: 10px;
                min-height: auto;
                height: auto;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }
            
            .about-image {
                aspect-ratio: 16/9;
                width: 100%;
                max-width: 100%;
                margin: 0;
            }
            
            .about-image-large {
                grid-column: 1;
                aspect-ratio: 16/9;
            }
            
            .models-preview-section {
                padding: 40px 0;
                overflow-x: hidden;
            }
            
            .models-preview-section .container {
                padding-left: 15px;
                padding-right: 15px;
                max-width: 100%;
            }
            
            .models-preview-section h2 {
                font-size: 1.75rem;
            }
            
            .models-preview-section .lead {
                font-size: 1rem;
            }
            
            .models-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 8px;
                margin-top: 30px;
                width: 100%;
                max-width: 100%;
            }
            
            .model-card {
                border-radius: 8px;
                width: 100%;
                max-width: 100%;
            }
            
            .why-choose-section {
                padding: 40px 0;
                overflow-x: hidden;
            }
            
            .why-choose-section .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .why-choose-section h2 {
                font-size: 1.75rem;
            }
            
            .cta-section {
                padding: 40px 0;
                overflow-x: hidden;
            }
            
            .cta-section .container {
                padding-left: 15px;
                padding-right: 15px;
            }
            
            .cta-section .btn {
                width: 100%;
                margin-bottom: 10px;
            }
            
            .why-choose-section {
                padding: 60px 0;
            }
            
            .why-item {
                padding: 30px 15px;
            }
            
            .why-icon {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
            
            .cta-section {
                padding: 60px 0;
            }
            
            .cta-section h2 {
                font-size: 2rem;
            }
            
            .cta-section p {
                font-size: 1rem;
            }
            
            .display-4 {
                font-size: 2rem;
            }
            
            .display-5 {
                font-size: 1.75rem;
            }
        }
        
        @media (max-width: 576px) {
            .hero-title {
                font-size: 1.8rem;
            }
            
            .hero-subtitle {
                font-size: 1rem;
            }
            
            .models-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 6px;
            }
            
            .service-card {
                padding: 20px 15px;
            }
            
            .btn-hero {
                padding: 10px 20px;
                font-size: 0.9rem;
                width: 100%;
            }
            
            .hero-cta {
                flex-direction: column;
            }
        }

        @media (max-width: 359.98px) {
            .hero-title {
                font-size: 1.45rem !important;
            }
            .hero-subtitle {
                font-size: 0.92rem !important;
            }
            .hero-section {
                min-height: auto;
            }
            .models-grid {
                gap: 4px;
            }
        }

        @media (min-width: 1920px) {
            .hero-title {
                font-size: 5rem;
            }
            .hero-subtitle {
                font-size: 1.55rem;
                max-width: 50rem;
                margin-left: auto;
                margin-right: auto;
            }
        }

/* -------------------------------------------------------------------------- */
/* Homepage hero lock — restores original full-bleed design over site.min.css */
/* Technical stack (LCP picture, deferred video, SEO blocks) stays intact.    */
/* -------------------------------------------------------------------------- */
body.page-home #home.hero-section {
    min-height: 100vh !important;
    min-height: 100svh !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
}

body.page-home #home .hero-overlay {
    background: rgba(0, 0, 0, 0.2) !important;
}

body.page-home #home .hero-content {
    padding-top: 80px !important;
    padding-bottom: 40px !important;
}

body.page-home #home .hero-title {
    font-size: 4.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 20px !important;
    text-shadow: 3px 3px 15px rgba(0, 0, 0, 0.7), 0 0 30px rgba(0, 0, 0, 0.5) !important;
}

body.page-home #home .hero-subtitle {
    font-size: 1.5rem !important;
    margin-bottom: 40px !important;
    opacity: 0.98 !important;
    line-height: 1.6 !important;
    max-width: none !important;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.4) !important;
}

body.page-home #home .hero-badge {
    padding: 10px 25px !important;
    font-size: 1rem !important;
    margin-bottom: 20px !important;
    background: rgba(255, 255, 255, 0.25) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
}

body.page-home #home .hero-cta {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    gap: 20px !important;
    justify-content: center !important;
    width: auto !important;
}

body.page-home #home .btn-hero {
    width: auto !important;
    padding: 15px 40px !important;
    font-size: 1.1rem !important;
}

body.page-home .lm-ai-entity {
    background: #fff;
}

body.page-home .lm-ai-entity h2,
body.page-home .lm-facts-title {
    font-family: 'Josefin Sans', sans-serif;
}

/* Quick facts — centered panel before CTA */
body.page-home .lm-ai-facts {
    padding: 4.5rem 0 1.5rem;
    background:
        radial-gradient(ellipse 70% 55% at 50% 0%, rgba(220, 53, 69, 0.08), transparent 60%),
        linear-gradient(180deg, #f7f7f8 0%, #ffffff 100%);
}

body.page-home .lm-facts-panel {
    max-width: 920px;
    margin: 0 auto;
    padding: 2.5rem 2rem 2rem;
    text-align: center;
    background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88)),
        linear-gradient(135deg, rgba(220, 53, 69, 0.06), rgba(255, 193, 7, 0.08));
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 1.25rem;
    box-shadow: 0 18px 40px rgba(33, 37, 41, 0.06);
}

body.page-home .lm-facts-header {
    margin-bottom: 2rem;
}

body.page-home .lm-facts-eyebrow {
    display: inline-block;
    margin: 0 0 0.65rem;
    padding: 0.35rem 0.9rem;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
    border-radius: 999px;
}

body.page-home .lm-facts-title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.55rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: #212529;
    line-height: 1.25;
}

body.page-home .lm-facts-lead {
    margin: 0 auto;
    max-width: 36rem;
    font-size: 1.05rem;
    line-height: 1.55;
    color: #6c757d;
}

body.page-home .lm-facts-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
}

body.page-home .lm-facts-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-height: 6.25rem;
    padding: 1.15rem 0.85rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(33, 37, 41, 0.06);
    border-radius: 0.9rem;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

body.page-home .lm-facts-item:hover {
    transform: translateY(-2px);
    border-color: rgba(220, 53, 69, 0.22);
    box-shadow: 0 10px 22px rgba(33, 37, 41, 0.07);
}

body.page-home .lm-facts-item--wide {
    grid-column: span 2;
}

body.page-home .lm-facts-item dt {
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8a9096;
}

body.page-home .lm-facts-item dd {
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.35;
    color: #212529;
    word-break: break-word;
}

body.page-home .lm-facts-item a {
    color: #dc3545;
    text-decoration: none;
    border-bottom: 1px solid rgba(220, 53, 69, 0.25);
    transition: border-color 0.2s ease, color 0.2s ease;
}

body.page-home .lm-facts-item a:hover,
body.page-home .lm-facts-item a:focus-visible {
    color: #b02a37;
    border-bottom-color: rgba(176, 42, 55, 0.55);
}

@media (max-width: 991.98px) {
    body.page-home .lm-facts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    body.page-home .lm-ai-facts {
        padding: 3rem 0 0.75rem;
    }

    body.page-home .lm-facts-panel {
        padding: 1.75rem 1.1rem 1.25rem;
        border-radius: 1rem;
    }

    body.page-home .lm-facts-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    body.page-home .lm-facts-item,
    body.page-home .lm-facts-item--wide {
        grid-column: auto;
        min-height: 0;
        padding: 1rem 0.9rem;
    }

    body.page-home .lm-facts-item dd {
        font-size: 0.98rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    body.page-home .lm-facts-item {
        transition: none;
    }

    body.page-home .lm-facts-item:hover {
        transform: none;
    }
}

@media (max-width: 992px) {
    body.page-home #home .hero-title {
        font-size: 3.5rem !important;
    }
}

@media (max-width: 768px) {
    body.page-home #home.hero-section {
        min-height: 90vh !important;
    }

    body.page-home #home .hero-content {
        padding-top: 60px !important;
        padding-bottom: 30px !important;
    }

    body.page-home #home .hero-title {
        font-size: 2.2rem !important;
        margin-bottom: 15px !important;
    }

    body.page-home #home .hero-subtitle {
        font-size: 1.1rem !important;
        margin-bottom: 30px !important;
    }

    body.page-home #home .hero-badge {
        padding: 8px 20px !important;
        font-size: 0.9rem !important;
        margin-bottom: 15px !important;
    }

    body.page-home #home .btn-hero {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }

    body.page-home #home .hero-cta {
        gap: 10px !important;
    }
}

@media (max-width: 575.98px) {
    body.page-home #home .hero-overlay {
        background: rgba(0, 0, 0, 0.28) !important;
    }

    body.page-home #home .hero-cta .btn-hero {
        width: 100% !important;
        max-width: 20rem;
    }
}

@media (max-height: 480px) and (orientation: landscape) {
    body.page-home #home.hero-section {
        min-height: 100vh !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

@media (min-width: 1920px) {
    body.page-home #home.hero-section {
        min-height: 100vh !important;
        min-height: 100svh !important;
    }

    body.page-home #home .hero-title {
        font-size: 5rem !important;
    }

    body.page-home #home .hero-subtitle {
        font-size: 1.55rem !important;
        max-width: 50rem !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
}
