/* ==========================================================================
   PARVADA FOODS - Main Stylesheet
   Corporate B2B Food Supplier Theme
   ========================================================================== */

/* ==========================================================================
   LAYOUT - Container & Grid
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-2xl);
    margin-inline: auto;
    padding-inline: var(--gutter);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--pv-red, #B20708);
    margin-bottom: var(--space-3);
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    color: var(--pv-charcoal-800);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-4);
}

.section-description {
    font-size: var(--text-lg);
    color: var(--pv-charcoal-500);
    max-width: 600px;
    margin-inline: auto;
}

.site-main {
    margin-top: 0;
}

@media (max-width: 1023px) {
    .site-main {
        margin-top: 72px;
    }
}


/* ==========================================================================
   HEADER - Polished with animations
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: var(--pv-white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--space-6);
    max-width: none;
    width: 100%;
    margin-inline: auto;
    padding: var(--space-2) calc(var(--gutter) * 2);
}

@media (min-width: 1024px) {
    .site-header__inner {
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        gap: var(--space-10);
    }
}

/* Logo - Smaller and refined */
.site-header__logo {
    flex-shrink: 0;
}

.site-header__logo img,
.site-header__logo .custom-logo {
    height: 50px;
    width: auto;
    max-width: 178px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

@media (min-width: 1024px) {
    .site-header__logo img,
    .site-header__logo .custom-logo {
        height: 62px;
        max-width: 203px;
    }
}

.site-header__logo:hover img,
.site-header__logo:hover .custom-logo {
    transform: scale(1.03);
}

.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--pv-red, #B20708);
    text-decoration: none;
    letter-spacing: var(--tracking-tight);
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.03);
}

.site-logo__icon {
    font-size: 1.1rem;
}

.site-logo__accent {
    color: var(--pv-charcoal-700);
}

/* Navigation */
.site-header__nav {
    display: none;
}

@media (min-width: 1024px) {
    .site-header__nav {
        display: flex;
        flex: 1;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .site-header__actions {
        justify-self: end;
    }
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-6);
}

@media (min-width: 1200px) {
    .nav-menu {
        gap: var(--space-8);
    }
}

.nav-menu__item a {
    position: relative;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--pv-charcoal-700);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    padding: var(--space-2) 0;
    transition: color 0.3s ease;
}

.nav-menu__item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pv-red, #B20708);
    transition: width 0.3s ease;
}

.nav-menu__item a:hover {
    color: var(--pv-red, #B20708);
}

.nav-menu__item a:hover::after {
    width: 100%;
}

/* Header Actions */
.site-header__actions {
    display: none;
    align-items: center;
    gap: var(--space-3);
}

@media (min-width: 1024px) {
    .site-header__actions {
        display: flex;
        margin-left: auto;
    }
}

/* Mobile Toggle */
.site-header__toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
}

@media (min-width: 1024px) {
    .site-header__toggle {
        display: none;
    }
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}

.hamburger__line {
    width: 100%;
    height: 2px;
    background: var(--pv-charcoal-800);
    border-radius: 2px;
    transition: all var(--duration-normal) var(--ease-default);
}

.site-header__toggle[aria-expanded="true"] .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header__toggle[aria-expanded="true"] .hamburger__line:nth-child(2) {
    opacity: 0;
}

.site-header__toggle[aria-expanded="true"] .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--pv-white);
    padding: var(--space-6) var(--gutter);
    transform: translateX(100%);
    transition: transform var(--duration-slow) var(--ease-default);
    overflow-y: auto;
}

.mobile-menu[aria-hidden="false"] {
    transform: translateX(0);
}

.mobile-nav-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
    margin-bottom: var(--space-8);
}

