/*
 * Public website styles (Agrico-M)
 *
 * Loaded once from template_parts/header_head.php for all public pages.
 * Image URLs are RELATIVE to this file (assets/css/) so they resolve on any
 * host without PHP — e.g. ../images/foo.png -> assets/images/foo.png.
 *
 * Keep page-specific component styles here instead of inline <style> blocks.
 */

/* ==========================================================================
   Hero (home) — video overlay + product image hover
   ========================================================================== */
.hero-overlay {
    background-color: rgba(0, 0, 0, 0.55);
}

/* Carrefour partnership highlight card */
.partner-highlight-gradient {
    background: linear-gradient(to bottom right, #E03202, #B82902);
}

.product-image-wrapper {
    position: relative;
    height: 100%;
    min-height: 300px;
    max-height: 400px;
    overflow: hidden;
}
.product-image-wrapper .product-image-default {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-wrapper .product-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-image-wrapper:hover .product-image-default {
    opacity: 0;
}
.product-image-wrapper:hover .product-image-hover {
    opacity: 1;
}

@media (min-width: 1024px) {
    .product-image-wrapper {
        min-height: 400px;
    }
}

@keyframes potato-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}
.potato-pulse {
    animation: potato-pulse 1.5s ease-in-out infinite;
}

@media (min-width: 1024px) {
    #desktop-nav {
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }
    #desktop-right-nav {
        display: flex !important;
        flex: 1 1 0%;
        align-items: center;
        justify-content: flex-end;
    }
}

/* ==========================================================================
   Video hero section
   ========================================================================== */
.video-hero-section {
    position: relative;
    height: auto;
    overflow: hidden;
    background: #fbfaf7;
    padding: clamp(1rem, 3vw, 2.5rem);
    z-index: 1;
}

.navbar,
.header,
header {
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

.header-hidden {
    transform: translateY(-100%) !important;
}

.video-container {
    position: relative;
    width: min(100%, 84rem);
    height: min(76vh, 48rem);
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: clamp(1.5rem, 3vw, 2.75rem);
    background: #111827;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.video-container::after {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, transparent 42%, rgba(15, 23, 42, 0.58) 100%);
    content: '';
    pointer-events: none;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.9);
    z-index: 1;
    will-change: transform, filter;
    backface-visibility: hidden;
}

