@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300&family=Syne:wght@400;500;600;700&family=DM+Sans:wght@400;500;700&display=swap');

:root {
    /* Paleta completamente monocromática */
    --bg-base: #F3F4F1;
    --text-primary: #0A0A0A;
    --text-secondary: #555555;
    --text-muted: #999999;
    
    /* Tipografía */
    --font-display: 'Cormorant Garamond', serif;
    --font-ui: 'Syne', sans-serif; /* Alternativa DM Sans */
    
    /* Espaciado */
    --section-spacing: 12rem;
}

/* Global Styles */
body {
    background-color: var(--bg-base);
    color: var(--text-primary);
    font-family: var(--font-ui);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .display-font {
    font-family: var(--font-display);
    font-weight: 300;
}

.ui-label {
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Layout */
.section {
    padding: var(--section-spacing) 1.5rem;
}

/* Sin bordes ni sombras */
.button, .card, .input, .textarea, .select select, .glass-card, .product-card {
    border: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
}

/* Navbar */
.navbar {
    background-color: transparent;
    transition: background-color 0.5s ease;
    padding: 2rem 0;
}

.navbar.is-scrolled {
    background-color: rgba(243, 244, 241, 0.98);
    padding: 1rem 0;
}

.navbar-item, .navbar-link {
    color: var(--text-primary) !important;
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.8rem;
}

.navbar-item:hover, .navbar-link:hover {
    color: var(--text-secondary) !important;
    background-color: transparent !important;
}

/* Hero Section */
#hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.vimeo-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.vimeo-wrapper iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 Aspect Ratio */
    min-height: 100vh;
    min-width: 177.77vh; /* 16:9 Aspect Ratio */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(243, 244, 241, 0.1);
}

.hero-title {
    font-size: clamp(80px, 12vw, 140px);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

/* Asymmetric Grid */
.projects-grid {
    display: flex;
    flex-wrap: wrap;
    margin: -2rem;
}

.project-item {
    padding: 2rem;
    width: 50%;
}

.project-item.asym-1 { width: 45%; margin-top: 4rem; }
.project-item.asym-2 { width: 55%; }
.project-item.asym-3 { width: 60%; margin-top: -4rem; }
.project-item.asym-4 { width: 40%; }

.project-image {
    width: 100%;
    height: auto;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.project-item:hover img {
    transform: scale(1.05);
}

/* Components adaptation */
.button.is-accent {
    background-color: var(--text-primary);
    color: var(--bg-base);
    font-family: var(--font-ui);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 1.5rem 3rem;
    height: auto;
    transition: all 0.3s ease;
}

.button.is-accent:hover {
    background-color: var(--text-secondary);
    color: var(--bg-base);
}

.input-minimal {
    background: transparent;
    border-bottom: 1px solid var(--text-muted) !important;
    color: var(--text-primary);
    padding: 1rem 0;
    width: 100%;
    font-family: var(--font-ui);
}

.input-minimal:focus {
    outline: none;
    border-bottom-color: var(--text-primary) !important;
}

/* Glass Card */
.glass-card {
    background: #EAEBE6;
    padding: 3rem;
}

.distributor-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

/* Product Cards */
.product-card {
    background-color: #EAEBE6;
    height: 100%;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-number {
    font-family: var(--font-ui);
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 1rem;
    letter-spacing: 0.1em;
}

.product-image {
    position: relative;
    overflow: hidden;
}

.product-content {
    padding: 2rem;
}

/* Accordion */
.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-header {
    padding: 1.5rem 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: color 0.3s ease;
}

.accordion-header:hover {
    color: var(--text-secondary);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--text-secondary);
}

.accordion-item.is-active .accordion-content {
    max-height: 200px;
    padding-bottom: 1.5rem;
}

.accordion-item.is-active .fa-chevron-down {
    transform: rotate(180deg);
}

/* Buttons */
.button.is-accent {
    background-color: #0A0A0A;
    color: #F3F4F1;
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.button.is-accent:hover {
    background-color: var(--text-secondary);
    color: #F3F4F1;
}

.button.is-accent.is-outlined {
    background-color: transparent;
    border: 1px solid var(--text-primary) !important;
    color: var(--text-primary);
}

.button.is-accent.is-outlined:hover {
    background-color: var(--text-primary);
    color: var(--bg-base);
}

.button.is-whatsapp {
    background-color: #0A0A0A;
    color: #F3F4F1;
    border: none;
}

/* Form Styles */
.input-minimal {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted) !important;
    color: var(--text-primary);
    width: 100%;
    padding: 0.8rem 0;
    margin-bottom: 1rem;
    outline: none;
    transition: border-bottom 0.3s ease;
}

.input-minimal:focus {
    border-bottom: 1px solid var(--text-primary) !important;
}

textarea.input-minimal {
    min-height: 100px;
    resize: none;
}

.select.is-minimal select {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--text-muted) !important;
    color: var(--text-secondary);
    border-radius: 0;
    padding-left: 0;
}

/* Footer */
.footer {
    background-color: #EAEBE6;
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--text-muted);
}

.footer-divider {
    background-color: var(--text-muted);
    margin: 3rem 0;
}

.social-links a {
    color: var(--text-primary);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--text-secondary);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background-color: #0A0A0A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F3F4F1;
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 100;
    transition: transform 0.3s ease;
}

.floating-cta:hover {
    transform: scale(1.1);
    color: #F3F4F1;
}

/* Utils */
.image-wrapper img {
    border: none;
}

.shadow-accent {
    box-shadow: none;
}

/* Responsive */
@media screen and (max-width: 1024px) {
    .navbar-menu {
        background-color: var(--bg-secondary);
    }
}

@media screen and (max-width: 768px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .counter-item {
        border-left: none;
        border-bottom: 1px solid var(--border-color);
        padding-bottom: 1rem;
        padding-left: 0;
    }
    
    .glass-card {
        padding: 1.5rem;
    }
}
