/* 8387rcPNz8SRX6pYXgdxCZg3VMLFwtdJB3Z9LeX8Ge2n
   ARTE WIXÁRIKA - ESTILOS GENERALES
   8387rcPNz8SRX6pYXgdxCZg3VMLFwtdJB3Z9LeX8Ge2n */

*, *::before, *::after { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
}

:root {
    --cream: #FDF8F0;
    --cream-dark: #F5EDE0;
    --dark: #0F0A1A;
    --dark-blue: #1A1040;
    --dark-red: #6B0A2A;
    --red: #C41230;
    --gold: #D4920B;
    --gold-light: #F0B820;
    --white: #FFFFFF;
    --text-dark: #1A1A2E;
    --text-mid: #5A5A7A;
    --text-light: #8A8AAA;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --shadow: 0 4px 24px rgba(0,0,0,0.10);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.18);
    --radius: 12px;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-sans);
    background: var(--cream);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { 
    max-width: 1200px; 
    margin: 0 auto; 
    padding: 0 24px; 
}

.text-center { text-align: center; }

/* ─── NAVEGACIÓN ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.3s ease;
}

.nav-white {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-dark {
    background: rgba(15, 10, 26, 0.95);
    backdrop-filter: blur(10px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--white);
}

.nav-white .nav-logo {
    color: var(--text-dark);
}

.logo-icon {
    font-size: 24px;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-link {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
    position: relative;
}

.nav-white .nav-link {
    color: var(--text-mid);
}

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: 0.3s;
}

.nav-white .nav-toggle span {
    background: var(--text-dark);
}

/* ─── HERO SECTION ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(107,10,42,0.8), rgba(196,18,48,0.7)),
        url('../images/josemontoya001.jpg') center/cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        repeating-conic-gradient(
            rgba(212,146,11,0.1) 0% 25%, 
            transparent 0% 50%
        ) 0 0 / 40px 40px;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-top: 80px;
}

.hero-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 20px;
    padding: 8px 16px;
    border: 1px solid rgba(212,146,11,0.4);
    border-radius: 20px;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.highlight {
    color: var(--gold-light);
}

.hero-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
}

.btn-primary {
    background: var(--gold);
    color: var(--dark);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212,146,11,0.3);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255,255,255,0.1);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    z-index: 2;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    margin: 10px auto;
    position: relative;
}

.scroll-indicator::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateX(-50%) translateY(0); }
    50% { opacity: 1; transform: translateX(-50%) translateY(12px); }
}

/* ─── FEATURED SECTION ─── */
.featured {
    padding: 100px 0;
    background: var(--cream);
}

.section-header {
    margin-bottom: 48px;
}

.section-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 700;
    color: var(--text-dark);
}

.section-desc {
    font-size: 15px;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.featured-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.featured-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.featured-placeholder {
    font-size: 80px;
    opacity: 0.9;
}

.featured-info {
    padding: 24px;
}

.featured-info h3 {
    font-family: var(--font-serif);
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.featured-info p {
    font-size: 13px;
    color: var(--text-mid);
}

/* ─── GALERÍA GRID (12x3) ─── */
.gallery-section {
    padding: 120px 0 80px;
    background: var(--white);
    min-height: 100vh;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.gallery-item-image {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.gallery-placeholder {
    font-size: 60px;
    opacity: 0.8;
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.1);
}

.gallery-item-info {
    padding: 20px;
}

.gallery-item-info h3 {
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.gallery-item-info p {
    font-size: 13px;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.gallery-size {
    display: block;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 4px;
}

.gallery-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--red);
}

/* ─── HISTORIA SECTION ─── */
.story-section {
    padding: 120px 0 80px;
    background: var(--cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.story-content {
    padding-top: 20px;
}

.story-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 32px;
    line-height: 1.2;
}

.story-text p {
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.story-stats {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.stat-box {
    background: var(--white);
    border: 1px solid #e8e0d8;
    border-radius: var(--radius);
    padding: 24px 32px;
    text-align: center;
    flex: 1;
    min-width: 140px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.stat-number {
    display: block;
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 700;
    color: var(--red);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-light);
}

.story-image {
    position: sticky;
    top: 100px;
}

.story-image-placeholder {
    aspect-ratio: 1;
    background: linear-gradient(135deg, #C41230, #6B0A2A);
    border-radius: var(--radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.story-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        rgba(255,255,255,0.1) 0% 25%, 
        transparent 0% 50%
    ) 0 0 / 30px 30px;
}

.placeholder-art {
    font-size: 120px;
    position: relative;
    z-index: 1;
}

.story-image-placeholder span {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    margin-top: 16px;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* ─── CONTACTO SECTION ─── */
.contact-section {
    min-height: 100vh;
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-red));
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(
        rgba(212,146,11,0.05) 0% 25%, 
        transparent 0% 50%
    ) 0 0 / 30px 30px;
    pointer-events: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
}

.contact-info {
    padding-top: 20px;
}

.contact-title {
    font-family: var(--font-serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.contact-desc {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

.locations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    transition: all 0.3s;
}

.location-item:hover {
    background: rgba(255,255,255,0.1);
    transform: translateX(8px);
}

.location-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
}

.location-details h3 {
    font-family: var(--font-serif);
    font-size: 18px;
    color: var(--white);
    margin-bottom: 4px;
}

.location-details p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}

.contact-form-wrapper {
    display: flex;
    align-items: center;
}

.contact-form-box {
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.contact-form-box h2 {
    font-family: var(--font-serif);
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-form-box > p {
    font-size: 14px;
    color: var(--text-mid);
    margin-bottom: 32px;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid #e0d8d0;
    border-radius: 8px;
    font-family: var(--font-sans);
    font-size: 14px;
    transition: border-color 0.3s;
    background: var(--cream);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.btn-full {
    width: 100%;
}

.contact-direct {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid #e8e0d8;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-mid);
    font-size: 14px;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--gold);
}

.contact-icon {
    font-size: 18px;
}

.contact-footer {
    text-align: center;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 13px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .story-image {
        position: relative;
        top: 0;
        order: -1;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .story-stats {
        flex-direction: column;
    }
    
    .stat-box {
        width: 100%;
    }
    
    .contact-form-box {
        padding: 32px 24px;
    }
}

/* 8387rcPNz8SRX6pYXgdxCZg3VMLFwtdJB3Z9LeX8Ge2n
   FOOTER GLOBAL
   8387rcPNz8SRX6pYXgdxCZg3VMLFwtdJB3Z9LeX8Ge2n */
.site-footer {
    background: linear-gradient(135deg, var(--dark-blue), var(--dark-red));
    color: var(--white);
    padding: 60px 0 30px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-conic-gradient(rgba(212,146,11,0.05) 0% 25%, transparent 0% 50%) 0 0 / 30px 30px;
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-brand .logo-icon {
    font-size: 28px;
    color: var(--gold);
    display: inline-block;
    margin-bottom: 8px;
}

.footer-brand .logo-text {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: var(--white);
}

.footer-brand p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--gold-light);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    position: relative;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
    line-height: 1.5;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    .footer-brand p {
        max-width: 100%;
    }
}