.mobile-nav-menu li a {
    display: block;
    padding: var(--space-4);
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: var(--font-medium);
    color: var(--pv-charcoal-800);
    border-radius: 0;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.mobile-nav-menu li a:hover {
    background: var(--pv-charcoal-50);
    border-left-color: var(--pv-red, #B20708);
    padding-left: var(--space-5);
}

.mobile-menu__actions {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
    margin-bottom: var(--space-8);
}

.mobile-menu__contact {
    padding-top: var(--space-6);
    border-top: 1px solid var(--pv-charcoal-100);
    color: var(--pv-charcoal-500);
    font-size: var(--text-sm);
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    font-family: var(--font-heading);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

/* Elegant hover effect */
.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:focus-visible {
    outline: 2px solid var(--pv-red, #B20708);
    outline-offset: 3px;
}

/* Sizes */
.btn--sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn--md {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
}

.btn--lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-sm);
}

.btn--xl {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-base);
}

.btn--full {
    width: 100%;
}

/* Variants */
.btn--primary {
    background: var(--pv-red, #B20708);
    border-color: var(--pv-red, #B20708);
    color: var(--pv-white);
}

.btn--primary:hover {
    background: var(--pv-red-800, #8A0607);
    border-color: var(--pv-red-800, #8A0607);
    color: var(--pv-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 7, 8, 0.4);
}

.btn--secondary {
    background: var(--pv-charcoal-800);
    border-color: var(--pv-charcoal-800);
    color: var(--pv-white);
}

.btn--secondary:hover {
    background: var(--pv-red, #B20708);
    border-color: var(--pv-red, #B20708);
    color: var(--pv-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(178, 7, 8, 0.35);
}

.btn--white {
    background: var(--pv-white);
    border-color: var(--pv-white);
    color: var(--pv-red, #B20708);
}

.btn--white:hover {
    background: var(--pv-white);
    border-color: var(--pv-white);
    color: var(--pv-red-800, #8A0607);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
    background: transparent;
    border-color: var(--pv-white);
    color: var(--pv-white);
}

.btn--outline-white:hover {
    background: var(--pv-white);
    border-color: var(--pv-white);
    color: var(--pv-red, #B20708);
    transform: translateY(-3px);
}

.btn--whatsapp {
    background: var(--pv-whatsapp);
    border-color: var(--pv-whatsapp);
    color: var(--pv-white);
}

.btn--whatsapp:hover {
    background: #1FAF54;
    border-color: #1FAF54;
    color: var(--pv-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.btn__icon {
    flex-shrink: 0;
}

.btn__icon--after {
    transition: transform var(--duration-fast) var(--ease-default);
}

.btn:hover .btn__icon--after {
    transform: translateX(4px);
}


/* ==========================================================================
   HERO SECTION - Split Layout with Gradient Fade
   ========================================================================== */

.hero {
    height: 100vh;
    height: 100svh;
    position: relative;
    overflow: hidden;
    margin-top: -72px; /* Overlap with header */
}

.hero__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .hero__inner {
        flex-direction: row;
    }
}

/* Hero Content - Left Panel with Gradient */
.hero__content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    /* Mobile: Solid red background - no gradient, 50% height */
    background: var(--hero-bg, rgb(178, 7, 8));
    flex: 0 0 50%;
    height: 50%;
    padding-top: 72px; /* Account for header overlap */
    box-sizing: border-box;
}

@media (min-width: 1024px) {
    .hero__content {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 100%;
        flex: none;
        justify-content: flex-start;
        background: linear-gradient(
            90deg, 
            var(--hero-bg, rgb(178, 7, 8)) 0%, 
            var(--hero-bg, rgb(178, 7, 8)) 38%, 
            var(--hero-bg-mid, rgb(181, 24, 25)) 53%, 
            rgba(178, 7, 8, 0.4) 71%, 
            rgba(215, 215, 215, 0) 88%
        );
    }
}

/* Gradient element - not needed anymore but kept for compatibility */
.hero__gradient {
    display: none;
}

.hero__content-inner {
    position: relative;
    z-index: 5;
    padding: var(--space-10) var(--gutter);
    max-width: 100%;
    width: 100%;
}

@media (min-width: 1024px) {
    .hero__content-inner {
        padding: var(--space-12) var(--space-10);
        max-width: 52%;
    }
}

@media (min-width: 1440px) {
    .hero__content-inner {
        padding-left: var(--space-16);
        padding-right: var(--space-8);
        max-width: 50%;
    }
}

/* Title - Big Display Font */
.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 10vw, 4.5rem);
    font-weight: 900;
    color: var(--hero-text, var(--pv-white));
    line-height: 0.95;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    margin-bottom: var(--space-6);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.hero__title br {
    display: block;
}

@media (min-width: 768px) {
    .hero__title {
        font-size: clamp(3.5rem, 8vw, 5rem);
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: clamp(3.5rem, 4.5vw + 0.5rem, 5.5rem);
    }
}

@media (min-width: 1440px) {
    .hero__title {
        font-size: clamp(4rem, 4vw + 1rem, 6rem);
    }
}

/* Subtitle / Body Text */
.hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--font-medium);
    color: var(--hero-body, rgba(255, 255, 255, 0.9));
    line-height: var(--leading-relaxed);
    max-width: 420px;
}

@media (max-width: 1023px) {
    .hero__subtitle {
        font-size: var(--text-sm);
        max-width: 100%;
    }
}

/* Hero Slider - Full Width Behind Gradient */
.hero__slider {
    position: relative;
    flex: 0 0 50%;
    height: 50%;
}

@media (min-width: 1024px) {
    .hero__slider {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        flex: none;
        z-index: 1;
    }
}

.slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.slider__track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s var(--ease-default);
}

.slider__slide.is-active {
    opacity: 1;
}

.slider__image-wrap {
    width: 100%;
    height: 100%;
    animation: floatImage 8s ease-in-out infinite;
}

.slider__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: right center;
    animation: subtleZoom 12s ease-in-out infinite alternate;
}

/* Floating effect for slider images */
@keyframes floatImage {
    0%, 100% {
        transform: scale(1);
    }
    25% {
        transform: scale(1.015);
    }
    50% {
        transform: scale(1.02);
    }
    75% {
        transform: scale(1.01);
    }
}

/* Subtle zoom effect */
@keyframes subtleZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.02);
    }
}

/* No controls visible - clean minimal slider */
.slider__controls,
.slider__dots,
.slider__label {
    display: none;
}

/* Trust Chips - for use elsewhere */
.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 0;
    font-size: var(--text-sm);
    color: var(--pv-white);
    backdrop-filter: blur(4px);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    font-weight: var(--font-medium);
}

.trust-chip__icon {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.9);
}


/* ==========================================================================
   CHECKERED BORDER
   ========================================================================== */

.checkered-border {
    height: 40px;
    background-image: 
        linear-gradient(45deg, var(--pv-red, #B20708) 25%, transparent 25%),
        linear-gradient(-45deg, var(--pv-red, #B20708) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--pv-red, #B20708) 75%),
        linear-gradient(-45deg, transparent 75%, var(--pv-red, #B20708) 75%);
    background-size: 40px 40px;
    background-position: 0 0, 0 20px, 20px -20px, -20px 0px;
}

.checkered-border--footer {
    transform: rotate(180deg);
}

.checkered-border--light {
    background-image: 
        linear-gradient(45deg, var(--pv-white) 25%, transparent 25%),
        linear-gradient(-45deg, var(--pv-white) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, var(--pv-white) 75%),
        linear-gradient(-45deg, transparent 75%, var(--pv-white) 75%);
}

.checkered-border--top,
.checkered-border--bottom {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 1;
}

.checkered-border--top {
    top: 0;
}

.checkered-border--bottom {
    bottom: 0;
}


/* ==========================================================================
   CATEGORIES SECTION
   ========================================================================== */

.categories {
    padding: var(--space-16) 0;
    padding-bottom: var(--space-24); /* Extra space for delivery section overflow */
    background: var(--pv-white);
    position: relative;
    z-index: 1;
}

.categories__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
}

@media (min-width: 768px) {
    .categories__grid {
        grid-template-columns: repeat(6, 1fr);
        gap: var(--space-6);
    }
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-6) var(--space-4);
    background: var(--pv-white);
    border-radius: 0;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--pv-charcoal-100);
}

.category-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.category-card:hover .category-card__icon {
    color: var(--pv-red, #B20708);
    transform: scale(1.1);
}

.category-card__icon {
    width: 64px;
    height: 64px;
    min-width: 64px;
    min-height: 64px;
    color: var(--pv-charcoal-600);
    transition: all var(--duration-normal) var(--ease-default);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.category-card__icon svg,
.category-card__icon img {
    width: 100%;
    height: 100%;
    max-width: 64px;
    max-height: 64px;
    object-fit: contain;
}

.category-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--pv-charcoal-700);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
    text-align: center;
}


/* ==========================================================================
   DELIVERY SECTION
   ========================================================================== */

.delivery {
    background: var(--pv-charcoal-800);
    overflow: visible; /* Allow image to overflow */
    position: relative;
    z-index: 2; /* Above categories section */
}

.delivery__inner {
    display: flex;
    flex-direction: column;
    overflow: visible;
    max-height: none;
}

@media (min-width: 1024px) {
    .delivery__inner {
        flex-direction: row;
        align-items: stretch;
        overflow: visible;
    }
}

/* Visual */
.delivery__visual {
    flex: 1;
    min-height: 280px;
    position: relative;
    overflow: visible;
    max-height: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery__image-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.delivery__image {
    width: 100%;
    height: auto;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
}

@media (min-width: 1024px) {
    .delivery__visual {
        flex: 0 0 55%;
        min-height: 500px;
        overflow: visible;
        /* Overflow effect */
        margin-top: -40px;
        margin-bottom: -40px;
        margin-left: -40px;
    }
    
    .delivery__image-wrap {
        width: calc(100% + 40px);
        height: auto;
        min-height: 100%;
    }
    
    .delivery__image {
        width: 100%;
        height: auto;
        min-height: 500px;
        object-fit: cover;
        object-position: center center;
    }
}

/* Content */
.delivery__content {
    flex: 1;
    padding: var(--space-12) var(--gutter);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: visible;
    max-height: none;
}

@media (min-width: 1024px) {
    .delivery__content {
        flex: 0 0 50%;
        padding: var(--space-16) var(--space-12);
        align-items: flex-start;
        text-align: left;
    }
}

.delivery__eyebrow {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    color: var(--pv-red-300, #E05555);
    margin-bottom: var(--space-4);
}

.delivery__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw + 1rem, 3.5rem);
    font-weight: var(--font-regular);
    color: var(--pv-white);
    line-height: var(--leading-tight);
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.delivery__title .highlight {
    color: var(--pv-red-300, #E05555);
}

.delivery__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.8);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-8);
}

.delivery__benefits {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    margin-bottom: var(--space-10);
    text-align: left;
    align-self: stretch;
}

@media (min-width: 1024px) {
    .delivery__benefits {
        align-self: auto;
    }
}

.delivery__benefit {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    color: var(--pv-white);
    font-size: var(--text-base);
}

.benefit-icon {
    flex-shrink: 0;
    color: var(--pv-success);
    margin-top: 2px;
}


/* ==========================================================================
   SHOWCASE SECTION (Phrase + Image)
   ========================================================================== */

.showcase {
    background: var(--pv-charcoal-50);
    overflow: visible;
}

/* Phrase Area */
.showcase__phrase-wrap {
    padding: var(--space-20) var(--gutter);
    text-align: center;
    background: var(--pv-white);
}

.showcase__phrase {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 0.95;
    color: var(--pv-red);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 auto;
}

.showcase__phrase div {
    white-space: nowrap;
}

.showcase__phrase .highlight {
    color: var(--pv-red);
}

.showcase__phrase .dark {
    color: #7A0506; /* Darker wine red */
}

@media (min-width: 768px) {
    .showcase__phrase-wrap {
        padding: var(--space-24) var(--gutter);
    }
    
    .showcase__phrase {
        font-size: clamp(4rem, 10vw, 8rem);
    }
}

/* Checkered Border for Showcase */
.checkered-border--showcase {
    position: relative;
}

/* Large Image Area */
.showcase__image-wrap {
    width: 100%;
    max-height: 800px;
    overflow: hidden;
}

.showcase__image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}

@media (min-width: 1024px) {
    .showcase__image-wrap {
        height: clamp(420px, 55vw, 800px);
    }
}

.showcase__image-wrap--placeholder {
    background: var(--pv-charcoal-100);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

@media (min-width: 768px) {
    .showcase__image-wrap--placeholder {
        min-height: 500px;
    }
}

.showcase__placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
    color: var(--pv-charcoal-400);
    text-align: center;
    padding: var(--space-8);
}

.showcase__placeholder svg {
    opacity: 0.5;
}

.showcase__placeholder span {
    font-size: var(--text-sm);
}


/* ==========================================================================
   PRODUCTS SECTION
   ========================================================================== */

.products {
    padding: var(--space-20) 0;
    background: var(--pv-charcoal-50);
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    margin-bottom: var(--space-12);
}

@media (min-width: 640px) {
    .products__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-6);
    }
}

