:root {
    /* Color Palette - Regal & Modern */
    --renique-maroon: #5a0b16;
    --renique-gold: #c5a059;
    --renique-gold-light: #e2c993;
    --renique-cream: #f9f6f0;
    --renique-beige: #efe5d5;
    --renique-emerald: #06402b;
    --renique-charcoal: #1a1a1a;
    --renique-white: #ffffff;
    
    /* Typography */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Cormorant Garamond', serif;
    
    /* Spacing & Sizing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
    
    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--renique-cream);
    color: var(--renique-charcoal);
    font-family: var(--font-body);
    font-size: 1.1rem;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-display {
    font-family: var(--font-display);
    font-weight: 400;
    letter-spacing: 0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

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

.bg-white { background-color: var(--renique-white); }

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

.mt-lg { margin-top: var(--space-lg); }
.mb-md { margin-bottom: var(--space-md); }
.italic-gold { font-style: italic; color: var(--renique-gold); }
.flex { display: flex; }
.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.social-links { display: flex; gap: var(--space-sm); }
.footer-desc { color: #888; margin-bottom: 2rem; max-width: 300px; }
.footer-legal-links { display: flex; gap: 2rem; }
.category-link { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.2em; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background-color: var(--renique-maroon);
    color: var(--renique-white);
}

.btn-primary:hover {
    background-color: var(--renique-charcoal);
    transform: translateY(-2px);
}

.btn-outline {
    border-color: var(--renique-maroon);
    color: var(--renique-maroon);
}

.btn-outline:hover {
    background-color: var(--renique-maroon);
    color: var(--renique-white);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(249, 246, 240, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(197, 160, 89, 0.2);
    padding: 1.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--renique-maroon);
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: var(--space-md);
}

.nav-links a {
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--renique-gold);
    transition: var(--transition-fast);
}

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

.nav-actions {
    display: flex;
    gap: var(--space-sm);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--renique-beige);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomOut 20s infinite alternate;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 50%;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 0.9;
    margin-bottom: var(--space-md);
    color: var(--renique-maroon);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: var(--space-md);
    max-width: 500px;
    color: var(--renique-charcoal);
}

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.category-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: var(--space-md);
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: var(--renique-white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
    transition: var(--transition-smooth);
}

.category-card:hover .category-overlay {
    height: 60%;
}

.category-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

/* Product Cards */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-md);
}

.product-card {
    position: relative;
    transition: var(--transition-smooth);
}

.product-image-container {
    aspect-ratio: 3/4;
    overflow: hidden;
    background: var(--renique-beige);
    position: relative;
}

.product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.product-card:hover .product-image-container img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--renique-gold);
    color: var(--renique-white);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-info {
    padding: 1.5rem 0;
    text-align: center;
}

.product-category {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: var(--renique-gold);
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.product-price {
    font-weight: 600;
    color: var(--renique-maroon);
}

.product-link {
    position: absolute;
    inset: 0;
    z-index: 10;
}

/* Section Header */
.section-header {
    margin-bottom: var(--space-lg);
    text-align: center;
}

.section-header h2 {
    font-size: 3rem;
    color: var(--renique-maroon);
    margin-bottom: 1rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: #666;
}

/* Reviews */
.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.review-card {
    background: var(--renique-white);
    padding: var(--space-md);
    border: 1px solid var(--renique-beige);
    position: relative;
}

.review-stars {
    color: var(--renique-gold);
    margin-bottom: 1rem;
}

.review-text {
    font-style: italic;
    margin-bottom: 1.5rem;
}

.review-author {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
}

/* Instagram Gallery */
.insta-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.insta-item {
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insta-item:hover .insta-overlay {
    opacity: 1;
}

.insta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(90, 11, 22, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-fast);
}

.insta-section {
    padding-bottom: 0;
}

/* Footer */
footer {
    background: var(--renique-charcoal);
    color: var(--renique-white);
    padding: var(--space-xl) 0 var(--space-md);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    font-size: 2rem;
    color: var(--renique-gold);
    margin-bottom: 1.5rem;
    display: block;
}

.footer-links h4 {
    color: var(--renique-gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: #aaa;
    font-size: 0.95rem;
}

.footer-links ul li a:hover {
    color: var(--renique-gold);
}

.footer-bottom {
    padding-top: var(--space-md);
    border-top: 1px solid #333;
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: #666;
}

/* Placeholder Helpers */
.placeholder-image {
    background: linear-gradient(45deg, var(--renique-beige), var(--renique-cream));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--renique-gold);
}

.placeholder-image::after {
    content: 'RENIQUE';
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.3em;
    opacity: 0.3;
}

/* Responsive */
@media (max-width: 1024px) {
    .category-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-content { width: 100%; padding-right: 5%; }
    .hero-image-wrapper { width: 40%; opacity: 0.6; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .insta-grid { grid-template-columns: repeat(3, 1fr); }
    .reviews-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .hero-image-wrapper { width: 100%; z-index: 1; }
    .hero-content { position: relative; z-index: 2; color: var(--renique-white); width: 100%; }
    .hero h1 { color: var(--renique-white); }
    .hero p { color: var(--renique-white); }
    .category-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-smooth);
}

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