/* 
   Ellateda Detalle - Corporate Luxury
   Theme: Authoritative, Structured, High-End
*/

:root {
    /* Color Palette - Cream / Earthen */
    --color-charcoal: #1C1C1C;
    --color-black-rich: #F9F8F4;
    /* Cream Background */
    --color-black-pure: #FFFFFF;
    --color-gold-muted: #A08040;
    /* Darker Gold for contrast */
    --color-gold-light: #BFA15F;
    --color-bone: #1C1C1C;
    /* Dark text */
    --color-gray-soft: #555;
    --color-gray-dark: #E0E0E0;
    /* Light borders */

    --color-overlay: rgba(255, 255, 255, 0.4);

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;

    /* Spacing & Layout */
    --section-padding: 7rem;
    --container-width: 1240px;
}

/* Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--color-black-rich);
    color: var(--color-bone);
    line-height: 1.7;
    font-weight: 300;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--color-bone);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

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

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

.bg-darker {
    background-color: #E2D7C5;
    /* Warm Tobacco Tan */
}

.bg-black {
    background-color: #2C2620;
}

.bg-gold-gradient {
    background: linear-gradient(135deg, #F9F8F4 0%, #ECEAE4 100%);
    border-top: 1px solid #D1C0A0;
    border-bottom: 1px solid #D1C0A0;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

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

/* Typography Scale */
.section-label {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-gold-muted);
    margin-bottom: 1.25rem;
    padding-left: 3rem;
    position: relative;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 2rem;
    height: 1px;
    background-color: var(--color-gold-muted);
}

h1.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--color-charcoal);
}

p.lead {
    font-size: 1.25rem;
    color: var(--color-bone);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 500;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-solid {
    background-color: var(--color-gold-muted);
    color: #000;
    border-color: var(--color-gold-muted);
}

.btn-solid:hover {
    background-color: var(--color-gold-light);
}

.btn-outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--color-bone);
}

.btn-outline:hover {
    border-color: var(--color-bone);
    background-color: transparent;
}

.btn-dark {
    background-color: #000;
    color: var(--color-gold-muted);
    border: 1px solid var(--color-gold-muted);
}

.btn-dark:hover {
    background-color: var(--color-gold-muted);
    color: #000;
}

.btn-outline-dark {
    border: 1px solid var(--color-charcoal);
    color: var(--color-charcoal);
}

.btn-outline-dark:hover {
    background-color: var(--color-charcoal);
    color: var(--color-black-rich);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(8px);
}

.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo img {
    height: 50px;
    width: auto;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.desktop-nav a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-charcoal);
    /* Dark text for light header */
    font-weight: 500;
}

.desktop-nav a:hover {
    color: var(--color-gold-muted);
}

.desktop-nav .nav-btn {
    border: 1px solid rgba(0, 0, 0, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 2px;
}

.desktop-nav .nav-btn:hover {
    border-color: var(--color-gold-muted);
    color: var(--color-gold-muted);
}

/* Hero */
/* Hero Split Layout */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-black-rich);
    /* Cream background */
    padding-top: 100px;
    padding-bottom: 2rem;
}

/* Remove old overlay */
.hero::after {
    display: none;
}

.aspect-portrait-hero {
    aspect-ratio: 4/5;
    width: 100%;
    margin-top: 2rem;
    box-shadow: 20px 20px 0px rgba(160, 128, 64, 0.1);
    /* Subtle Gold Shadow */
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding-left: 5%;
    color: var(--color-charcoal);
}

/* Reset specific overrides for Hero text elements */
.hero-content h1,
.hero-content h2,
.hero-content p,
.hero-content .lead {
    color: var(--color-charcoal);
}

.hero-subtitle {
    color: #555 !important;
}

.eyebrow {
    display: block;
    color: var(--color-gold-muted);
    /* Return to muted gold */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.hero-actions {
    margin-top: 2.5rem;
    display: flex;
    gap: 1.5rem;
}

/* Corporate Section */
.stats-row {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #222;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    color: var(--color-gold-muted);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.image-placeholder {
    background: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    height: 100%;
    width: 100%;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.aspect-landscape {
    aspect-ratio: 16/9;
}

/* Features / Process */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(191, 161, 95, 0.3);
}

.icon-box {
    margin-bottom: 1.5rem;
}

.icon-shape {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold-muted);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--color-bone);
    font-family: var(--font-sans);
    font-weight: 500;
}

.feature-card p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Product Catalog List Style */
.split-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}

.link-arrow {
    color: var(--color-gold-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.product-stripe {
    display: flex;
    flex-direction: column;
}

.product-item {
    display: grid;
    grid-template-columns: 100px 1fr 150px;
    gap: 3rem;
    align-items: center;
    padding: 2rem 0;
    border-bottom: 1px solid #222;
    transition: background 0.3s ease;
}

.product-item:first-child {
    border-top: 1px solid #222;
}

.product-item:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.aspect-small {
    aspect-ratio: 1/1;
    width: 100px;
    height: 100px;
    background: #222;
}

.prod-details h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.meta {
    font-family: var(--font-sans);
    color: var(--color-gold-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.prod-profile {
    text-align: right;
    font-size: 0.9rem;
    color: #555;
}

/* Distribution CTA */
.cta-box {
    max-width: 800px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-box p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2.5rem;
}

/* Corporate Footer */
.corporate-footer {
    color: #CCC;
    /* Light text for dark footer */
    border-top: 1px solid #444;
    padding-top: 5rem;
    font-size: 0.9rem;
}

.grid-footer {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.5fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1.5rem;
    opacity: 1;
    /* Full opacity for dark on light */
}

.footer-col h4 {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-bone);
    margin-bottom: 1.5rem;
}

.footer-col ul li {
    margin-bottom: 0.8rem;
    color: #CCC;
}

.footer-col a:hover {
    color: var(--color-gold-muted);
}

.contact-details li {
    margin-bottom: 1rem;
    color: #CCC;
}

.newsletter-form {
    display: flex;
    border-bottom: 1px solid #555;
}

.newsletter-form input {
    background: none;
    border: none;
    padding: 0.5rem 0;
    color: #fff;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: none;
    border: none;
    color: var(--color-gold-muted);
    cursor: pointer;
    font-size: 1.2rem;
}

.copy-row {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid #1a1a1a;
    font-size: 0.8rem;
}

.legal-links a {
    margin-left: 2rem;
}

/* Mobile / Responsive */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-toggle span {
    display: block;
    width: 30px;
    height: 1px;
    background: var(--color-charcoal);
    transition: all 0.3s;
}

@media (max-width: 900px) {
    .h1.hero-title {
        font-size: 3rem;
    }

    .grid-2,
    .features-grid,
    .grid-footer {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-content {
        padding-left: 0;
        text-align: center;
    }

    .hero-actions {
        justify-content: center;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .product-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

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

    .aspect-small {
        margin: 0 auto;
    }
}

/* Animations (Same as before) */
.fade-in {
    opacity: 0;
    transition: opacity 1s, transform 1s;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s, transform 1s;
}

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

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

.delay-3 {
    transition-delay: 0.6s;
}