@media (min-width: 1024px) {
    .products__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.products__footer {
    text-align: center;
}

.products--page {
    padding: var(--space-16) 0;
}

/* Product Card */
.product-card {
    background: var(--pv-white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--pv-charcoal-100);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
    position: relative;
    aspect-ratio: 1;
    background: var(--pv-charcoal-100);
    overflow: hidden;
}

.product-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform var(--duration-slow) var(--ease-default);
}

.product-card:hover .product-card__image {
    transform: scale(1.05);
}

.product-card__category {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--pv-red, #B20708);
    color: var(--pv-white);
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    border-radius: 0;
}

.product-card__content {
    padding: var(--space-4);
}

.product-card__name {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--pv-charcoal-800);
    margin-bottom: var(--space-1);
    line-height: var(--leading-snug);
}

.product-card__unit {
    display: block;
    font-size: var(--text-sm);
    color: var(--pv-charcoal-500);
    margin-bottom: var(--space-4);
}


/* ==========================================================================
   SOCIAL PROOF SECTION
   ========================================================================== */

.social-proof {
    padding: var(--space-16) 0 0;
    background: var(--pv-white);
}

.social-proof__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    text-align: center;
    margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
    .social-proof__inner {
        grid-template-columns: repeat(7, auto);
        justify-content: center;
        align-items: center;
    }
}