.video-overlay-content {
    position: absolute;
    right: clamp(1rem, 3vw, 2rem);
    bottom: clamp(1rem, 3vw, 2rem);
    left: clamp(1rem, 3vw, 2rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    z-index: 20;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 1.5rem;
    background: rgba(17, 24, 39, 0.62);
    padding: 0.85rem 0.9rem 0.85rem clamp(1.1rem, 2.5vw, 1.6rem);
    text-align: left;
    backdrop-filter: blur(0.85rem);
}

.video-section-title {
    max-width: 24ch;
    margin: 0;
    font-size: clamp(1.25rem, 2.4vw, 2rem);
    font-weight: 720;
    color: white;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.video-play-button {
    width: clamp(3.5rem, 6vw, 4.25rem);
    height: clamp(3.5rem, 6vw, 4.25rem);
    flex: 0 0 auto;
    background: white;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.22);
}

.video-play-button:hover {
    background: #E03202;
    transform: scale(1.04);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.video-play-button:focus-visible {
    outline: 4px solid rgba(255, 255, 255, 0.78);
    outline-offset: 4px;
}

.video-play-button:hover i {
    color: white;
}

.video-hero-section + section {
    position: relative;
    z-index: 10;
    background: white;
}

@media (max-width: 768px) {
    .video-hero-section { padding: 1rem; }
    .video-container { height: min(72vh, 38rem); border-radius: 1.75rem; }
    .video-overlay-content { border-radius: 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video {
        transition: none;
    }

}

.youtube-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.youtube-modal.active {
    opacity: 1;
    visibility: visible;
}

.youtube-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.youtube-modal-container {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    z-index: 10000;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.youtube-modal.active .youtube-modal-container {
    transform: scale(1);
}

.youtube-modal-content {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.youtube-modal-iframe-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-modal-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.youtube-modal-close {
    position: absolute;
    top: -3rem;
    right: 0;
    width: 3rem;
    height: 3rem;
    min-width: 44px;
    min-height: 44px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10001;
    color: #1a1a1a;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.youtube-modal-close:hover {
    background: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .youtube-modal-container {
        width: 95%;
    }

    .youtube-modal-close {
        top: -3.25rem;
    }
}

/* ==========================================================================
   About page media hovers and scrolling gallery
   ========================================================================== */
.team-image-wrapper:hover .team-image-default {
    opacity: 0;
}
.team-image-wrapper:hover .team-image-hover {
    opacity: 1;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
}
.hero-image-wrapper .hero-image-default {
    position: relative;
    display: block;
}
.hero-image-wrapper .hero-image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.hero-image-wrapper:hover .hero-image-default {
    opacity: 0;
}
.hero-image-wrapper:hover .hero-image-hover {
    opacity: 1;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../images/about/hero-bg.svg");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
}

.about-stat-unit {
    font-size: 1rem;
    line-height: 1.5rem;
    color: #928399;
}

.about-social-link {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 2px solid #d1d5db;
    border-radius: 9999px;
    color: #4b5563;
    transition: border-color 0.2s ease, color 0.2s ease;
}
.about-social-link:hover {
    border-color: var(--color-primary, #4661ff);
    color: var(--color-primary, #4661ff);
}

.about-values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    overflow: hidden;
}

.gallery-scroll-container {
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.gallery-scroll-content {
    display: flex;
    width: fit-content;
    animation: scroll var(--scroll-speed, 38s) linear infinite;
}

.scroll-left .gallery-scroll-content {
    animation-name: scrollLeft;
}

.scroll-right .gallery-scroll-content {
    animation-name: scrollRight;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

.gallery-scroll-container:hover .gallery-scroll-content:not(.dragging):not(.user-dragged) {
    animation-play-state: paused;
}

.gallery-scroll-content.dragging {
    animation-play-state: paused;
    user-select: none;
}

.gallery-scroll-content.dragging img,
.gallery-scroll-content.dragging video {
    pointer-events: none;
}

.about-gallery-media {
    height: 380px;
    width: auto;
}

@media (max-width: 768px) {
    .gallery-scroll-container {
        mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
        -webkit-mask-image: linear-gradient(
            to right,
            transparent,
            black 5%,
            black 95%,
            transparent
        );
    }
}

/* ==========================================================================
   Public content tables — legal pages and article comparison tables
   ========================================================================== */
.public-table-scroll {
    margin-bottom: 2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.public-content-table {
    min-width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.public-content-table th {
    background: var(--color-primary, #ff133e);
    padding: 0.875rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.public-content-table td {
    padding: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5rem;
    color: #374151;
    vertical-align: top;
}

.public-content-table-sm th,
.public-content-table-sm td {
    padding: 0.65rem 0.8rem;
    font-size: 0.92rem;
}

.public-content-table tbody tr + tr td {
    border-top: 1px solid #e5e7eb;
}

.public-content-table tbody tr:hover {
    background: #f9fafb;
}

.public-content-table .public-table-row-success {
    background: #f0fdf4;
}

.public-content-table .public-table-row-warning {
    background: #fefce8;
}

.public-content-table .public-table-row-danger {
    background: #fef2f2;
}

.public-content-table .public-table-cell-strong {
    font-weight: 600;
    color: #111827;
}

.public-content-table code {
    display: inline-flex;
    border-radius: 0.375rem;
    background: #f3f4f6;
    padding: 0.25rem 0.5rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
    font-size: 0.8125rem;
    color: #111827;
}

/* ==========================================================================
   Blog post layout and prose
   ========================================================================== */
.blog-post-sidebar {
    width: 100%;
    max-width: none;
    flex: 1 1 auto;
    position: static;
}

.blog-post-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 1024px) {
    .blog-post-layout {
        flex-direction: row;
        align-items: flex-start;
    }
    .blog-post-sidebar {
        width: 350px;
        max-width: 350px;
        flex: 0 0 350px;
        position: sticky;
        top: 80px;
        align-self: flex-start;
    }
}

.blog-post-main {
    flex: 1 1 0%;
    min-width: 0;
}

.blog-post-hero-image {
    height: 300px;
}

.blog-eyebrow {
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #475569;
}

.blog-title {
    margin-top: 1rem;
    font-size: 2.25rem;
    line-height: 1.1;
    font-weight: 700;
    color: #0f172a;
}

.blog-card {
    border-radius: 1.5rem;
    background: #fff;
    padding: 1.25rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: box-shadow 0.2s ease;
}
.blog-card:hover {
    box-shadow: 0 4px 6px -1px rgba(16, 24, 40, 0.1), 0 2px 4px -2px rgba(16, 24, 40, 0.1);
}

.blog-card-title {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    color: #0f172a;
    transition: color 0.2s ease;
}
.blog-card:hover .blog-card-title {
    color: var(--color-primary, #4661ff);
}

.blog-load-more {
    border: 1px solid #d1d5db;
    border-radius: 9999px;
    background: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #334155;
}
.blog-load-more:hover {
    background: #f9fafb;
}

.blog-post-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #334155;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05), 0 0 0 1px #e2e8f0;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.blog-post-back:hover {
    background: #f8fafc;
    color: #0f172a;
}

.blog-sidebar-latest-item {
    grid-template-columns: 50px 1fr;
}

.blog-sidebar-thumb {
    width: 50px;
    height: 50px;
}

.blog-sidebar-latest-link {
    display: inline-flex;
    align-items: flex-start;
    color: #1d4ed8;
    transition: color 0.2s ease;
}
.blog-sidebar-latest-link:hover {
    color: var(--color-primary, #4661ff);
}
.dark .blog-sidebar-latest-link {
    color: #93c5fd;
}
.dark .blog-sidebar-latest-link:hover {
    color: var(--color-primary, #4661ff);
}

.blog-sidebar-social-link {
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-sidebar-social-link-facebook {
    background: #2563eb;
}
.blog-sidebar-social-link-facebook:hover {
    background: #1d4ed8;
}
.blog-sidebar-social-link-tiktok {
    background: #000;
}
.blog-sidebar-social-link-tiktok:hover {
    background: #1f2937;
}
.blog-sidebar-social-link-google {
    border: 1px solid #d1d5db;
    background: #f3f4f6;
    color: #374151;
}
.blog-sidebar-social-link-google:hover {
    background: #e5e7eb;
}
.dark .blog-sidebar-social-link-google {
    border-color: #4b5563;
    background: #374151;
    color: #fff;
}
.dark .blog-sidebar-social-link-google:hover {
    background: #4b5563;
}

.site-primary-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    border: 1px solid transparent;
    border-radius: 0.875rem;
    background: var(--color-primary, #4661ff);
    padding: 0.75rem 1.375rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: #fff;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.08), 0 8px 22px rgba(224, 50, 2, 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-primary-button:hover {
    background: color-mix(in srgb, var(--color-primary, #4661ff) 90%, #000);
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.1), 0 14px 30px rgba(224, 50, 2, 0.2);
    transform: translateY(-1px);
}
.site-primary-button:active { transform: translateY(0); }
.site-primary-button:focus-visible,
.site-secondary-button:focus-visible {
    outline: 3px solid rgba(224, 50, 2, 0.26);
    outline-offset: 3px;
}
.site-primary-button-dark {
    background: #171717;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.12), 0 12px 30px rgba(15, 23, 42, 0.18);
}
.site-primary-button-dark:hover {
    background: #2b2b2b;
    box-shadow: 0 2px 4px rgba(15, 23, 42, 0.14), 0 18px 36px rgba(15, 23, 42, 0.22);
}
.site-primary-button-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    line-height: 1rem;
}
.site-primary-button-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
}
.site-primary-button-full {
    width: 100%;
}
.site-primary-button-with-icon {
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.site-primary-button-shadow {
    box-shadow: 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -4px rgba(16, 24, 40, 0.1);
}
.site-primary-button-shadow:hover {
    box-shadow: 0 20px 25px -5px rgba(16, 24, 40, 0.1), 0 8px 10px -6px rgba(16, 24, 40, 0.1);
}

.site-secondary-button {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    background: #f3f4f6;
    padding: 0.75rem 1.375rem;
    font-weight: 700;
    line-height: 1.25rem;
    color: #171717;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-secondary-button:hover {
    border-color: #d1d5db;
    background: #e5e7eb;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}
.site-secondary-button:active { transform: translateY(0); }
.site-secondary-button-lg {
    min-height: 3.5rem;
    padding: 1rem 1.75rem;
    font-size: 1.0625rem;
    line-height: 1.5rem;
}

/* ==========================================================================
   Homepage editorial showcase and scroll-docking quality lens
   ========================================================================== */
.home-showcase {
    position: relative;
    overflow: clip;
    background:
        radial-gradient(circle at 8% 24%, rgba(245, 158, 11, 0.1), transparent 28rem),
        radial-gradient(circle at 90% 52%, rgba(34, 197, 94, 0.09), transparent 32rem),
        #fbfaf7;
    padding: clamp(5.5rem, 9vw, 8rem) 1.5rem clamp(4rem, 7vw, 7rem);
    color: #171717;
}
.home-showcase::before {
    position: absolute;
    top: 6rem;
    left: 50%;
    width: min(70rem, 84vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(23, 23, 23, 0.12), transparent);
    content: '';
    transform: translateX(-50%);
}
.home-showcase-copy {
    position: relative;
    z-index: 2;
    width: min(100%, 78rem);
    margin: 0 auto;
    text-align: center;
}
.home-showcase-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    margin: 0 0 1.75rem;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #525252;
}
.home-showcase-kicker-mark {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: var(--color-primary, #E03202);
    box-shadow: 0 0 0 0.35rem rgba(224, 50, 2, 0.1);
}
.home-showcase-title {
    max-width: 13ch;
    margin: 0 auto;
    font-size: clamp(3rem, 7.4vw, 7rem);
    font-weight: 780;
    letter-spacing: -0.065em;
    line-height: 0.95;
    text-wrap: balance;
}
.home-showcase-title span {
    color: #737373;
}
.home-showcase-summary {
    max-width: 45rem;
    margin: clamp(1.75rem, 3vw, 2.5rem) auto 0;
    font-size: clamp(1.0625rem, 1.6vw, 1.25rem);
    line-height: 1.7;
    color: #525252;
    text-wrap: balance;
}
.home-showcase-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2.25rem;
}
.home-showcase-facts {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0;
    margin: 2.5rem 0 0;
}
.home-showcase-facts div {
    min-width: 11rem;
    padding: 0.25rem 1.75rem;
    text-align: left;
}
.home-showcase-facts div + div { border-left: 1px solid #d4d4d4; }
.home-showcase-facts dt {
    margin-bottom: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #737373;
}
.home-showcase-facts dd {
    margin: 0;
    font-size: 1.0625rem;
    font-weight: 750;
    color: #171717;
}
.home-showcase-scene {
    --quality-lens-offset: 0px;
    position: relative;
    z-index: 1;
    width: min(100%, 84rem);
    margin: clamp(3rem, 7vw, 6rem) auto 0;
    padding-top: clamp(7rem, 10vw, 9rem);
}
.home-showcase-media {
    position: relative;
    aspect-ratio: 1.88 / 1;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: clamp(1.5rem, 3vw, 2.75rem);
    background: #342d20;
    box-shadow: 0 28px 80px rgba(46, 38, 24, 0.18), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
}
.home-showcase-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.72) contrast(0.94) brightness(0.9);
    transform: scale(1.015);
}
.home-showcase-media-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.05) 45%, rgba(15, 23, 42, 0.58) 100%);
    pointer-events: none;
}
.home-showcase-media-caption {
    position: absolute;
    right: clamp(1.25rem, 3vw, 2.5rem);
    bottom: clamp(1.25rem, 3vw, 2.5rem);
    left: clamp(1.25rem, 3vw, 2.5rem);
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    color: #fff;
}
.home-showcase-media-caption span:first-child {
    font-size: clamp(1.125rem, 2vw, 1.625rem);
    font-weight: 750;
    letter-spacing: -0.025em;
}
.home-showcase-media-caption span:last-child {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.76);
}
.home-showcase-note {
    position: absolute;
    z-index: 3;
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #525252;
}
.home-showcase-note::after {
    position: absolute;
    top: 50%;
    width: clamp(3rem, 7vw, 6rem);
    height: 1px;
    background: #a3a3a3;
    content: '';
}
.home-showcase-note-care { top: 2rem; left: clamp(1rem, 7vw, 7rem); }
.home-showcase-note-care::after { left: calc(100% + 0.75rem); transform: rotate(16deg); transform-origin: left; }
.home-showcase-note-quality { top: 3.75rem; right: clamp(1rem, 7vw, 7rem); text-align: right; }
.home-showcase-note-quality::after { right: calc(100% + 0.75rem); transform: rotate(-16deg); transform-origin: right; }
.home-quality-lens {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: 4;
    display: grid;
    justify-items: center;
    gap: 0.7rem;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: #fff;
    font: inherit;
    appearance: none;
    -webkit-appearance: none;
    pointer-events: none;
    cursor: grab;
    touch-action: none;
    user-select: none;
    -webkit-user-select: none;
    transform: translate3d(-50%, var(--quality-lens-offset), 0) rotate(calc((1 - var(--quality-lens-progress, 0)) * -5deg));
    will-change: transform;
}
.home-showcase-scene[data-quality-lens-state="docked"] .home-quality-lens,
.home-showcase-scene[data-quality-lens-state="user"] .home-quality-lens {
    pointer-events: auto;
}
.home-showcase-scene[data-quality-lens-state="user"] .home-quality-lens {
    left: var(--quality-lens-left);
    top: var(--quality-lens-top);
    transform: none;
}
.home-quality-lens.is-dragging {
    z-index: 5;
    cursor: grabbing;
}
.home-quality-lens:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}
.home-quality-lens-glass {
    position: relative;
    display: grid;
    width: clamp(8.5rem, 16vw, 13.5rem);
    aspect-ratio: 1;
    place-items: center;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.88);
    border-radius: 38%;
    background:
        radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.38), transparent 28%),
        linear-gradient(145deg, rgba(245, 158, 11, 0.28), rgba(34, 197, 94, 0.24));
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.25), 0 0 0 1px rgba(15, 23, 42, 0.09);
    backdrop-filter: saturate(1.8) contrast(1.12) brightness(1.08);
    -webkit-backdrop-filter: saturate(1.8) contrast(1.12) brightness(1.08);
}
.home-quality-lens-glass::before,
.home-quality-lens-glass::after,
.home-quality-lens-crosshair::before,
.home-quality-lens-crosshair::after {
    position: absolute;
    background: rgba(255, 255, 255, 0.72);
    content: '';
}
.home-quality-lens-glass::before { top: 12%; bottom: 12%; left: 50%; width: 1px; }
.home-quality-lens-glass::after { top: 50%; right: 12%; left: 12%; height: 1px; }
.home-quality-lens-crosshair::before { top: calc(50% - 0.35rem); left: calc(50% - 0.35rem); width: 0.7rem; height: 1px; }
.home-quality-lens-crosshair::after { top: calc(50% - 0.35rem); left: calc(50% - 0.35rem); width: 1px; height: 0.7rem; }
.home-quality-lens-glass > svg { position: relative; z-index: 1; filter: drop-shadow(0 2px 8px rgba(15, 23, 42, 0.2)); }
.home-quality-lens-label {
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.92);
    padding: 0.55rem 0.9rem;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
    font-size: 0.6875rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}
.home-trust-strip {
    background: #fbfaf7;
    padding: 1rem 1rem 0;
}
.home-trust-strip > div {
    border: 1px solid #eeeae2;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 10px 40px rgba(46, 38, 24, 0.05);
}
.home-seed-media-card {
    height: auto;
    min-height: 0;
}
.home-seed-media {
    height: 18.75rem;
}
.home-seed-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Shared homepage editorial rhythm below the opening showcase. */
.home-page-shell {
    width: min(100%, 84rem);
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}
.home-products-section {
    background:
        radial-gradient(circle at 5% 30%, rgba(245, 158, 11, 0.06), transparent 28rem),
        #fbfaf7;
    padding-block: clamp(6rem, 9vw, 9rem);
}
.home-section-heading {
    max-width: 52rem;
    margin: 0 auto clamp(3rem, 6vw, 5rem);
    text-align: center;
}
.home-section-heading-left {
    max-width: 72rem;
    margin-inline: 0;
    text-align: left;
}
.home-section-heading .site-section-title {
    margin-bottom: 1.5rem;
    font-size: clamp(2.6rem, 5.4vw, 5rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    text-wrap: balance;
}
.home-section-intro {
    display: grid;
    max-width: 48rem;
    gap: 1rem;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: #525252;
}
.home-section-intro p,
.home-section-summary,
.home-products-closing p { margin: 0; }
.home-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}
.home-product-card {
    display: flex;
    height: auto;
    min-height: 0;
    max-height: none;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid #e9e6df;
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 12px 40px rgba(46, 38, 24, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.home-product-card:hover {
    box-shadow: 0 22px 55px rgba(46, 38, 24, 0.12);
    transform: translateY(-4px);
}
.home-product-card-media { height: 18rem; }
.home-product-card-body {
    min-height: 8.6rem;
    padding: 1.5rem;
}
.home-seed-story {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    margin-top: clamp(6rem, 10vw, 10rem);
    overflow: hidden;
    border: 1px solid #e9e6df;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background: #fff;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 25px 70px rgba(46, 38, 24, 0.09);
}
.home-seed-copy { padding: clamp(0.5rem, 2vw, 1.5rem); }
.home-seed-eyebrow {
    margin: 0 0 1rem;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary, #E03202);
}
.home-seed-copy h3 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1.02;
    letter-spacing: -0.045em;
    color: #171717;
    text-wrap: balance;
}
.home-seed-summary {
    margin: 1.5rem 0 0;
    font-size: 1.0625rem;
    line-height: 1.75;
    color: #525252;
}
.home-seed-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.75rem 0 0;
    padding: 0;
    list-style: none;
    color: #404040;
}
.home-seed-list li {
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.55;
}
.home-seed-list li::before {
    position: absolute;
    top: 0.55em;
    left: 0;
    width: 0.55rem;
    height: 0.55rem;
    border-radius: 999px;
    background: var(--color-primary, #E03202);
    box-shadow: 0 0 0 0.25rem rgba(224, 50, 2, 0.08);
    content: '';
}
.home-seed-story .home-seed-media-card {
    border-radius: 2rem;
    box-shadow: none;
}
.home-products-closing {
    max-width: 52rem;
    margin: clamp(3rem, 6vw, 5rem) auto 0;
    border-top: 1px solid #dedbd4;
    padding-top: 2rem;
    text-align: center;
    font-size: 1.0625rem;
    line-height: 1.7;
    color: #525252;
}
.home-metrics-section {
    background: #fbfaf7;
    padding-block: clamp(1.5rem, 4vw, 3rem) clamp(6rem, 9vw, 9rem);
}
.home-metrics-panel {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background:
        radial-gradient(circle at 0 0, rgba(224, 50, 2, 0.2), transparent 22rem),
        #171717;
    padding: clamp(2rem, 4vw, 3.5rem);
    box-shadow: 0 28px 70px rgba(23, 23, 23, 0.2);
    color: #fff;
}
.home-metric {
    display: flex;
    min-width: 0;
    flex-direction: column;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}
.home-metric:first-child { padding-left: 0; }
.home-metric:last-child { padding-right: 0; }
.home-metric + .home-metric { border-left: 1px solid rgba(255, 255, 255, 0.15); }
.home-metric dd {
    order: -1;
    margin: 0 0 0.9rem;
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 780;
    letter-spacing: -0.065em;
    line-height: 0.9;
    color: #fb5a2b;
}
.home-metric dt {
    max-width: 15rem;
    line-height: 1.55;
    color: #bdbdbd;
}
.home-metric dt strong { color: #fff; }
.home-proof-section {
    background: #fff;
    padding-block: clamp(6rem, 9vw, 9rem);
}
.home-section-summary {
    max-width: 43rem;
    margin-inline: auto;
    font-size: clamp(1.05rem, 1.6vw, 1.2rem);
    line-height: 1.7;
    color: #525252;
}
.home-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
    margin-bottom: clamp(2rem, 4vw, 3.5rem);
}
.home-credibility-card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e9e6df;
    border-color: #e9e6df;
    border-radius: 1.5rem;
    background: #fff;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    box-shadow: none;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .home-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
.home-credibility-card:hover {
    border-color: #d8d3c9;
    box-shadow: 0 18px 48px rgba(46, 38, 24, 0.08);
    transform: translateY(-3px);
}
.home-partner-highlight {
    overflow: hidden;
    border-radius: clamp(1.75rem, 3vw, 2.5rem);
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 25px 65px rgba(184, 41, 2, 0.2);
}
.home-cta-section {
    background: #fff;
    padding: 0 0 clamp(6rem, 9vw, 9rem);
}
.home-cta-panel {
    position: relative;
    overflow: hidden;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background:
        radial-gradient(circle at 10% 20%, rgba(224, 50, 2, 0.32), transparent 24rem),
        radial-gradient(circle at 90% 80%, rgba(34, 197, 94, 0.16), transparent 24rem),
        #171717;
    padding: clamp(3.5rem, 9vw, 8rem) clamp(1.5rem, 6vw, 6rem);
    text-align: center;
    color: #fff;
}
.home-cta-kicker {
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #fb8b6b;
}
.home-cta-panel h2 {
    max-width: 13ch;
    margin: 0 auto;
    font-size: clamp(2.6rem, 6vw, 5.75rem);
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 0.97;
    text-wrap: balance;
}
.home-cta-summary {
    max-width: 42rem;
    margin: 1.75rem auto 2.25rem;
    font-size: clamp(1.05rem, 1.7vw, 1.25rem);
    line-height: 1.65;
    color: #c9c9c9;
}
.dark .home-showcase {
    background:
        radial-gradient(circle at 8% 24%, rgba(234, 88, 12, 0.15), transparent 28rem),
        radial-gradient(circle at 90% 52%, rgba(34, 197, 94, 0.1), transparent 32rem),
        #111827;
    color: #f9fafb;
}
.dark .home-showcase::before { background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent); }
.dark .home-showcase-kicker,
.dark .home-showcase-summary,
.dark .home-showcase-note { color: #d1d5db; }
.dark .home-showcase-title span,
.dark .home-showcase-facts dt { color: #9ca3af; }
.dark .home-showcase-facts dd { color: #f9fafb; }
.dark .home-showcase-facts div + div { border-color: #374151; }
.dark .site-secondary-button { border-color: #374151; background: #1f2937; color: #f9fafb; }
.dark .site-secondary-button:hover { border-color: #4b5563; background: #374151; }
.dark .home-trust-strip { background: #111827; }
.dark .home-trust-strip > div { border-color: #374151; background: rgba(31, 41, 55, 0.86); }
.dark .home-products-section,
.dark .home-metrics-section { background: #111827; }
.dark .home-section-heading .site-section-title,
.dark .home-seed-copy h3 { color: #f9fafb; }
.dark .home-section-intro,
.dark .home-section-summary,
.dark .home-seed-summary,
.dark .home-seed-list,
.dark .home-products-closing { color: #d1d5db; }
.dark .home-product-card,
.dark .home-seed-story,
.dark .home-credibility-card { border-color: #374151; background: #1f2937; }
.dark .home-products-closing { border-color: #374151; }
.dark .home-proof-section,
.dark .home-cta-section { background: #111827; }

@media (max-width: 767px) {
    .home-showcase { padding-right: 1rem; padding-left: 1rem; }
    .home-showcase::before { top: 4.25rem; }
    .home-showcase-title { font-size: clamp(2.85rem, 14vw, 4.5rem); line-height: 0.98; }
    .home-showcase-actions { align-items: stretch; flex-direction: column; }
    .home-showcase-actions a { width: 100%; }
    .home-showcase-facts { gap: 1rem; }
    .home-showcase-facts div { min-width: 0; flex: 1; padding: 0.25rem 0.75rem; }
    .home-showcase-facts dd { font-size: 0.9375rem; }
    .home-showcase-scene { padding-top: 7rem; }
    .home-showcase-media { aspect-ratio: 4 / 5; border-radius: 1.75rem; }
    .home-showcase-video { object-position: 53% center; }
    .home-showcase-note { display: none; }
    .home-showcase-media-caption { align-items: flex-start; flex-direction: column; }
    .home-quality-lens-glass { width: 7.75rem; }
    .home-quality-lens-label { font-size: 0.625rem; }
    .home-products-section,
    .home-proof-section { padding-block: 5rem; }
    .home-section-heading .site-section-title { font-size: clamp(2.5rem, 12vw, 3.75rem); }
    .home-product-grid,
    .home-proof-grid { grid-template-columns: 1fr; }
    .home-product-card-media { height: 19rem; }
    .home-product-card-body { min-height: 0; }
    .home-seed-story { grid-template-columns: 1fr; margin-top: 5rem; }
    .home-seed-story .home-seed-media-card { border-radius: 1.35rem; }
    .home-metrics-section { padding-bottom: 5rem; }
    .home-metrics-panel { grid-template-columns: 1fr; padding: 1.75rem; }
    .home-metric { padding: 1.75rem 0; }
    .home-metric:first-child { padding-top: 0; }
    .home-metric:last-child { padding-bottom: 0; }
    .home-metric + .home-metric { border-top: 1px solid rgba(255, 255, 255, 0.15); border-left: 0; }
    .home-cta-section { padding-bottom: 5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .site-primary-button,
    .site-secondary-button,
    .home-product-card,
    .home-credibility-card,
    .home-quality-lens { transition: none; }
    .site-primary-button:hover,
    .site-secondary-button:hover,
    .home-product-card:hover,
    .home-credibility-card:hover { transform: none; }
    .home-showcase-video { transform: none; }
}

.site-white-action {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: #fff;
    padding: 0.5rem 1rem;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: background-color 0.2s ease;
}
.site-white-action:hover {
    background: #f9fafb;
}

.site-hero-scroll-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}
.site-hero-scroll-link:hover {
    color: #fff;
}

.site-trust-kicker {
    margin-bottom: 1.25rem;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
}

.site-trust-logo {
    width: auto;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}
.site-trust-logo:hover {
    opacity: 1;
}
.site-trust-logo-cert {
    height: 3rem;
}
.site-trust-logo-partner {
    height: 2.5rem;
}

.site-section-kicker {
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    background: color-mix(in srgb, var(--color-primary, #4661ff) 10%, transparent);
    padding: 0.25rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: var(--color-primary, #4661ff);
}

.site-section-title {
    margin-bottom: 1rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #111827;
}

.site-cookie-banner {
    position: fixed;
    right: auto;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 1050;
    display: flex;
    width: min(34rem, calc(100vw - 3rem));
    align-items: flex-start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    background: rgba(23, 23, 23, 0.96);
    padding: 1.1rem;
    color: #f9fafb;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(18px) saturate(1.2);
    -webkit-backdrop-filter: blur(18px) saturate(1.2);
    animation: site-cookie-enter 0.35s ease-out both;
}
.site-cookie-banner.hidden {
    display: none;
}
.site-cookie-banner.is-closing {
    animation: site-cookie-exit 0.2s ease-in both;
    pointer-events: none;
}
.site-cookie-icon {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border-radius: 0.875rem;
    background: rgba(224, 50, 2, 0.18);
    color: #fb8b6b;
}
.site-cookie-copy {
    min-width: 0;
    flex: 1;
}
.site-cookie-copy strong {
    display: block;
    margin-bottom: 0.3rem;
    font-size: 0.9375rem;
    line-height: 1.35;
}
.site-cookie-copy p {
    margin: 0;
    font-size: 0.8125rem;
    line-height: 1.55;
    color: #c9c9c9;
}
.site-cookie-policy-link {
    display: inline;
    margin-left: 0.25rem;
    font-weight: 700;
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(255, 255, 255, 0.42);
    text-underline-offset: 0.2em;
}
.site-cookie-policy-link:hover { text-decoration-color: #fb8b6b; }
.site-cookie-policy-link:focus-visible,
.site-cookie-dismiss:focus-visible {
    outline: 3px solid rgba(251, 139, 107, 0.5);
    outline-offset: 3px;
}
.site-cookie-dismiss {
    display: inline-flex;
    min-height: 2.75rem;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0.75rem;
    background: #fff;
    cursor: pointer;
    padding: 0.65rem 1rem;
    font-size: 0.8125rem;
    font-weight: 750;
    color: #171717;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.site-cookie-dismiss:hover { background: #f0f0f0; transform: translateY(-1px); }
.site-cookie-dismiss:active { transform: translateY(0); }
@keyframes site-cookie-enter {
    from { opacity: 0; transform: translateY(1rem); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes site-cookie-exit {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(0.75rem); }
}
.site-preloader-content {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(calc(100% - 2rem), 24rem);
    justify-items: center;
    padding: 1.5rem;
    text-align: center;
    transition: opacity 0.24s ease, transform 0.24s ease;
}
.site-preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 44%, rgba(224, 50, 2, 0.07), transparent 24rem),
        #f6f2e9;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.16s ease, visibility 0.16s ease;
}
.site-preloader-delayed .site-preloader {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: site-preloader-failsafe 0.01s linear 5s forwards;
}
.site-preloader.is-leaving { opacity: 0; visibility: hidden; pointer-events: none; }
.site-preloader.is-leaving .site-preloader-content { opacity: 0; transform: translateY(-0.25rem); }
.site-preloader-logo {
    display: block;
    width: clamp(8.5rem, 30vw, 10rem);
    height: auto;
    margin-bottom: 1.5rem;
}
.site-preloader-kicker {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin: 0;
    font-size: 0.7rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #57534e;
}
.site-preloader-kicker > span {
    width: 0.55rem;
    height: 0.55rem;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #e03202;
    box-shadow: 0 0 0 0.4rem rgba(224, 50, 2, 0.1);
}
.site-preloader-pulse {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: 1.5rem;
}
.site-preloader-pulse > i {
    width: 0.38rem;
    height: 0.38rem;
    border-radius: 50%;
    background: #fb5a2b;
    animation: site-preloader-pulse 1.05s ease-in-out infinite;
}
.site-preloader-pulse > i:nth-child(2) { animation-delay: 0.14s; }
.site-preloader-pulse > i:nth-child(3) { animation-delay: 0.28s; }
@keyframes site-preloader-pulse {
    0%, 65%, 100% { opacity: 0.28; transform: scale(0.78); }
    32% { opacity: 1; transform: scale(1); }
}
@keyframes site-preloader-failsafe {
    to { opacity: 0; visibility: hidden; pointer-events: none; }
}
.dark .site-preloader {
    background:
        radial-gradient(circle at 50% 44%, rgba(224, 50, 2, 0.11), transparent 24rem),
        #101311;
}
.dark .site-preloader-kicker { color: #a8a29e; }
.dark .site-preloader-logo { filter: saturate(0.96) brightness(1.1); }
@media (max-width: 480px) {
    .site-preloader-content { width: min(calc(100% - 1.5rem), 24rem); }
}
@media (prefers-reduced-motion: reduce) {
    .site-preloader,
    .site-preloader-content { transition-duration: 0.01ms; }
    .site-preloader-pulse > i { animation: none; opacity: 0.6; transform: none; }
}
.site-nav-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.375rem;
    padding: .625rem .25rem;
    font-size: 0.875rem;
    line-height: 1.5rem;
    font-weight: 600;
    color: #111827;
    transition: color 0.2s ease;
}
.site-nav-icon {
    display: inline-flex;
    width: 1.1rem;
    height: 1.1rem;
    flex: 0 0 1.1rem;
    align-items: center;
    justify-content: center;
    opacity: .62;
}
.site-nav-link:hover .site-nav-icon,
.site-nav-link-active .site-nav-icon { opacity: 1; }
.site-nav-link:hover,
.site-nav-link-active {
    color: var(--color-primary, #4661ff);
}
.theme-toggle-btn {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border-radius: .625rem;
    color: #374151;
    transition: background-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.theme-toggle-btn:hover { background: #f3f4f6; color: #111827; }
.theme-toggle-btn:focus-visible { outline: 3px solid rgba(224, 50, 2, .28); outline-offset: 2px; }
.site-nav-link-dropdown {
    column-gap: 0.25rem;
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.site-products-dropdown-panel {
    position: absolute;
    left: 50%;
    z-index: 10;
    margin-top: 0.75rem;
    width: 100vw;
    max-width: 28rem;
    flex: 1 1 auto;
    transform: translateX(-50%);
    overflow: hidden;
    border-radius: 1.5rem;
    background: #fff;
    font-size: 0.875rem;
    line-height: 1.5rem;
    box-shadow: 0 10px 15px -3px rgba(16, 24, 40, 0.1), 0 4px 6px -4px rgba(16, 24, 40, 0.1), 0 0 0 1px rgba(17, 24, 39, 0.05);
}
.site-products-dropdown-panel.hidden {
    display: none;
}
.site-products-dropdown-heading {
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 2rem .5rem;
    font-size: .875rem;
    font-weight: 650;
    color: #57534e;
}
.site-products-overview-link {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: .35rem;
    border-radius: 999px;
    padding-inline: .85rem;
    color: #292524;
}
.site-products-overview-link:hover,
.site-products-overview-link:focus-visible { background: #f2efe8; color: #b82902; }
.site-mobile-menu-toggle {
    border-radius: 0.375rem;
    padding: 0.5rem;
    color: #374151;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.site-mobile-menu-toggle:hover {
    background: #f3f4f6;
    color: #111827;
}
.site-mobile-menu-toggle:focus {
    outline: none;
    box-shadow: inset 0 0 0 2px var(--color-primary, #4661ff);
}
.site-mobile-subnav-link {
    display: block;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #374151;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.site-mobile-subnav-link:hover {
    background: #f9fafb;
    color: var(--color-primary, #4661ff);
}
.site-mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 0.375rem;
    padding: 0.5rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5rem;
    font-weight: 500;
    color: #374151;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.site-mobile-nav-link:hover,
.site-mobile-nav-link-active {
    background: #f9fafb;
    color: var(--color-primary, #4661ff);
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.about-timeline-divider {
    position: absolute;
    margin-left: -0.5rem;
    height: 1px;
    width: 100vw;
    transform: translateX(-100%);
    background: rgba(17, 24, 39, 0.1);
}

.blog-tag,
.blog-post-tag {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    font-size: 11px;
    line-height: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: #334155;
}

.blog-tag {
    background: #ffffff;
    padding: 0.125rem 0.625rem;
}

.blog-post-tag {
    background: #f1f5f9;
    padding: 0.25rem 0.75rem;
}

.dark .blog-wrapper {
    background: #0b0b0b !important;
}
.dark .blog-hero {
    background: rgba(15, 23, 42, 0.85) !important;
    border-color: rgba(255, 255, 255, 0.1) !important;
}
.dark .blog-eyebrow,
.dark .blog-meta,
.dark .blog-card-footer {
    color: #94a3b8 !important;
}
.dark .blog-title,
.dark .blog-card-title {
    color: #ffffff !important;
}
.dark .blog-subtitle,
.dark .blog-card-excerpt {
    color: #cbd5f5 !important;
}
.dark .blog-card {
    background: #0b0b0b !important;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none !important;
}
.dark .blog-tag {
    background: #111827 !important;
    color: #e5e7eb !important;
}
.dark .blog-load-more {
    background: #0b0b0b !important;
    border-color: rgba(255, 255, 255, 0.15) !important;
    color: #e5e7eb !important;
}
.dark .blog-sidebar .blog-sidebar-panel {
    background-color: #0b0b0b !important;
}
.dark .blog-sidebar .blog-sidebar-cta {
    background-color: rgba(15, 23, 42, 0.7) !important;
}

.prose {
    color: #374151;
}

.prose h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #111827;
    line-height: 1.3;
    scroll-margin-top: 7rem;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #111827;
    line-height: 1.4;
}

.prose p {
    margin-bottom: 1.25rem;
    line-height: 1.75;
    color: #374151;
}

.prose .lead {
    font-size: 1.125rem;
    font-weight: 500;
    color: #4B5563;
    margin-bottom: 1.5rem;
}

.prose ul,
.prose ol {
    margin: 1.25rem 0;
    padding-left: 1.5rem;
}

.prose li {
    margin-bottom: 0.5rem;
    line-height: 1.75;
}

.prose ul {
    list-style-type: disc;
}

.prose ol {
    list-style-type: decimal;
}

.prose strong {
    font-weight: 600;
    color: #111827;
}

.prose em {
    font-style: italic;
}

.prose a {
    color: var(--primary-color, #E03202);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.prose a:hover {
    opacity: 0.8;
}

.blog-breadcrumb ol { min-height: 2.75rem; }
.blog-breadcrumb a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
}
.blog-auto-toc {
    margin: 1rem 0 2.25rem;
    border: 1px solid #e5e0d7;
    border-radius: 1.25rem;
    background: #fbfaf7;
    padding: 1.25rem;
}
.blog-auto-toc-title {
    margin: 0 0 .6rem !important;
    font-size: .75rem;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #57534e !important;
}
.blog-auto-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .15rem 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.blog-auto-toc a,
.prose .toc-list a,
.prose h2 + ul a[href^="#"] {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    border-radius: .7rem;
    padding: .45rem .6rem;
    text-decoration: none;
}
.blog-auto-toc a:hover,
.blog-auto-toc a:focus-visible,
.prose .toc-list a:hover,
.prose .toc-list a:focus-visible,
.prose h2 + ul a[href^="#"]:hover,
.prose h2 + ul a[href^="#"]:focus-visible { background: #f2efe8; opacity: 1; }
.blog-post-back { min-height: 2.75rem; }

.prose table {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 1.5rem 0;
    overflow-x: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    -webkit-overflow-scrolling: touch;
}

.prose table thead {
    background: #f9fafb;
}

.prose table th,
.prose table td {
    padding: 0.875rem 1rem;
    border: 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    vertical-align: top;
    white-space: normal;
}

.prose table th {
    font-size: 0.8125rem;
    line-height: 1.125rem;
    font-weight: 700;
    color: #111827;
}

.prose table td {
    font-size: 0.9375rem;
    line-height: 1.5rem;
    color: #374151;
}

.prose table tr:last-child td {
    border-bottom: 0;
}

.prose table tbody tr:hover {
    background: #f9fafb;
}

.dark .blog-breadcrumb {
    color: #94a3b8;
}
.dark .blog-breadcrumb a {
    color: #cbd5f5;
}
.dark .blog-post-article {
    background: #0b0b0b;
}
.dark .blog-post-header {
    color: #e5e7eb;
}
.dark .blog-post-title {
    color: #ffffff;
}
.dark .blog-post-meta {
    color: #94a3b8;
}
.dark .blog-post-tag {
    background: #111827;
    color: #e5e7eb;
}
.dark .blog-post-back {
    background: #0b0b0b;
    color: #e5e7eb;
    border-color: rgba(255, 255, 255, 0.15);
}
.dark .blog-auto-toc { border-color: #374151; background: #1f2937; }
.dark .blog-auto-toc-title { color: #d1d5db !important; }
.dark .blog-auto-toc a:hover,
.dark .blog-auto-toc a:focus-visible,
.dark .prose .toc-list a:hover,
.dark .prose .toc-list a:focus-visible,
.dark .prose h2 + ul a[href^="#"]:hover,
.dark .prose h2 + ul a[href^="#"]:focus-visible { background: #374151; }

.legal-page-title {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
    color: #111827;
}

@media (min-width: 640px) {
    .blog-title,
    .legal-page-title {
        font-size: 3rem;
        line-height: 1;
    }
    .about-timeline-divider {
        margin-left: -1rem;
    }
}

@media (max-width: 639px) {
    .site-cookie-banner {
        right: 1rem;
        bottom: 1rem;
        left: 1rem;
        width: auto;
        flex-wrap: wrap;
        gap: 0.875rem;
        border-radius: 1.125rem;
        padding: 1rem;
    }
    .site-cookie-copy { width: calc(100% - 3.75rem); flex: 1 1 calc(100% - 3.75rem); }
    .site-cookie-dismiss { width: 100%; }
    body.site-cookie-notice-open #whatsappFloat { bottom: 16.5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .site-cookie-banner,
    .site-cookie-banner.is-closing { animation: none; }
    .site-cookie-dismiss { transition: none; }
    .site-cookie-dismiss:hover { transform: none; }
}

@media (min-width: 1024px) {
    .about-values-grid {
        max-width: none;
        grid-auto-flow: column;
        grid-auto-columns: 1fr;
    }
    .blog-title,
    .legal-page-title {
        font-size: 3.75rem;
        line-height: 1;
    }
    .site-trust-logo-cert {
        height: 3.5rem;
    }
    .site-trust-logo-partner {
        height: 3rem;
    }
    .site-section-title {
        margin-bottom: 1.5rem;
        font-size: 3.75rem;
        line-height: 1;
    }
    .site-products-dropdown-panel {
        max-width: 48rem;
    }
    .about-stat-unit {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }
}

@media (min-width: 1024px) {
    .about-timeline-divider {
        position: static;
        margin-left: 2rem;
        margin-right: -1.5rem;
        width: auto;
        flex: 1 1 auto;
        transform: translateX(0);
    }
}
.dark .prose {
    color: #cbd5f5;
}
.dark .prose h2,
.dark .prose h3,
.dark .prose strong {
    color: #ffffff;
}
.dark .prose p,
.dark .prose li,
.dark .prose .lead {
    color: #cbd5f5;
}

/* ==========================================================================
   Contact page — hero gradient + building image hover
   ========================================================================== */
.contact-hero-gradient {
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.5) 40%, rgba(255, 255, 255, 0) 60%, transparent 100%);
}
.dark .contact-hero-gradient {
    background: linear-gradient(to right, rgba(17, 24, 39, 1) 0%, rgba(17, 24, 39, 0.5) 40%, rgba(17, 24, 39, 0) 60%, transparent 100%);
}
.contact-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.3;
}
.contact-hero-image picture,
.building-image-wrapper picture {
    display: contents;
}

.building-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 300px;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
}
.building-image-default,
.building-image-hover {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.3s ease-in-out;
}
.building-image-default {
    opacity: 1;
    z-index: 1;
}
.building-image-hover {
    opacity: 0;
    z-index: 2;
}
.building-image-wrapper:hover .building-image-default {
    opacity: 0;
}
.building-image-wrapper:hover .building-image-hover {
    opacity: 1;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer.footer {
    background-image: url('../images/footer-traktor.png');
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

footer.footer::after {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(17, 24, 39, 0.85); /* bg-gray-900/85 */
    z-index: 1;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 19, 62, 0.5), transparent);
}

.footer-bg-pattern {
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 19, 62, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 19, 62, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(55, 64, 79, 0.05) 0%, transparent 50%);
    background-size: 300px 300px, 400px 400px, 250px 250px;
    animation: footerPattern 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes footerPattern {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(-10px); }
    75% { transform: translateX(-5px) translateY(5px); }
}

/* Responsive adjustments for footer background */
@media (max-width: 768px) {
    .footer {
        background-image: url('../images/footer-traktor.png');
        background-position: 0 0;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 576px) {
    .footer {
        background-image: url('../images/footer-traktor.png');
        background-position: 0 0;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

.footer .navbar-brand,
.footer .navbar-brand img {
    transition: all 0.3s ease;
}
.footer .navbar-brand:hover {
    transform: translateY(-2px);
}
.footer .navbar-brand:hover img {
    transform: scale(1.1) rotate(5deg);
}

.footer .company-details ul li {
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 10px;
    transition: all 0.3s ease;
}
.footer .company-details ul li:hover {
    border-left-color: rgba(255, 19, 62, 0.5);
    transform: translateX(5px);
}

.footer .certification-logo {
    max-width: 120px;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    background: rgba(255, 255, 255, 0.05);
}
.footer .certification-logo:hover {
    opacity: 1;
    transform: scale(1.05) translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer .carrefour-partnership {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 8px 12px;
    transition: all 0.3s ease;
}
.footer .carrefour-partnership:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.footer .carrefour-partnership .certification-logo {
    max-width: 80px;
    filter: brightness(0) invert(1);
}

.footer .cegek-link,
.footer .anpc-link,
.footer .ultron-link {
    transition: all 0.3s ease;
    text-decoration: none !important;
}
.footer .cegek-link:hover,
.footer .anpc-link:hover,
.footer .ultron-link:hover {
    opacity: 1 !important;
    transform: translateY(-2px);
}
.footer .cegek-link img,
.footer .anpc-link img,
.footer .ultron-link img {
    opacity: 0.7;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 4px;
}
.footer .cegek-link:hover img,
.footer .anpc-link:hover img,
.footer .ultron-link:hover img {
    opacity: 1;
    background: rgba(255, 255, 255, 0.2);
}

.footer .certifications {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    transition: all 0.3s ease;
}
.footer .certifications:hover,
.footer .legal-info:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.footer .legal-info {
    transition: all 0.3s ease;
}

.footer .social-links .btn,
.footer .contact-info a {
    transition: all 0.3s ease;
}
.footer .social-links .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.site-footer-action {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: #fff;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}
.site-footer-action-whatsapp {
    background: #22c55e;
}
.site-footer-action-whatsapp:hover {
    background: #16a34a;
}
.site-footer-action-outline,
.site-footer-social-link {
    border: 2px solid #374151;
}
.site-footer-action-outline:hover,
.site-footer-social-link:hover {
    border-color: #fff;
}
.site-footer-social-link {
    display: flex;
    align-items: center;
    border-radius: 0.5rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 500;
    color: #fff;
    transition: border-color 0.2s ease;
}

.public-error-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: background-color 0.2s ease, color 0.2s ease;
}
.public-error-action-primary {
    background: var(--color-primary, #4661ff);
    color: #fff;
}
.public-error-action-primary:hover {
    background: color-mix(in srgb, var(--color-primary, #4661ff) 88%, #000);
}
.public-error-action-secondary {
    border: 2px solid #d1d5db;
    color: #374151;
}
.public-error-action-secondary:hover {
    background: #f9fafb;
}

.site-footer-trust-logo {
    max-width: 50px;
    height: auto;
    object-fit: contain;
    filter: grayscale(1);
    transition: filter 0.2s ease;
}
.group:hover .site-footer-trust-logo {
    filter: grayscale(0);
}

.site-secondary-outline-action {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--color-secondary, #2f855a);
    border-radius: 0.5rem;
    padding: 0.625rem 1rem;
    font-weight: 500;
    color: var(--color-secondary, #2f855a);
    transition: background-color 0.2s ease, color 0.2s ease;
}
.site-secondary-outline-action:hover {
    background: var(--color-secondary, #2f855a);
    color: #fff;
}

/* Navigation Link Enhancements */
.footer .nav-link {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 20px !important;
}
.footer .nav-link::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    color: #ff133e;
}
.footer .nav-link:hover {
    color: #fff !important;
    opacity: 1 !important;
    transform: translateX(5px);
}
.footer .nav-link:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Section Headers with Icons */
.footer h6 {
    position: relative;
    padding-bottom: 8px;
}
.footer h6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff133e, #ff133e);
    border-radius: 1px;
}

/* Buttons */
.footer .quick-actions .btn {
    transition: all 0.3s ease;
    border-radius: 6px;
}
.footer .quick-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
.footer .quick-actions .btn-success:hover {
    background-color: #25d366 !important;
    border-color: #25d366 !important;
}
.footer .btn {
    position: relative;
    overflow: hidden;
}
.footer .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}
.footer .btn:hover::before {
    left: 100%;
}

/* Map Container Enhancement */
.footer .map-container iframe {
    transition: all 0.3s ease;
    filter: grayscale(100%) brightness(0.8);
}
.footer .map-container:hover iframe {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    filter: grayscale(0%) brightness(1);
}

@media (max-height: 500px) {
    #whatsappFloat {
        bottom: 80px;
    }
}

@media (max-width: 768px) {
    #whatsappFloat {
        display: none;
    }

    #whatsappFloat a {
        width: 3.5rem;
        height: 3.5rem;
    }

    #whatsappFloat svg {
        width: 1.5rem;
        height: 1.5rem;
    }
}

@media (max-width: 576px) {
    #whatsappFloat {
        bottom: 80px;
        right: 15px;
    }
}

#whatsappFloat.new-visitor {
    animation: whatsappPulse 1.5s infinite;
}
body.site-footer-in-view #whatsappFloat,
body.video-hero-in-view #whatsappFloat {
    opacity: 0;
    transform: translate3d(0, 1rem, 0) scale(0.88);
    pointer-events: none;
    animation: none;
}

.gallery-carousel-video {
    object-fit: cover;
    max-height: 300px;
}

.gallery-section-bg-default {
    background: whitesmoke;
}

.language-selector-menu {
    --tw-ring-color: rgb(0 0 0 / 0.05);
}

.language-flag-size-12 {
    font-size: 12px;
}

.language-flag-size-20 {
    font-size: 20px;
}

.language-flag-size-22 {
    font-size: 22px;
}

.language-flag-size-38 {
    font-size: 38px;
}

/* ==========================================================================
   Shared public header, language menu, and mobile drawer
   ========================================================================== */
.site-header {
    border-bottom: 1px solid rgba(28, 25, 23, 0.06);
    background: rgba(250, 248, 243, 0.86);
    box-shadow: 0 10px 36px rgba(28, 25, 23, 0.035);
    backdrop-filter: blur(24px) saturate(1.08);
    -webkit-backdrop-filter: blur(24px) saturate(1.08);
}
.site-header-shell {
    width: min(100%, 84rem);
    margin-inline: auto;
    padding-inline: clamp(1.1rem, 3.3vw, 2.5rem);
}
.site-header-row {
    display: flex;
    min-height: 5.75rem;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
}
.site-header-brand {
    display: inline-flex;
    min-height: 3rem;
    align-items: center;
    gap: 0.75rem;
    border-radius: 999px;
    padding: 0.375rem 0.5rem;
}
.site-header-brand:focus-visible {
    outline: 2px solid rgba(28, 25, 23, 0.24);
    outline-offset: 4px;
}
.site-header-brand img {
    width: auto;
    height: 2rem;
}
#desktop-nav {
    gap: 0.25rem;
    border: 1px solid rgba(28, 25, 23, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    padding: 0.25rem;
}
.site-header-actions,
.site-header-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid rgba(28, 25, 23, 0.07);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    padding: 0.25rem;
    box-shadow: 0 8px 24px rgba(28, 25, 23, 0.045);
}
.site-nav-link {
    border-radius: 999px;
    padding-inline: 0.9rem;
}
.site-nav-link:hover { background: rgba(28, 25, 23, 0.055); }
.site-nav-link-active {
    background: #1c1917;
    color: #fff;
}
.site-nav-link:focus-visible,
.site-nav-link-dropdown:focus-visible {
    outline: 2px solid rgba(28, 25, 23, 0.24);
    outline-offset: 3px;
}
.site-language-toggle,
.theme-toggle-btn,
.site-mobile-menu-toggle {
    min-height: 3rem;
    border-radius: 999px;
}
.theme-toggle-btn { width: 2.75rem; height: 2.75rem; }
.site-mobile-menu-toggle { min-width: 2.75rem; }
.theme-toggle-light-icon,
.theme-toggle-dark-icon {
    width: 1.25rem;
    height: 1.25rem;
    align-items: center;
    justify-content: center;
}
.theme-toggle-light-icon.block,
.theme-toggle-dark-icon.block { display: inline-flex; }
.theme-toggle-light-icon.hidden,
.theme-toggle-dark-icon.hidden { display: none; }
.dark .site-header {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(24, 24, 22, 0.88);
    box-shadow: 0 10px 36px rgba(0, 0, 0, 0.12);
}
.dark .site-nav-link { color: #f3f4f6; }
.dark #desktop-nav,
.dark .site-header-actions,
.dark .site-header-mobile-actions { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.055); }
.dark .site-nav-link:hover { color: #fff; background: rgba(255,255,255,.08); }
.dark .site-nav-link-active { color: #1c1917; background: #f5f5f0; }
.dark .site-products-dropdown-panel {
    border: 1px solid #374151;
    background: #1f2937;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}
.dark .site-products-dropdown-heading { color: #d1d5db; }
.dark .site-products-overview-link { color: #f3f4f6; }
.dark .site-products-overview-link:hover,
.dark .site-products-overview-link:focus-visible { background: #374151; color: #fdba74; }

.language-selector { position: relative; }
.site-language-toggle {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    gap: 0.5rem;
    border: 0;
    border-radius: 999px;
    background: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: #374151;
    transition: background-color .15s ease, border-color .15s ease, color .15s ease, box-shadow .15s ease;
}
.site-language-toggle:hover { background: rgba(28,25,23,.06); color: #111827; }
.site-language-toggle:focus-visible,
.language-link:focus-visible { outline: 3px solid rgba(224, 50, 2, .28); outline-offset: 2px; }
.site-language-flag { font-size: 1rem; line-height: 1; }
.lang-arrow {
    display: inline-flex;
    width: 1rem;
    height: 1rem;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    transition: transform .2s ease;
}
.language-selector-menu {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    z-index: 1200;
    width: 12rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    border-radius: .75rem;
    background: #fff;
    padding: .25rem;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
}
.language-selector-menu.hidden { display: none; }
.language-selector-menu ul { margin: 0; padding: 0; list-style: none; }
.language-link {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: space-between;
    border-radius: .5rem;
    padding: .625rem .75rem;
    font-size: .875rem;
    color: #374151;
}
.language-link:hover { background: #f3f4f6; color: #111827; }
.language-link-active { background: #fff3ef; color: #b82902; font-weight: 700; }
.language-link-label { display: inline-flex; align-items: center; gap: .625rem; }
.language-link-check { display: inline-flex; width: 1rem; height: 1rem; align-items: center; justify-content: center; }
.dark .site-language-toggle { border-color: #4b5563; background: #1f2937; color: #f3f4f6; }
.dark .site-language-toggle:hover { border-color: #6b7280; background: #374151; color: #fff; }
.dark .language-selector-menu { border-color: #374151; background: #1f2937; box-shadow: 0 18px 42px rgba(0,0,0,.38); }
.dark .language-link { color: #e5e7eb; }
.dark .language-link:hover { background: #374151; color: #fff; }
.dark .language-link-active { background: #292524; color: #fdba74; }

.site-mobile-menu-toggle {
    display: inline-flex;
    min-width: 2.75rem;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: .625rem;
    color: #292524;
}
.site-mobile-menu-toggle:hover { background: rgba(28,25,23,.06); color: #0c0a09; }
.site-mobile-menu-toggle:focus { outline: none; box-shadow: none; }
.site-mobile-menu-toggle:focus-visible,
.theme-toggle-btn:focus-visible { outline: 2px solid rgba(28,25,23,.28); outline-offset: 3px; }
.dark .site-mobile-menu-toggle { border-color: #374151; color: #f3f4f6; }
.dark .site-mobile-menu-toggle:hover { background: #374151; color: #fff; }
.site-mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    background: rgba(28, 25, 23, .2);
    backdrop-filter: blur(10px) saturate(.9);
    -webkit-backdrop-filter: blur(10px) saturate(.9);
    animation: siteMenuBackdropIn .24s ease-out both;
}
.site-mobile-menu-backdrop.hidden,
.site-mobile-menu.hidden { display: none; }
.site-mobile-menu {
    position: fixed;
    top: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 1101;
    display: flex;
    width: min(24rem, calc(100vw - 1.5rem));
    height: calc(100dvh - 1.5rem);
    flex-direction: column;
    overflow: hidden;
    overscroll-behavior: contain;
    border: 1px solid rgba(28,25,23,.08);
    border-radius: 1.75rem;
    background: rgba(252, 250, 246, .98);
    color: #1c1917;
    box-shadow: 0 28px 80px rgba(28, 25, 23, .2), 0 2px 8px rgba(28,25,23,.06);
    animation: siteMenuSheetIn .3s cubic-bezier(.22, 1, .36, 1) both;
}
.site-mobile-menu-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 4.75rem;
    background: rgba(252,250,246,.9);
    padding: 1rem 1rem .75rem 1.35rem;
    backdrop-filter: blur(18px);
}
.site-mobile-menu-title {
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    font-size: .78rem;
    font-weight: 750;
    letter-spacing: .12em;
    text-transform: uppercase;
}
.site-mobile-menu-title-dot { width: .55rem; height: .55rem; border-radius: 999px; background: var(--color-primary, #e03202); box-shadow: 0 0 0 .32rem rgba(224,50,2,.11); }
.site-mobile-menu-close {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(28,25,23,.08);
    border-radius: 999px;
    background: rgba(255,255,255,.68);
    color: #292524;
}
.site-mobile-menu-close:hover { background: #fff; color: #0c0a09; transform: rotate(4deg); }
.site-mobile-menu-content { flex: 1; overflow-y: auto; padding: .35rem 1rem 1.25rem; }
.site-mobile-menu-list,
.site-mobile-subnav-list { margin: 0; padding: 0; list-style: none; }
.site-mobile-menu-list { display: grid; gap: .25rem; }
.site-mobile-nav-link {
    min-height: 3.35rem;
    border-radius: 1rem;
    padding: .8rem .95rem;
    font-size: 1.075rem;
    font-weight: 620;
    color: #292524;
}
.site-mobile-nav-link svg { opacity: .58; }
.site-mobile-nav-icon {
    display: inline-flex;
    width: 1.25rem;
    height: 1.25rem;
    flex: 0 0 1.25rem;
    align-items: center;
    justify-content: center;
    color: #57534e;
}
.site-mobile-nav-section-title { display: inline-flex; align-items: center; gap: .6rem; }
.site-mobile-products-group { margin-block: .2rem; border: 1px solid rgba(28,25,23,.07); border-radius: 1.3rem; background: rgba(255,255,255,.56); padding: .35rem; }
.site-mobile-subnav-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .2rem; margin: 0; padding: 0 .15rem .15rem; border: 0; }
.site-mobile-nav-section-label { display: flex; min-height: 2.75rem; align-items: center; justify-content: space-between; border-radius: .9rem; padding: .55rem .7rem; font-size: .78rem; font-weight: 750; letter-spacing: .08em; text-transform: uppercase; color: #57534e; }
.site-mobile-nav-count { display: inline-flex; min-width: 1.8rem; height: 1.8rem; align-items: center; justify-content: center; border-radius: 999px; background: #1c1917; font-size: .65rem; letter-spacing: .04em; color: #fff; }
.site-mobile-subnav-link { min-height: 2.8rem; border-radius: .85rem; padding: .72rem .75rem; font-size: .9rem; color: #44403c; }
.site-mobile-nav-section-label-active { color: var(--color-primary, #E03202); }
.site-mobile-nav-link:hover,
.site-mobile-nav-link-active { background: #1c1917; color: #fff; }
.site-mobile-nav-link-active svg { opacity: 1; }
.site-mobile-nav-link-active .site-mobile-nav-icon { color: currentColor; }
.site-mobile-subnav-link:hover { background: #f2efe8; color: #1c1917; }
.site-mobile-nav-link:focus-visible,
.site-mobile-subnav-link:focus-visible,
.site-mobile-language-link:focus-visible,
.site-mobile-menu-close:focus-visible { outline: none; background: #1c1917; color: #fff; }
.site-mobile-language-section { margin-top: .85rem; border-top: 1px solid rgba(28,25,23,.08); padding: 1rem .2rem 0; }
.site-mobile-language-heading { margin: 0 0 .6rem; padding: 0 .55rem; font-size: .68rem; font-weight: 750; letter-spacing: .12em; text-transform: uppercase; color: #78716c; }
.site-mobile-language-list { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: .4rem; }
.site-mobile-language-link {
    display: flex;
    min-height: 3.15rem;
    align-items: center;
    justify-content: space-between;
    justify-content: center;
    border: 1px solid rgba(28,25,23,.07);
    border-radius: 999px;
    background: rgba(255,255,255,.5);
    padding: .6rem .45rem;
    font-size: .76rem;
    color: #57534e;
}
.site-mobile-language-link:hover { border-color: rgba(28,25,23,.14); background: #fff; color: #1c1917; }
.site-mobile-language-link-active { border-color: #1c1917; background: #1c1917; color: #fff; font-weight: 700; }
.site-mobile-language-link-label { display: inline-flex; align-items: center; gap: .35rem; }
.site-mobile-language-check { display: none; }
body.site-mobile-menu-open { overflow: hidden; }
body.site-mobile-menu-open #whatsappFloat { opacity: 0; pointer-events: none; }
.dark .site-mobile-menu { border-color: rgba(255,255,255,.09); background: rgba(28,28,26,.98); color: #f9fafb; }
.dark .site-mobile-menu-header { background: rgba(28,28,26,.9); }
.dark .site-mobile-menu-close { border-color: #4b5563; color: #f3f4f6; }
.dark .site-mobile-menu-close:hover { background: #374151; color: #fff; }
.dark .site-mobile-subnav-list,
.dark .site-mobile-language-section { border-color: #374151; }
.dark .site-mobile-nav-section-label,
.dark .site-mobile-nav-link,
.dark .site-mobile-subnav-link { color: #e5e7eb; }
.dark .site-mobile-nav-section-label-active,
.dark .site-mobile-nav-link-active { color: #fdba74; }
.dark .site-mobile-nav-link:hover,
.dark .site-mobile-nav-link-active,
.dark .site-mobile-subnav-link:hover { background: #1f2937; color: #fdba74; }
.dark .site-mobile-products-group { border-color: rgba(255,255,255,.08); background: rgba(255,255,255,.04); }
.dark .site-mobile-nav-count { background: #f5f5f0; color: #1c1917; }
.dark .site-mobile-language-heading { color: #9ca3af; }
.dark .site-mobile-language-link { border-color: #374151; color: #e5e7eb; }
.dark .site-mobile-language-link:hover,
.dark .site-mobile-language-link-active { border-color: #9a3412; background: #1f2937; color: #fdba74; }
@keyframes siteMenuBackdropIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes siteMenuSheetIn { from { opacity: 0; transform: translate3d(1.5rem, 0, 0) scale(.985); } to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); } }
@media (prefers-reduced-motion: reduce) {
    .site-mobile-menu,
    .site-mobile-menu-backdrop { animation: none; }
}
@media (min-width: 1024px) {
    .site-mobile-menu,
    .site-mobile-menu-backdrop { display: none !important; }
    .site-header-mobile-actions { display: none; }
}

@media (max-width: 1023px) {
    .site-header-row { min-height: 4.95rem; }
    .site-header-brand img { height: 1.875rem; }
}

/* Modern editorial footer shared by every public page. */
footer.site-footer-modern {
    position: relative;
    overflow: hidden;
    border-top: 0;
    background:
        radial-gradient(circle at 5% 0, rgba(224, 50, 2, 0.24), transparent 27rem),
        radial-gradient(circle at 92% 80%, rgba(34, 197, 94, 0.1), transparent 30rem),
        #171717;
    background-image: radial-gradient(circle at 5% 0, rgba(224, 50, 2, 0.24), transparent 27rem), radial-gradient(circle at 92% 80%, rgba(34, 197, 94, 0.1), transparent 30rem);
    padding: clamp(4rem, 7vw, 7rem) 0 2rem;
    color: #fff;
}
footer.site-footer-modern::before,
footer.site-footer-modern::after { display: none; }
.site-footer-shell {
    width: min(100%, 84rem);
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}
.site-footer-intro {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(22rem, 0.92fr);
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6.5rem);
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
    padding-bottom: clamp(3rem, 6vw, 5rem);
}
.site-footer-intro-copy { max-width: 45rem; }
.site-footer-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d6d3d1;
}
.site-footer-kicker::before {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: #fb5a2b;
    box-shadow: 0 0 0 0.4rem rgba(251, 90, 43, 0.12);
    content: '';
}
.site-footer-intro h2 {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(2.75rem, 5.2vw, 5rem);
    font-weight: 780;
    letter-spacing: -0.06em;
    line-height: 0.98;
    text-wrap: balance;
}
.site-footer-intro-summary {
    max-width: 39rem;
    margin: 1.5rem 0 0;
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    line-height: 1.65;
    color: #a8a29e;
}
.site-footer-intro-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 2rem; }
.site-footer-primary-action,
.site-footer-secondary-action,
.site-footer-whatsapp {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 999px;
    padding: 0.85rem 1.3rem;
    font-weight: 680;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.site-footer-primary-action { background: #fff; color: #171717; }
.site-footer-primary-action:hover { background: #f5f5f4; transform: translateY(-2px); }
.site-footer-secondary-action { border: 1px solid rgba(255, 255, 255, 0.22); color: #f5f5f4; }
.site-footer-secondary-action:hover { border-color: rgba(255, 255, 255, 0.5); background: rgba(255, 255, 255, 0.07); }
.site-footer-field-art {
    position: relative;
    min-height: clamp(19rem, 29vw, 25rem);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: clamp(1.75rem, 4vw, 3rem);
    background: #292524;
    box-shadow: 0 34px 80px rgba(0, 0, 0, 0.24);
}
.site-footer-field-art::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(23, 23, 23, 0.03) 42%, rgba(23, 23, 23, 0.82) 100%);
    content: '';
    pointer-events: none;
}
.site-footer-field-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
.site-footer-field-caption {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    left: 1.1rem;
    z-index: 2;
    display: flex;
    min-height: 3rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(23, 23, 23, 0.66);
    backdrop-filter: blur(0.75rem);
    padding: 0.65rem 0.85rem 0.65rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #fff;
}
.site-footer-field-caption span:last-child { flex: 0 0 auto; color: #fdba74; }
.site-footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(8rem, 0.55fr) minmax(17rem, 1fr) minmax(12rem, 0.76fr);
    align-items: start;
    gap: clamp(1.75rem, 3.5vw, 3.5rem);
    padding-block: clamp(3rem, 6vw, 5rem);
}
.site-footer-grid h3 {
    margin: 0 0 1.25rem;
    font-size: 0.72rem;
    font-weight: 750;
    letter-spacing: 0.11em;
    text-transform: uppercase;
    color: #a8a29e;
}
.site-footer-brand-link { display: flex; min-height: 2.75rem; align-items: center; gap: 0.9rem; color: #fff; }
.site-footer-brand-link span { max-width: 17rem; font-size: 0.88rem; font-weight: 720; line-height: 1.35; }
.site-footer-logo { width: 7.5rem; height: auto; filter: saturate(0.95) brightness(1.12); }
.site-footer-brand > p { max-width: 29rem; margin: 1.5rem 0 0; font-size: 0.95rem; line-height: 1.75; color: #a8a29e; }
.site-footer-legal-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
    margin: 1.5rem 0 0;
}
.site-footer-legal-facts div { display: flex; align-items: baseline; gap: 0.5rem; }
.site-footer-legal-facts dt { font-size: 0.68rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: #c7c2bd; }
.site-footer-legal-facts dd { margin: 0; font-size: 0.78rem; color: #d6d3d1; }
.site-footer-nav ul,
.site-footer-contact ul { display: grid; gap: 0.25rem; margin: 0; padding: 0; list-style: none; }
.site-footer-nav a {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    margin-inline: -0.4rem;
    padding-inline: 0.4rem;
    color: #d6d3d1;
    transition: color 0.2s ease, transform 0.2s ease;
}
.site-footer-nav a:hover { color: #fff; transform: translateX(0.2rem); }
.site-footer-contact li { display: grid; min-height: 3.75rem; grid-template-columns: 1.5rem minmax(0, 1fr); align-items: center; gap: 0.75rem; padding-block: 0.25rem; color: #d6d3d1; }
.site-footer-contact li > span:first-child { display: inline-flex; width: 1.5rem; min-height: 2.75rem; align-items: center; justify-content: center; color: #fb7650; }
.site-footer-contact a { display: flex; min-height: 2.75rem; align-items: center; color: #f5f5f4; overflow-wrap: anywhere; }
.site-footer-contact-value { display: flex; min-height: 2.75rem; align-items: center; line-height: 1.5; overflow-wrap: anywhere; }
.site-footer-whatsapp {
    width: fit-content;
    min-height: 2.75rem;
    margin-top: 1rem;
    border: 1px solid rgba(74, 222, 128, 0.32);
    background: rgba(34, 197, 94, 0.1);
    padding-block: 0.65rem;
    color: #bbf7d0;
}
.site-footer-whatsapp:hover { border-color: rgba(74, 222, 128, 0.6); background: rgba(34, 197, 94, 0.16); }
.site-footer-proof { display: flex; flex-direction: column; }
.site-footer-proof-item { display: grid; grid-template-columns: 3.4rem minmax(0, 1fr); align-items: center; gap: 0.85rem; padding-block: 0.8rem; }
.site-footer-proof-item + .site-footer-proof-item { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.site-footer-proof-item img { width: 3.4rem; max-height: 3.4rem; object-fit: contain; }
.site-footer-proof-item p { margin: 0; font-size: 0.8rem; line-height: 1.45; color: #a8a29e; }
.site-footer-socials { display: flex; gap: 0.5rem; margin-top: 1rem; }
.site-footer-socials a {
    display: inline-flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #e7e5e4;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}
.site-footer-socials a:hover { border-color: rgba(255, 255, 255, 0.45); background: rgba(255, 255, 255, 0.08); }
.site-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-right: 4.75rem;
    padding-top: 1.75rem;
}
.site-footer-bottom p { margin: 0; font-size: 0.72rem; color: #b8b3ae; }
.site-footer-trust-links { display: flex; align-items: center; gap: 1rem; }
.site-footer-trust-links a { display: inline-flex; min-width: 2.75rem; min-height: 2.75rem; align-items: center; justify-content: center; }
.site-footer-trust-links img { max-width: 3.25rem; height: auto; filter: grayscale(1) brightness(1.65); opacity: 0.72; transition: filter 0.2s ease, opacity 0.2s ease; }
.site-footer-trust-links a:hover img { filter: none; opacity: 1; }

@media (max-width: 1199px) {
    .site-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 3.5rem clamp(3rem, 8vw, 6rem); }
}

@media (max-width: 1023px) {
    .site-footer-intro { grid-template-columns: 1fr; align-items: start; }
    .site-footer-field-art { width: min(100%, 42rem); min-height: 19rem; }
}

@media (max-width: 639px) {
    footer.site-footer-modern { padding-top: 4rem; }
    .site-footer-intro h2 { font-size: clamp(2.75rem, 13vw, 4rem); }
    .site-footer-grid { grid-template-columns: 1fr; }
    .site-footer-intro-actions { display: grid; grid-template-columns: 1fr; }
    .site-footer-grid { gap: 2.75rem; }
    .site-footer-field-art { min-height: 17rem; border-radius: 1.75rem; }
    .site-footer-bottom { align-items: flex-start; flex-direction: column; padding-right: 0; padding-bottom: 3.5rem; }
    .site-footer-bottom p { max-width: 17rem; }
    .site-footer-whatsapp { width: 100%; }
}

/* Long-form legal pages use the same warm editorial reading rhythm. */
.legal-editorial-page { padding-block: clamp(5rem, 9vw, 9rem); }
.legal-editorial-shell { position: relative; }
.legal-editorial-header,
.legal-editorial-content {
    width: min(100%, 58rem);
    margin-inline: auto;
}
.legal-editorial-header { margin-bottom: clamp(2.5rem, 6vw, 5rem); }
.legal-editorial-title {
    max-width: 13ch;
    margin: 0;
    font-size: clamp(3rem, 6vw, 5.75rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.95;
    color: #171717;
    text-wrap: balance;
}
.legal-editorial-summary {
    max-width: 43rem;
    margin: 1.5rem 0 0;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.7;
    color: #57534e;
}
.legal-editorial-updated { margin-top: 1.5rem; }
.legal-editorial-updated p {
    display: inline-flex;
    align-items: center;
    margin: 0;
    border: 1px solid #e5e0d7;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    color: #78716c;
}
.legal-editorial-content {
    border: 1px solid #ebe7df;
    border-radius: clamp(1.5rem, 3vw, 2.5rem);
    background: #fff;
    padding: clamp(1.5rem, 5vw, 4.5rem);
    box-shadow: 0 24px 70px rgba(46, 38, 24, 0.07);
}
.legal-editorial-header > .bg-green-50 { margin-top: 2rem; }
.legal-editorial-page .bg-blue-50,
.legal-editorial-page .bg-green-50,
.legal-editorial-page .bg-yellow-50 {
    border-color: #e5e0d7;
    border-radius: 1.25rem;
    background: #f7f4ed;
}
.legal-editorial-page .bg-blue-50 .text-blue-600,
.legal-editorial-page .bg-blue-50 .text-blue-900,
.legal-editorial-page .bg-blue-50 .text-blue-800,
.legal-editorial-page .bg-green-50 .text-green-600,
.legal-editorial-page .bg-green-50 .text-green-900,
.legal-editorial-page .bg-green-50 .text-green-800 { color: #44403c; }
.legal-editorial-prose > h2 {
    margin-top: clamp(3rem, 6vw, 4.5rem);
    margin-bottom: 1rem;
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 740;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #1c1917;
}
.legal-editorial-prose > h2:first-child { margin-top: 0; }
.legal-editorial-prose > p,
.legal-editorial-prose > ul { font-size: 1rem; line-height: 1.75; color: #57534e; }
.legal-editorial-page details,
.legal-editorial-page .bg-white.rounded-xl,
.legal-editorial-page .bg-white.rounded-lg {
    border-color: #e8e3da;
    border-radius: 1.25rem;
    box-shadow: none;
}
.legal-editorial-page details { background: #fbfaf7; }
.legal-editorial-page details summary { min-height: 2.75rem; align-items: center; }
.legal-editorial-page .border-2 { border-width: 1px; border-color: #e8e3da; }
.legal-editorial-page .public-content-table { border-color: #e5e0d7; box-shadow: none; }
.legal-editorial-page .public-content-table th { background: #292524; }
.legal-editorial-page .public-content-table tbody tr:hover { background: #fbfaf7; }
.dark .legal-editorial-title { color: #f9fafb; }
.dark .legal-editorial-summary { color: #d1d5db; }
.dark .legal-editorial-content,
.dark .legal-editorial-page details { border-color: #374151; background: #1f2937; }
.dark .legal-editorial-prose > h2 { color: #f9fafb; }
.dark .legal-editorial-prose > p,
.dark .legal-editorial-prose > ul { color: #d1d5db; }

@media (max-width: 639px) {
    .legal-editorial-page { padding-block: 4rem; }
    .legal-editorial-title { font-size: clamp(2.75rem, 13vw, 4rem); }
    .legal-editorial-content { padding: 1.25rem; }
    .legal-editorial-page details { padding: 1.15rem; }
}

/* Article sidebar follows the neutral editorial card system. */
.blog-sidebar-editorial-panel {
    display: grid;
    gap: 1.5rem;
    border: 1px solid #ebe7df;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.86);
    padding: 1.25rem;
    box-shadow: 0 18px 50px rgba(46, 38, 24, 0.06);
}
.blog-sidebar-editorial h3 { letter-spacing: 0.1em; color: #78716c; }
.blog-sidebar-latest-card {
    border-radius: 1rem;
    padding: 0.65rem;
    transition: background-color 0.2s ease, transform 0.2s ease;
}
.blog-sidebar-latest-card:hover { background: #f7f4ed; transform: translateX(0.15rem); }
.blog-sidebar-editorial .blog-sidebar-latest-link { color: #292524; }
.blog-sidebar-editorial .blog-sidebar-latest-link:hover { color: var(--color-primary, #e03202); }
.blog-sidebar-editorial .blog-sidebar-thumb { border-radius: 0.8rem; }
.blog-sidebar-map {
    overflow: hidden;
    border: 1px solid #e8e3da;
    border-radius: 1.1rem;
    background: #fbfaf7;
    padding: 0.65rem;
}
.blog-sidebar-editorial-cta {
    border-radius: 1.15rem;
    background: #f7f4ed;
    padding: 1.25rem;
}
.dark .blog-sidebar-editorial-panel,
.dark .blog-sidebar-map,
.dark .blog-sidebar-editorial-cta { border-color: #374151; background: #1f2937; }
.dark .blog-sidebar-editorial .blog-sidebar-latest-link { color: #f9fafb; }

/* ==========================================================================
   Public inner pages — warm, relaxed editorial system
   ========================================================================== */
.public-inner-page,
.public-inner-section,
.blog-editorial-wrapper {
    background: #fbfaf7;
    color: #1c1917;
}
.public-inner-shell {
    width: min(100%, 84rem);
    margin-inline: auto;
    padding-inline: clamp(1rem, 3vw, 2.5rem);
}
.public-inner-kicker {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0 0 1.25rem;
    font-size: 0.75rem;
    font-weight: 760;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #57534e;
}
.public-inner-kicker::before {
    width: 0.7rem;
    height: 0.7rem;
    flex: 0 0 auto;
    border-radius: 999px;
    background: var(--color-primary, #e03202);
    box-shadow: 0 0 0 0.45rem rgba(224, 50, 2, 0.09);
    content: '';
}
.public-inner-title {
    max-width: 12ch;
    margin: 0;
    font-size: clamp(3rem, 6.2vw, 6.25rem);
    font-weight: 790;
    letter-spacing: -0.065em;
    line-height: 0.94;
    color: #171717;
    text-wrap: balance;
}
.public-inner-lede {
    max-width: 43rem;
    margin: 1.75rem 0 0;
    font-size: clamp(1.05rem, 1.5vw, 1.2rem);
    line-height: 1.75;
    color: #57534e;
}
.public-inner-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    margin-top: 2rem;
}
.public-inner-section { padding-block: clamp(5rem, 8vw, 8rem); }

/* About */
.about-editorial-hero {
    position: relative;
    overflow: hidden;
    padding-block: clamp(4.5rem, 8vw, 8rem);
}
.about-editorial-hero .about-hero-bg {
    background:
        radial-gradient(circle at 8% 22%, rgba(224, 50, 2, 0.075), transparent 28rem),
        radial-gradient(circle at 88% 62%, rgba(34, 197, 94, 0.06), transparent 30rem);
}
.about-editorial-hero .about-hero-bg > * { display: none; }
.about-editorial-shell { position: relative; z-index: 1; }
.about-editorial-copy {
    display: grid;
    max-width: 42rem;
    gap: 1rem;
    font-size: clamp(1.02rem, 1.45vw, 1.16rem);
    line-height: 1.75;
    color: #57534e;
}
.about-editorial-copy p { margin: 0; }
.about-editorial-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin-top: 2.5rem;
    overflow: hidden;
    border-radius: 1.5rem;
    background: #1c1917;
    padding: 1.5rem;
    box-shadow: 0 20px 50px rgba(28, 25, 23, 0.15);
}
.about-editorial-stat { min-width: 0; padding: 0.65rem 1.15rem; }
.about-editorial-stat + .about-editorial-stat { border-left: 1px solid rgba(255, 255, 255, 0.13); }
.about-editorial-stat h3 { margin: 0 0 0.65rem; color: #fb5a2b; }
.about-editorial-stat p { margin: 0; color: #bdb8b1; }
.about-editorial-stat p strong { color: #fff; }
.about-editorial-stat .about-stat-unit { color: #d6d3d1; }
.about-editorial-hero .hero-image-wrapper {
    border: 1px solid rgba(28, 25, 23, 0.07);
    border-radius: 1.5rem;
    box-shadow: 0 20px 55px rgba(46, 38, 24, 0.11);
}
.about-values-section { background: #fff; }
.about-values-section .grid { gap: 1rem; }
.about-values-card {
    border: 1px solid #ebe7df;
    border-radius: 1.5rem;
    background: #fbfaf7;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    text-align: left;
}
.about-values-card h4 { margin-top: 1.5rem; }
.about-values-card p { margin-inline: 0; line-height: 1.7; }
.about-values-icon,
.contact-card-icon {
    display: inline-flex;
    width: 3rem;
    height: 3rem;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: #1c1917;
    color: #fff;
}
.about-gallery-section { overflow: hidden; background: #fbfaf7; }
.about-gallery-frame {
    overflow: hidden;
    border: 1px solid #ebe7df;
    border-radius: clamp(1.5rem, 3vw, 2.75rem);
    background: #fff;
    padding-block: clamp(0.75rem, 2vw, 1.5rem);
    box-shadow: 0 24px 65px rgba(46, 38, 24, 0.08);
}

/* Products */
.products-editorial-hero {
    position: relative;
    min-height: min(48rem, calc(100vh - 5rem));
    overflow: hidden;
    padding-block: clamp(5rem, 9vw, 9rem);
}
.products-hero-media {
    position: absolute;
    top: clamp(1.5rem, 4vw, 4rem);
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1.5rem, 4vw, 4rem);
    width: min(47%, 43rem);
    overflow: hidden;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 28px 70px rgba(46, 38, 24, 0.16);
}
.products-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(28, 25, 23, 0.08), rgba(28, 25, 23, 0.2));
}
.products-hero-copy { position: relative; z-index: 1; }
.products-hero-copy-inner { width: min(50%, 42rem); }
.products-hero-lede { font-size: clamp(1rem, 1.35vw, 1.12rem); }
.products-proof-list {
    display: grid;
    max-width: 39rem;
    gap: 0.65rem;
    margin-top: 2rem;
}
.products-proof-list > * {
    width: fit-content;
    min-height: 2.75rem;
    border-color: #e7e2d8;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 8px 25px rgba(46, 38, 24, 0.05);
    backdrop-filter: blur(10px);
}
.products-proof-list > * span { color: #292524; }
.products-seed-section { background: #fff; }
.products-seed-story {
    overflow: hidden;
    border: 1px solid #ebe7df;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background: #fbfaf7;
    padding-block: clamp(1.25rem, 3vw, 2.5rem);
    box-shadow: 0 24px 65px rgba(46, 38, 24, 0.08);
}
.products-seed-story > .grid { padding-inline: clamp(0.25rem, 2vw, 1.5rem); }
.products-list-section { padding-top: 0; }
.products-editorial-row {
    scroll-margin-top: 8rem;
    border-top: 1px solid #e5e0d7;
    padding-block: clamp(3.5rem, 7vw, 7rem);
}
.products-editorial-row:first-child { border-top: 0; }
.products-editorial-row .relative.w-full { border-radius: 1.5rem; box-shadow: 0 20px 50px rgba(46, 38, 24, 0.1); }
.products-stats-section { background: #fbfaf7; padding-top: 0; }
.products-stats-panel {
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background: #1c1917;
    padding-block: clamp(1.25rem, 3vw, 2.5rem);
}
.products-stats-panel > .grid { padding-inline: clamp(0.25rem, 2vw, 1.5rem); }
.products-stats-panel .bg-white { border-color: rgba(255, 255, 255, 0.09); background: rgba(255, 255, 255, 0.06); box-shadow: none; }
.products-stats-panel .text-gray-900,
.products-stats-panel .text-gray-950 { color: #fff; }
.products-stats-panel .text-gray-600 { color: #bdb8b1; }
.products-cta-section { background: #fbfaf7; padding: 0 0 clamp(5rem, 8vw, 8rem); }

/* Blog */
.blog-editorial-shell { padding-block: clamp(4rem, 7vw, 7rem); }
.blog-editorial-hero {
    border: 1px solid #ebe7df;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    background:
        radial-gradient(circle at 90% 0, rgba(224, 50, 2, 0.08), transparent 25rem),
        #fff;
    padding: clamp(2rem, 5vw, 4rem);
    box-shadow: 0 22px 60px rgba(46, 38, 24, 0.07);
}
.blog-editorial-hero .blog-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    letter-spacing: -0.06em;
    color: #171717;
}
.blog-card {
    border: 1px solid #ebe7df;
    border-radius: 1.5rem;
    box-shadow: 0 12px 40px rgba(46, 38, 24, 0.06);
}
.blog-card img { transition: transform 0.35s ease; }
.blog-card:hover img { transform: scale(1.025); }
.blog-load-more { min-height: 3rem; border-color: #d8d2c7; padding-inline: 1.5rem; color: #292524; }
.blog-post-article .blog-post-main,
.blog-post-article .blog-sidebar-panel { border-radius: 1.5rem; }

/* Contact */
.contact-editorial-hero {
    position: relative;
    min-height: min(43rem, calc(100vh - 5rem));
    overflow: hidden;
    padding-block: clamp(5rem, 9vw, 9rem);
}
.contact-editorial-hero > .absolute {
    top: clamp(1.5rem, 4vw, 4rem);
    right: clamp(1rem, 3vw, 2.5rem);
    bottom: clamp(1.5rem, 4vw, 4rem);
    left: auto;
    width: min(47%, 43rem);
    overflow: hidden;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 28px 70px rgba(46, 38, 24, 0.14);
}
.contact-editorial-hero .contact-hero-image { opacity: 1; }
.contact-editorial-hero .contact-hero-gradient { background: linear-gradient(135deg, rgba(28, 25, 23, 0.05), rgba(28, 25, 23, 0.17)); }
.contact-hero-copy { position: relative; z-index: 1; }
.contact-hero-copy-inner { width: min(50%, 42rem); }
.contact-hero-lede { font-size: clamp(1rem, 1.35vw, 1.12rem); }
.contact-details-section { background: #fff; }
.contact-headquarters {
    display: flex;
    align-items: center;
    gap: clamp(2.5rem, 6vw, 6rem);
    margin-bottom: clamp(3rem, 6vw, 5rem);
}
.contact-section-title {
    margin: 0 0 1.5rem;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 780;
    letter-spacing: -0.055em;
    line-height: 0.98;
    color: #171717;
}
.building-image-wrapper { min-height: 25rem; border-radius: 2rem; box-shadow: 0 22px 60px rgba(46, 38, 24, 0.12); }
.contact-info-card {
    height: 100%;
    border: 1px solid #ebe7df;
    border-radius: 1.5rem;
    background: #fbfaf7;
    padding: clamp(1.5rem, 3vw, 2.1rem);
    box-shadow: none;
}
.contact-info-card a[href^="tel:"],
.contact-info-card a[href^="mailto:"] {
    display: flex;
    min-height: 2.75rem;
    align-items: center;
}
.contact-card-title { margin: 1.25rem 0 1.5rem; font-size: 1.25rem; font-weight: 720; color: #1c1917; }
.contact-map-section { background: #fff; padding: 0 0 clamp(5rem, 8vw, 8rem); }
.contact-map-frame {
    height: clamp(26rem, 50vw, 38rem);
    overflow: hidden;
    border: 1px solid #e5e0d7;
    border-radius: clamp(1.75rem, 3vw, 2.75rem);
    box-shadow: 0 24px 65px rgba(46, 38, 24, 0.1);
}

.dark .public-inner-page,
.dark .public-inner-section,
.dark .blog-editorial-wrapper,
.dark .products-cta-section,
.dark .contact-map-section { background: #111827; color: #f9fafb; }
.dark .public-inner-title,
.dark .contact-section-title { color: #f9fafb; }
.dark .public-inner-kicker,
.dark .public-inner-lede,
.dark .about-editorial-copy { color: #d1d5db; }
.dark .about-values-section,
.dark .products-seed-section,
.dark .contact-details-section { background: #111827; }
.dark .about-values-card,
.dark .products-seed-story,
.dark .contact-info-card,
.dark .blog-editorial-hero { border-color: #374151; background: #1f2937; }
.dark .contact-card-title { color: #f9fafb; }

@media (max-width: 1023px) {
    .products-editorial-hero,
    .contact-editorial-hero { min-height: 0; padding-top: 1rem; }
    .products-hero-media,
    .contact-editorial-hero > .absolute {
        position: relative;
        inset: auto;
        width: auto;
        height: 19rem;
        margin-inline: 1rem;
        border-radius: 1.75rem;
    }
    .products-hero-copy,
    .contact-hero-copy { padding-top: 3.5rem; }
    .products-hero-copy-inner,
    .contact-hero-copy-inner { width: 100%; }
    .about-editorial-stats { grid-template-columns: 1fr; }
    .about-editorial-stat { padding: 1.25rem 0; }
    .about-editorial-stat + .about-editorial-stat { border-top: 1px solid rgba(255, 255, 255, 0.13); border-left: 0; }
    .contact-headquarters { align-items: stretch; flex-direction: column; }
}

@media (max-width: 767px) {
    .public-inner-title { font-size: clamp(2.8rem, 14vw, 4.25rem); }
    .public-inner-hero-actions { align-items: stretch; flex-direction: column; }
    .public-inner-hero-actions a { width: 100%; }
    .products-hero-media,
    .contact-editorial-hero > .absolute { height: 16rem; }
    .products-proof-list > * { width: 100%; }
    .products-seed-story { padding-inline: 0.75rem; }
    .products-editorial-row .grid > :first-child { order: 1; }
    .products-editorial-row .grid > :last-child { order: 2; }
    .about-gallery-frame { padding-inline: 0; }
    .blog-auto-toc ol { grid-template-columns: 1fr; }
    .about-editorial-media { order: -1; margin-top: 0; padding-top: 0; }
    .about-editorial-media > .grid { display: block; }
    .about-editorial-media > .grid > div { display: none; }
    .about-editorial-media > .grid > div:first-child { display: block; padding-top: 0; }
    .about-editorial-media > .grid > div:first-child > * { display: none; }
    .about-editorial-media > .grid > div:first-child > *:first-child {
        display: block;
        height: 16rem;
        overflow: hidden;
    }
    .about-editorial-media .hero-image-wrapper,
    .about-editorial-media .hero-image-wrapper picture,
    .about-editorial-media .hero-image-wrapper img { height: 100%; }
    .about-editorial-media .hero-image-wrapper > .relative { height: 100%; }
    .about-editorial-media .hero-image-wrapper picture { display: block; }
    .about-editorial-media .hero-image-wrapper img {
        position: absolute;
        inset: 0;
        width: 100%;
        object-fit: cover;
    }
    .building-image-wrapper { min-height: 19rem; }
}

@keyframes whatsappPulse {
    0% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.8), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
    100% {
        box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    }
}

/* ==========================================================================
   Public UX audit refinements — consent, discovery and editorial rhythm
   ========================================================================== */
.site-cookie-banner {
    width: min(46rem, calc(100vw - 3rem));
    flex-wrap: wrap;
}
.site-cookie-copy { flex: 1 1 calc(100% - 4rem); }
.site-cookie-actions {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.55rem;
    padding-left: 3.75rem;
}
.site-cookie-action {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 0.8rem;
    cursor: pointer;
    padding: 0.65rem 0.95rem;
    font-size: 0.78rem;
    font-weight: 750;
    transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}
.site-cookie-action-secondary { background: transparent; color: #f5f5f4; }
.site-cookie-action-secondary:hover { border-color: rgba(255, 255, 255, 0.44); background: rgba(255, 255, 255, 0.08); }
.site-cookie-action-primary { border-color: #fff; background: #fff; color: #171717; }
.site-cookie-action-primary:hover { background: #f0eee9; transform: translateY(-1px); }
.site-cookie-action:focus-visible,
.site-cookie-policy-link:focus-visible { outline: 3px solid rgba(251, 139, 107, 0.65); outline-offset: 3px; }
.site-cookie-preferences {
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    padding-top: 1rem;
}
.site-cookie-preferences.hidden,
.site-cookie-action.hidden { display: none; }
.site-cookie-preference-row {
    display: flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: 0.8rem;
    background: rgba(255, 255, 255, 0.06);
    padding: 0.7rem 0.85rem;
}
.site-cookie-preference-row strong { margin: 0; font-size: 0.82rem; }
.site-cookie-preference-row small { display: block; margin-top: 0.15rem; color: #bdbdbd; line-height: 1.35; }
.site-cookie-required { flex: 0 0 auto; font-size: 0.7rem; font-weight: 750; color: #fdba74; }
.site-cookie-preference-row input { width: 1.25rem; height: 1.25rem; accent-color: var(--color-primary, #e03202); }

.home-product-card-link { display: block; border-radius: 1.5rem; color: inherit; text-decoration: none; }
.home-product-card-link:focus-visible { outline: 4px solid rgba(224, 50, 2, 0.28); outline-offset: 4px; }
.home-product-card-link:focus-visible .home-product-card { transform: translateY(-4px); }
.home-seed-actions,
.products-seed-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.home-seed-story { margin-top: clamp(4rem, 7vw, 7rem); }
.products-seed-section { padding-top: clamp(3.5rem, 6vw, 5rem); }
.public-inner-section { padding-block: clamp(4rem, 6.5vw, 6.5rem); }

.video-container {
    width: min(100%, 60rem);
    height: auto;
    max-height: min(78vh, 45rem);
    aspect-ratio: 4 / 3;
}
.hero-video { filter: grayscale(0.55) saturate(0.9); }

.about-gallery-frame { padding: clamp(1.25rem, 3vw, 2.5rem); }
.about-gallery-heading { max-width: 48rem; margin-bottom: clamp(1.5rem, 3vw, 2.5rem); }
.about-gallery-heading h2 {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3.75rem);
    font-weight: 780;
    letter-spacing: -0.05em;
    line-height: 1;
    color: #171717;
    text-wrap: balance;
}
.about-gallery-grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); gap: clamp(0.7rem, 1.5vw, 1.25rem); }
.about-gallery-item { grid-column: span 6; min-height: 20rem; overflow: hidden; border-radius: clamp(1rem, 2vw, 1.5rem); background: #eee9df; }
.about-gallery-item-1,
.about-gallery-item-4 { grid-column: span 7; }
.about-gallery-item-2,
.about-gallery-item-3 { grid-column: span 5; }
.about-gallery-item picture,
.about-gallery-image { display: block; width: 100%; height: 100%; }
.about-gallery-image { object-fit: cover; transition: transform 0.4s ease; }
.about-gallery-item:hover .about-gallery-image { transform: scale(1.018); }
.dark .about-gallery-heading h2 { color: #f9fafb; }

.blog-discovery { display: grid; gap: 0.8rem; margin-top: 2rem; }
.blog-search-label { font-size: 0.75rem; font-weight: 750; letter-spacing: 0.08em; text-transform: uppercase; color: #57534e; }
.blog-search-field {
    display: flex;
    max-width: 42rem;
    min-height: 3.25rem;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid #ded9cf;
    border-radius: 1rem;
    background: #fbfaf7;
    padding: 0.75rem 1rem;
    color: #78716c;
}
.blog-search-field:focus-within { border-color: #e03202; box-shadow: 0 0 0 4px rgba(224, 50, 2, 0.1); }
.blog-search-field input { width: 100%; border: 0; outline: 0; background: transparent; color: #1c1917; }
.blog-filter-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.blog-filter { min-height: 2.75rem; border: 1px solid #ded9cf; border-radius: 999px; background: #fff; padding: 0.55rem 0.9rem; font-size: 0.78rem; font-weight: 700; color: #57534e; }
.blog-filter:hover,
.blog-filter.is-active { border-color: #1c1917; background: #1c1917; color: #fff; }
.blog-card-link { display: block; border-radius: 1.5rem; color: inherit; text-decoration: none; }
.blog-card-link[hidden] { display: none !important; }
.blog-card-link:focus-visible { outline: 4px solid rgba(224, 50, 2, 0.25); outline-offset: 4px; }
.blog-post-main > .prose { max-width: 72ch; }
.legal-editorial-updated { margin: 1rem 0 0; font-size: 0.78rem; color: #78716c; }

.contact-info-card .site-primary-button-full,
.contact-info-card .site-secondary-button.site-primary-button-full { min-height: 3.25rem; }
.site-footer-field-video { object-position: center 42%; }

@media (max-width: 767px) {
    .site-cookie-banner { right: 0.75rem; bottom: 0.75rem; left: 0.75rem; width: auto; max-height: calc(100dvh - 1.5rem); overflow-y: auto; }
    .site-cookie-copy { width: calc(100% - 3.75rem); flex-basis: calc(100% - 3.75rem); }
    .site-cookie-actions { display: grid; grid-template-columns: 1fr 1fr; padding-left: 0; }
    .site-cookie-action { width: 100%; }
    body.site-cookie-notice-open #whatsappFloat { display: none; }
    .contact-editorial-hero .public-inner-title { max-width: 14ch; font-size: clamp(2.5rem, 12vw, 3.8rem); line-height: 0.98; }
    .about-gallery-frame { margin-inline: 1rem; padding: 1rem; }
    .about-gallery-grid { grid-template-columns: 1fr; }
    .about-gallery-item,
    .about-gallery-item-1,
    .about-gallery-item-2,
    .about-gallery-item-3,
    .about-gallery-item-4 { grid-column: 1; min-height: 15rem; }
    .video-container { height: auto; aspect-ratio: 4 / 3; }
}

@media (prefers-reduced-motion: reduce) {
    .site-cookie-action,
    .about-gallery-image { transition: none; }
    .about-gallery-item:hover .about-gallery-image { transform: none; }
}
