:root {
    /* Colors - Apple-born Palette */
    --primary: #0f2157;
    --secondary: #0071e3; /* iOS Blue */
    --accent: #5ac8fa;
    --white: #ffffff;
    --bg-light: #f5f5f7;
    --bg-alt: #fbfbfd;
    --text-main: #0a1a3a; /* Azul Profundo */
    --text-muted: #86868b;
    --glass: rgba(255, 255, 255, 0.72);
    --border: rgba(0, 0, 0, 0.08);
    
    /* Fluid Design System */
    --fs-hero: clamp(2.5rem, 8vw, 4.5rem);
    --fs-h2: clamp(1.8rem, 5vw, 3.2rem);
    --fs-body: clamp(1rem, 1.2vw, 1.3rem);
    --spacing-xl: clamp(5rem, 12vw, 10rem);
    --spacing-lg: clamp(2.5rem, 6vw, 5rem);
    
    /* Transitions & Spacing */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --section-padding: clamp(4rem, 12vw, 8rem) 0;
    --container-padding: 0 24px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--white);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.5;
}

body.loading {
    overflow: hidden;
}

/* --- Premium Preloader --- */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease-out, visibility 0.8s;
}

.loader-content {
    text-align: center;
    max-width: 200px;
}

.logo-loader img {
    width: 220px;
    border-radius: 16px;
    margin-bottom: 20px;
    animation: pulse 2s infinite ease-in-out;
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: #eee;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.loader-bar::after {
    content: '';
    position: absolute;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary);
    animation: loading-progress 1.5s infinite;
}

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

@keyframes loading-progress {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* --- Reading Progress Bar --- */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    z-index: 10001;
    transition: transform 0.1s ease-out;
}

/* --- Navigation --- */
header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(var(--header-y, 0));
    width: 95%;
    max-width: 1300px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.82);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 980px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                padding 0.4s ease, 
                background-color 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(0.5rem, 2vw, 2.5rem);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
    gap: 10px;
}

.logo {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 6px 16px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.logo:hover {
    transform: scale(1.02);
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 56px;
    border-radius: 10px;
    object-fit: contain;
}

/* Stagger Animation Engine */
.stagger-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active .stagger-item.active {
    opacity: 1;
    transform: translateY(0);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

@media (max-width: 768px) {
    /* .nav-links visibility is handled by right: -100% in the mobile menu logic */
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.8;
    position: relative;
    transition: opacity 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.nav-links a:hover { 
    opacity: 1;
    background: transparent !important;
}

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

.btn-cta-nav {
    background: var(--secondary);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 980px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 700;
    transition: var(--transition);
}

.btn-cta-nav:hover {
    background: rgba(15, 33, 87, 0.95);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* --- Hero Section --- */
.hero-section {
    padding-top: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 20px;
}

.hero-content h1 {
    font-size: var(--fs-hero);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.text-gradient {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: var(--fs-body);
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background: var(--secondary);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 36px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 8px 32px rgba(0, 113, 227, 0.2);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    background: rgba(15, 33, 87, 0.95);
    box-shadow: 0 12px 40px rgba(15, 33, 87, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--primary);
    padding: 14px 36px;
    border-radius: 980px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.02);
    border-color: var(--primary);
}

.storefront-card {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    transition: var(--transition);
    will-change: transform;
    max-width: 500px;
    margin-left: auto;
}
@media (max-width: 900px) {
    .storefront-card { margin: 0 auto; }
}

.storefront-card img {
    width: 100%;
    display: block;
}

/* --- Grid Sections --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-eyebrow {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-size: var(--fs-h2);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.5;
}

/* Brands Grid */
.product-categories {
    padding: var(--section-padding);
    padding-bottom: clamp(1rem, 4vw, 2.5rem);
    background: var(--white);
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 30px;
}

.brand-item {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(12px) saturate(180%);
    -webkit-backdrop-filter: blur(12px) saturate(180%);
    padding: 48px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
}

.brand-item:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: translateY(-8px) scale(1.03);
    border-color: var(--secondary);
    box-shadow: 0 15px 40px rgba(10, 26, 58, 0.1);
}

/* Product Categories */
.product-categories { padding: var(--spacing-lg) 0; }

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

.category-card {
    padding: 48px;
    background: var(--white);
    border-radius: 28px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                background 0.4s ease;
    perspective: 1000px;
    transform-style: preserve-3d;
}

.category-card:hover {
    background: var(--white);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 50px rgba(10, 26, 58, 0.1);
}

.category-icon { font-size: 3rem; margin-bottom: 24px; }

/* Info Section */
.info-section { 
    background: var(--white); 
    padding: clamp(2rem, 5vw, 4rem) 0 var(--spacing-lg) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.location-card {
    grid-column: span 2;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
}

.info-card:hover {
    transform: translateY(-8px) scale(1.01);
    box-shadow: 0 15px 35px rgba(10, 26, 58, 0.05);
    border-color: var(--secondary);
}

@media (max-width: 900px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .location-card {
        grid-column: span 1;
    }
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 18px;
    text-align: center;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.15);
}

.btn-whatsapp:hover { 
    transform: translateY(-3px) scale(1.02); 
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.25);
}

.landline {
    display: block;
    margin-top: 10px;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
}

.landline:hover {
    color: var(--primary);
    transform: translateX(5px);
}

/* --- Reveal Engine --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.5s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Experience Section (Cinematic Nossa História) --- */
.experience-section {
    position: relative;
    padding: clamp(6rem, 15vw, 12rem) 0 clamp(2rem, 5vw, 4rem) 0;
    overflow: hidden;
    background: var(--white);
}

.cinematic-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cinematic-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Video Hero Centerpiece */
.video-hero {
    margin: 0 auto 80px;
    max-width: 1000px;
    position: relative;
    z-index: 2;
}

.video-frame {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 40px 100px rgba(10, 26, 58, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: var(--primary);
}

.cinematic-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 26, 58, 0.3), transparent);
    pointer-events: none;
}