.social-proof__stat {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--pv-red, #B20708);
    line-height: var(--leading-none);
}

/* Ensure consistent brand color throughout */
a:hover,
.link:hover {
    color: var(--pv-red, #B20708);
}

.stat-label {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--pv-charcoal-600);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wide);
}

.social-proof__divider {
    display: none;
    width: 1px;
    height: 48px;
    background: var(--pv-charcoal-200);
}

@media (min-width: 768px) {
    .social-proof__divider {
        display: block;
    }
}

/* Client Logos */
.social-proof__logos {
    text-align: center;
    overflow: hidden;
    background: var(--pv-charcoal-800);
    padding: var(--space-8) var(--gutter);
    margin: var(--space-8) 0 0;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-left: calc(50vw - 50% + var(--gutter));
    padding-right: calc(50vw - 50% + var(--gutter));
}

.social-proof__logos .social-proof__logos-title {
    color: var(--pv-charcoal-200);
}

.social-proof__logos-title {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--pv-charcoal-500);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
}

.logos-track {
    display: flex;
    gap: var(--space-10);
    width: max-content;
    animation: logosMarquee 40s linear infinite;
    will-change: transform;
    backface-visibility: hidden;
}

.logos-track:hover {
    animation-play-state: paused;
}

.logos-track__group {
    display: flex;
    gap: var(--space-10);
    align-items: center;
}

.logo-placeholder {
    width: 240px;
    height: 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pv-charcoal-100);
    border-radius: 0;
    font-size: var(--text-sm);
    color: var(--pv-charcoal-400);
    border: 1px solid var(--pv-charcoal-200);
}

.client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
    height: 120px;
    padding: var(--space-4);
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.client-logo:hover img {
    opacity: 0.9;
}

@keyframes logosMarquee {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-50%, 0, 0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .logos-track {
        animation: none;
    }
}


/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta {
    padding: var(--space-20) 0;
    background: linear-gradient(135deg, var(--pv-red, #B20708) 0%, var(--pv-red-800, #8A0607) 100%);
    text-align: center;
}

.final-cta__inner {
    max-width: 700px;
    margin-inline: auto;
}

.final-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw + 1rem, 3rem);
    font-weight: var(--font-regular);
    color: var(--pv-white);
    line-height: var(--leading-tight);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.final-cta__description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
}

.final-cta__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-4);
}

@media (min-width: 640px) {
    .final-cta__actions {
        flex-direction: row;
        justify-content: center;
    }
}


/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--pv-charcoal-900);
    color: var(--pv-white);
}

.site-footer__inner {
    max-width: none;
    width: 100%;
    margin-inline: auto;
    padding: var(--space-16) calc(var(--gutter) * 2) var(--space-8);
}

.site-footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-10);
    padding-bottom: var(--space-12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
    .site-footer__top {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
        gap: var(--space-8);
    }
}

/* Brand Column */
.site-footer__brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.site-footer__brand .site-logo,
.site-footer__brand .site-header__logo {
    margin-bottom: var(--space-4);
    font-size: 1.2rem;
    display: inline-block;
}

@media (min-width: 768px) {
    .site-footer__brand {
        text-align: left;
        align-items: flex-start;
    }
}

.site-footer__brand .site-header__logo img,
.site-footer__brand .custom-logo,
.site-footer__brand img {
    height: 80px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.site-footer__brand .site-header__logo:hover img,
.site-footer__brand:hover .custom-logo {
    opacity: 1;
}

.site-footer__tagline {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.65);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .site-footer__tagline {
        margin-left: 0;
        margin-right: 0;
    }
}

.site-footer__social {
    display: flex;
    gap: var(--space-3);
    justify-content: center;
}

@media (min-width: 768px) {
    .site-footer__social {
        justify-content: flex-start;
    }
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: var(--pv-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--pv-red, #B20708);
    border-color: var(--pv-red, #B20708);
    color: var(--pv-white);
    transform: translateY(-3px);
}

.social-link--facebook:hover {
    background: #1877F2;
    border-color: #1877F2;
}

.social-link--instagram:hover {
    background: #E1306C;
    border-color: #E1306C;
}

.social-link--whatsapp:hover {
    background: var(--pv-whatsapp);
    border-color: var(--pv-whatsapp);
}

/* Links Columns */
.site-footer__heading {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-wider);
    margin-bottom: var(--space-4);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.footer-links a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--duration-fast) var(--ease-default);
}