/* Store Showcase Layout */
.store-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

.store-card {
    border-radius: 32px;
    overflow: hidden;
    height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.05);
}

.store-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.store-card:hover img {
    transform: scale(1.05);
}

/* Missão, Visão e Valores Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pillar-card {
    padding: 50px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-radius: 32px;
}

.pillar-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.1));
}

.pillar-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.pillar-card p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* Glassmorphism Premium Helper */
.glass-premium {
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.glass-premium:hover {
    background: rgba(255, 255, 255, 0.65);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(10, 26, 58, 0.1);
}

/* Responsive Experience */
@media (max-width: 992px) {
    .pillars-grid { grid-template-columns: 1fr; }
    .store-showcase { grid-template-columns: 1fr; }
    .store-card { height: 300px; }
}

.search-mockup {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.search-mockup:hover, .search-mockup:focus-within {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.search-mockup input {
    background: none;
    border: none;
    color: var(--white);
    width: 100%;
    outline: none;
    font-family: inherit;
    font-size: 0.9rem;
}

.search-mockup input::placeholder { color: rgba(255, 255, 255, 0.7); }
.search-btn-icon { font-size: 1.2rem; }

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.about-content {
    text-align: center;
}

.about-content p {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    color: var(--text-muted);
    max-width: 750px;
    margin: 0 auto 60px;
    line-height: 1.7;
    font-weight: 300;
}

.about-image {
    width: 100%;
    margin: 0 auto;
    max-width: 750px;
}

/* --- Gradient Masks for Images --- */
.img-gradient-overlay {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    line-height: 0;
}

.img-gradient-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, transparent 20%, rgba(255,255,255,0.5) 100%);
    pointer-events: none;
}

.img-gradient-overlay img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 32px;
}

.tight-top {
    padding-top: 0 !important;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-item {
    animation: float 4s ease-in-out infinite;
}

/* --- Bento Responsive --- */
@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento-main, .bento-secondary, .bento-stats {
        grid-column: span 1;
    }
}

/* --- Floating Button & Animation --- */
@keyframes whatsappPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    z-index: 999;
    transition: var(--transition);
    animation: whatsappPulse 3s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #20ba5a;
}

.whatsapp-float img {
    width: 30px;
    height: 30px;
}

/* --- Footer (Foundation Redesign) --- */
.footer {
    padding: 80px 0 40px;
    background-color: var(--white);
    border-top: 1px dotted var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 70px;
    border-radius: 12px;
    margin-bottom: 24px;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 350px;
}

.footer-meta p {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-main);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
    position: relative;
    transition: opacity 0.3s ease;
    display: inline-block;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transition: width 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-social-icons {
    display: flex;
    gap: 20px;
}

.footer-social-icons a {
    color: var(--text-main);
    transition: var(--transition);
    display: inline-block;
}

.footer-social-icons a:hover {
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px dotted var(--border);
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    text-decoration: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--text-main);
}

.map-container {
    margin-top: 20px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
}

/* --- Dynamic Platform & Responsiveness Overhaul --- */

/* Menu Toggle (Hamburger) */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1001;
    position: relative;
    flex-shrink: 0;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 3px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scale(0.5); }
.menu-toggle.active span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* responsive adjustments */
@media (max-width: 992px) {
    .menu-toggle { display: flex; }

    .nav-links {
        position: fixed;
        top: 100px;
        right: 20px;
        width: 280px;
        height: auto;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 24px;
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        padding: 32px;
        border-radius: 28px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        border: 1px solid rgba(255, 255, 255, 0.5);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20px) scale(0.9);
        pointer-events: none;
    }

    .nav-links.active { 
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        pointer-events: all;
    }

    .nav-links li { 
        font-size: 1.1rem; 
        font-weight: 500; 
        width: 100%;
    }

    .nav-links li.mobile-only { display: block; }
    
    .hero-btns {
        flex-direction: column;
        gap: 16px;
    }
}

/* Mobile Only Elements */
.mobile-only {
    display: none;
}

body.is-mobile .mobile-only {
    display: block;
    width: 100%;
    margin-top: 20px;
}
body.is-mobile {
    --section-padding: 60px 20px;
}

body.is-mobile .hero-section {
    padding-top: 120px;
    text-align: center;
}

body.is-mobile .hero-btns {
    flex-direction: column;
    width: 100%;
}

body.is-mobile .btn-cta-nav {
    padding: 8px 16px;
    font-size: 0.75rem;
}

body.is-mobile .logo img {
    height: 48px;
}

body.is-mobile .nav-container {
    padding: 0 12px;
}

body.is-mobile .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 20px;
}

body.is-mobile .bento-card {
    min-height: 300px;
    padding: 30px;
}

body.is-mobile .bento-card.tall,
body.is-mobile .bento-card.wide {
    grid-column: span 1;
    grid-row: span 1;
}

body.is-mobile .categories-grid {
    grid-template-columns: 1fr;
}

body.is-mobile .section-title {
    font-size: 2rem;
}

/* Tablet Refinements */
body.is-tablet .bento-grid {
    grid-template-columns: repeat(2, 1fr);
}

body.is-tablet .bento-card.wide {
    grid-column: span 2;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .reveal { transition: none; opacity: 1; transform: none; }
}