.footer-links a:hover {
    color: var(--pv-white);
}

/* Contact Column */
.site-footer__contact {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.contact-item__icon {
    flex-shrink: 0;
    color: var(--pv-red, #B20708);
    margin-top: 2px;
}

.contact-item a,
.contact-item__link {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
    text-decoration: none;
}

.contact-item a:hover,
.contact-item__link:hover {
    color: var(--pv-white);
    text-decoration: underline;
}

/* Hours list styling */
.contact-item--hours {
    align-items: flex-start;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-1);
}

.hours-row {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
}

.hours-row strong {
    color: rgba(255, 255, 255, 0.9);
    font-weight: var(--font-medium);
}

/* Footer Bottom */
.site-footer__bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-2);
    padding-top: var(--space-8);
    text-align: center;
}

@media (min-width: 768px) {
    .site-footer__bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.site-footer__copyright {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--duration-fast) var(--ease-default);
}

.site-footer__legal a:hover {
    color: var(--pv-white);
}

.site-footer__legal .separator {
    margin-inline: var(--space-2);
}


/* ==========================================================================
   FLOATING WHATSAPP BUTTON
   ========================================================================== */

.whatsapp-float {
    position: fixed;
    bottom: var(--space-6);
    right: var(--space-6);
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--pv-whatsapp);
    border-radius: 0;
    color: var(--pv-white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: var(--z-sticky);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float__pulse {
    position: absolute;
    inset: 0;
    border-radius: 0;
    background: var(--pv-whatsapp);
    animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}


/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.screen-reader-text {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: fixed;
    top: -100%;
    left: var(--space-4);
    z-index: 9999;
    padding: var(--space-3) var(--space-6);
    background: var(--pv-charcoal-900);
    color: var(--pv-white);
    border-radius: var(--radius-md);
    transition: top var(--duration-fast) var(--ease-default);
}

.skip-link:focus {
    top: var(--space-4);
}


/* ==========================================================================
   SCROLL-TRIGGERED ANIMATIONS
   ========================================================================== */

/* Base states - hidden before animation */
[data-animate] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Fade In Up */
[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-up"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Down */
[data-animate="fade-down"] {
    transform: translateY(-40px);
}

[data-animate="fade-down"].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Fade In Left */
[data-animate="fade-left"] {
    transform: translateX(-60px);
}

[data-animate="fade-left"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In Right */
[data-animate="fade-right"] {
    transform: translateX(60px);
}

[data-animate="fade-right"].is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* Fade In */
[data-animate="fade"] {
    transform: scale(0.98);
}

[data-animate="fade"].is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Zoom In */
[data-animate="zoom"] {
    transform: scale(0.9);
}

[data-animate="zoom"].is-visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger delays for children */
[data-animate].is-visible [data-stagger] {
    opacity: 0;
    animation: staggerFadeUp 0.6s ease forwards;
}

[data-animate].is-visible [data-stagger="1"] { animation-delay: 0.1s; }
[data-animate].is-visible [data-stagger="2"] { animation-delay: 0.2s; }
[data-animate].is-visible [data-stagger="3"] { animation-delay: 0.3s; }
[data-animate].is-visible [data-stagger="4"] { animation-delay: 0.4s; }
[data-animate].is-visible [data-stagger="5"] { animation-delay: 0.5s; }
[data-animate].is-visible [data-stagger="6"] { animation-delay: 0.6s; }
[data-animate].is-visible [data-stagger="7"] { animation-delay: 0.7s; }
[data-animate].is-visible [data-stagger="8"] { animation-delay: 0.8s; }

@keyframes staggerFadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero specific animations */
.hero__content-inner {
    animation: heroContentSlide 1s ease 0.3s both;
}

@keyframes heroContentSlide {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero__title {
    animation: heroTitleReveal 0.8s ease 0.5s both;
}

@keyframes heroTitleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__subtitle {
    animation: heroSubtitleReveal 0.8s ease 0.7s both;
}

@keyframes heroSubtitleReveal {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Slider fade animation */
.slider__slide {
    transition: opacity 1.5s ease;
}

/* Category cards stagger */
.category-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.categories__grid [data-animate].is-visible .category-card:nth-child(1) { animation-delay: 0.05s; }
.categories__grid [data-animate].is-visible .category-card:nth-child(2) { animation-delay: 0.1s; }
.categories__grid [data-animate].is-visible .category-card:nth-child(3) { animation-delay: 0.15s; }
.categories__grid [data-animate].is-visible .category-card:nth-child(4) { animation-delay: 0.2s; }
.categories__grid [data-animate].is-visible .category-card:nth-child(5) { animation-delay: 0.25s; }
.categories__grid [data-animate].is-visible .category-card:nth-child(6) { animation-delay: 0.3s; }

/* Product cards animation */
.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button hover enhancements */
.btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:active {
    transform: scale(0.98);
}

/* Floating WhatsApp pulse */
.whatsapp-float {
    animation: floatBounce 3s ease-in-out infinite;
}

/* ==========================================================================
   PAGES - About (Nosotros) & Legal
   ========================================================================== */

.page-hero {
    padding: calc(var(--space-20) + 60px) 0 var(--space-16);
    background: var(--pv-charcoal-50);
}

.page-hero--dark {
    background: var(--pv-charcoal-900);
    color: var(--pv-white);
}

.page-hero--dark .section-eyebrow,
.page-hero--dark .page-hero__title {
    color: var(--pv-white);
}

.page-hero--dark .page-hero__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.page-hero__grid {
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

.page-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 0.95;
    margin-bottom: var(--space-4);
    color: var(--pv-charcoal-900);
}

.page-hero__subtitle {
    font-size: var(--text-base);
    color: var(--pv-charcoal-600);
    max-width: 560px;
}

.page-hero__highlights {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.page-hero__highlights span {
    background: var(--pv-white);
    border: 1px solid var(--pv-charcoal-100);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--pv-charcoal-700);
}

.page-hero__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
}

.page-section {
    padding: var(--space-16) 0;
}

.page-section--alt {
    background: var(--pv-charcoal-50);
}

.page-section--grey {
    background: var(--pv-charcoal-100);
}

.page-section--red {
    background: var(--pv-red, #B20708);
    color: var(--pv-white);
    position: relative;
    padding-top: calc(var(--space-16) + 40px);
    padding-bottom: calc(var(--space-16) + 40px);
}

.page-section--red .section-eyebrow,
.page-section--red .page-section__title {
    color: var(--pv-white);
}

.page-section--red .page-section__content p {
    color: rgba(255, 255, 255, 0.9);
}

.page-section--red .page-section__media img {
    box-shadow: var(--shadow-lg);
}

.page-section__grid {
    display: grid;
    gap: var(--space-10);
    align-items: center;
}

.page-section__grid--reverse {
    direction: rtl;
}

.page-section__grid--reverse > * {
    direction: ltr;
}

.page-section__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
    color: var(--pv-charcoal-900);
}

.page-section__content p {
    color: var(--pv-charcoal-600);
    margin-bottom: var(--space-4);
}

.page-section__list {
    margin-top: var(--space-4);
    display: grid;
    gap: var(--space-2);
    color: var(--pv-charcoal-700);
}

.page-section__list li {
    position: relative;
    padding-left: var(--space-5);
}

.page-section__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: var(--pv-red, #B20708);
    border-radius: 50%;
}

.page-section__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.page-section__media--fixed {
    aspect-ratio: 16 / 10;
    overflow: hidden;
    border-radius: var(--radius-2xl);
}

.page-section__media--fixed img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 0;
    box-shadow: none;
}

@media (min-width: 1024px) {
    .page-section--sticky .page-section__media {
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

.page-cta {
    padding: var(--space-16) 0;
    background: linear-gradient(135deg, var(--pv-red, #B20708), var(--pv-red-800, #8A0607));
    color: var(--pv-white);
    text-align: center;
}

.page-cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    text-transform: uppercase;
    margin-bottom: var(--space-4);
}

.page-cta__subtitle {
    margin-bottom: var(--space-6);
}

.page-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
    justify-content: center;
}

.page-cta__media {
    margin-top: var(--space-8);
}

.page-cta__media img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
}

.contact-page {
    padding: var(--space-16) 0;
    background: var(--pv-charcoal-900);
    color: var(--pv-white);
}

.contact-page__grid {
    display: grid;
    gap: var(--space-8);
}

.contact-page__stack {
    display: grid;
    gap: var(--space-6);
}

.contact-info--sticky {
    position: sticky;
    top: 120px;
    align-self: start;
}

.contact-info__title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    text-transform: uppercase;
    margin-bottom: var(--space-6);
}

.contact-info__list {
    display: grid;
    gap: var(--space-5);
    color: var(--pv-charcoal-200);
}

.contact-info__item {
    display: grid;
    grid-template-columns: 32px 1fr;
    gap: var(--space-4);
    align-items: center;
    font-size: var(--text-lg);
}

.contact-info__item a {
    color: inherit;
}

.contact-info__item--block {
    align-items: start;
}

.contact-info__icon {
    width: 32px;
    height: 32px;
    color: var(--pv-red, #B20708);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.contact-info__icon svg {
    width: 24px;
    height: 24px;
}

.contact-card {
    background: var(--pv-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
}

.contact-card__title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    text-transform: uppercase;
    margin-bottom: var(--space-2);
    color: var(--pv-charcoal-900);
}

.contact-card__subtitle {
    color: var(--pv-charcoal-600);
    margin-bottom: var(--space-6);
}

.contact-form {
    display: grid;
    gap: var(--space-4);
}

.contact-form label {
    display: grid;
    gap: var(--space-2);
    font-weight: var(--font-medium);
    color: var(--pv-charcoal-700);
}

.contact-form input,
.contact-form textarea {
    border: 1px solid var(--pv-charcoal-200);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    font: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--pv-red, #B20708);
    box-shadow: 0 0 0 3px rgba(178, 7, 8, 0.15);
}

.contact-card--map {
    display: grid;
}

.contact-map {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    min-height: 320px;
}

.contact-map iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-map-section {
    background: var(--pv-charcoal-900);
    color: var(--pv-white);
    padding: var(--space-12) 0 var(--space-16);
}

.contact-map-section__header {
    max-width: 960px;
    margin: 0 auto var(--space-8);
    padding: 0 var(--gutter);
}

.contact-map--full {
    min-height: 460px;
    border-radius: 0;
}

.contact-map--full iframe {
    border-radius: 0;
}

@media (min-width: 1024px) {
    .contact-page__grid {
        grid-template-columns: minmax(280px, 1fr) 1.4fr;
        align-items: start;
    }
}

.legal-hero {
    padding: calc(var(--space-20) + 60px) 0 var(--space-12);
    background: var(--pv-charcoal-50);
}

.legal-hero__inner {
    max-width: 720px;
}

.legal-hero__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    text-transform: uppercase;
    margin-bottom: var(--space-3);
}

.legal-hero__subtitle {
    color: var(--pv-charcoal-600);
}

.legal-content {
    padding: var(--space-12) 0 var(--space-20);
}

.legal-content__inner {
    max-width: 840px;
}

.legal-content h2 {
    font-size: var(--text-xl);
    margin: var(--space-8) 0 var(--space-3);
    color: var(--pv-charcoal-900);
}

.legal-content p {
    color: var(--pv-charcoal-600);
}

@media (min-width: 1024px) {
    .page-hero__grid {
        grid-template-columns: 1.1fr 1fr;
    }

    .page-section__grid {
        grid-template-columns: 1fr 1fr;
    }
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Section fade backgrounds */
.delivery,
.final-cta {
    position: relative;
}

.delivery::before,
.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.delivery.is-visible::before,
.final-cta.is-visible::before {
    opacity: 1;
}

.delivery--light {
    background: var(--pv-charcoal-50);
}

.delivery--light .delivery__title {
    color: var(--pv-charcoal-900);
}

.delivery--light .delivery__description,
.delivery--light .delivery__benefit {
    color: var(--pv-charcoal-700);
}

.delivery--light .delivery__eyebrow {
    color: var(--pv-red, #B20708);
}

.faq-list {
    display: grid;
    gap: var(--space-4);
    max-width: 900px;
    margin-inline: auto;
}

.faq-item {
    background: var(--pv-white);
    border: 1px solid var(--pv-charcoal-200);
    border-radius: var(--radius-lg);
    padding: var(--space-2) var(--space-4);
    box-shadow: var(--shadow-xs);
}

.faq-item summary {
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: var(--text-base);
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    padding: var(--space-3) 0;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.25rem;
    color: var(--pv-red, #B20708);
}

.faq-item[open] summary::after {
    content: '–';
}

.faq-item__body {
    color: var(--pv-charcoal-600);
    padding-bottom: var(--space-3);
}

.faq-item {
    overflow: hidden;
}

.faq-item__body {
    max-height: 0;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.35s ease;
}

.faq-item[open] .faq-item__body {
    max-height: 260px;
    opacity: 1;
}

/* Stats counter animation */
.stat-number {
    transition: all 0.6s ease;
}

.social-proof.is-visible .stat-number {
    animation: countUp 0.8s ease both;
}

@keyframes countUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Checkered border animation - simple fade in */
.checkered-border {
    opacity: 0;
    animation: checkeredFadeIn 0.8s ease 0.3s forwards;
}

@keyframes checkeredFadeIn {
    to {
        opacity: 1;
    }
}

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    [data-animate] {
        opacity: 1;
        transform: none;
    }
}
