/* Dekton-inspired Design System */
:root {
    --color-bg: #FFFFFF;
    --color-text: #232323;
    --color-accent: #B41660;
    /* Pink from original design (or user request) */
    --color-dark: #1A1A1A;
    --color-light-grey: #F5F5F5;

    --font-primary: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;

    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 32px;
    --spacing-lg: 64px;
    --spacing-xl: 120px;

    --container-width: 1400px;
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3rem;
    text-transform: uppercase;
}

h2 {
    font-size: 2.25rem;
    font-weight: 300;
    /* Sophisticated thin look for subheads */
}

p {
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    font-size: 1.1rem;
    color: #4a4a4a;
}

/* Layout Utilities */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

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

.section--dark {
    background-color: var(--color-dark);
    color: white;
}

.section--dark p {
    color: #cccccc;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--color-dark);
    padding: 5px 0;
    transition: transform 0.3s ease;
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

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

.nav__link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav__link:hover {
    color: var(--color-accent);
}

.hamburger {
    display: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--color-dark);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu a {
    color: white;
    font-size: 1.5rem;
    margin: 1rem 0;
    text-transform: uppercase;
}

/* Hero Section */
.hero {
    position: relative;
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    /* Darken for text contrast */
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 var(--spacing-md);
    color: white;
}

.hero__title {
    font-size: 4vw;
    margin-bottom: var(--spacing-md);
    font-weight: 700;
}

.hero__subtitle {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: var(--spacing-lg);
    color: #e0e0e0;
}

.btn {
    display: inline-block;
    padding: 16px 32px;
    background-color: var(--color-accent);
    color: var(--color-dark);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #fff;
    transform: translateY(-2px);
}

/* Split Section (Image Text) */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
}

.split-section__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-lg);
}

.split-section__image {
    position: relative;
    overflow: hidden;
}

.split-section__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-section:hover .split-section__image img {
    transform: scale(1.05);
}

.split-section--reverse .split-section__content {
    order: 2;
}

.split-section--reverse .split-section__image {
    order: 1;
}

/* Grid Section */
.grid-section {
    padding: var(--spacing-xl) 0;
    background: var(--color-light-grey);
}

.grid-section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.grid-item {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
}

.grid-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer__links {
    margin: var(--spacing-md) 0;
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.footer__links a {
    color: #888;
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: white;
}

.footer__copy {
    color: #555;
    font-size: 0.8rem;
    margin-top: var(--spacing-md);
}

.text-logo {
    text-decoration: none;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    text-transform: uppercase;
    display: flex;
    flex-direction: column;
    /* Stack them or row? User said "Deco Marmol" and "Alonso". Let's try row first or stick to current layout. The original logo was likely wide. Let's try inline-block or flex. */
    line-height: 1.2;
}

.logo-deco {
    color: #B41660;
    /* Pink */
}

.logo-alonso {
    color: #FFFFFF;
    /* White */
}

/* Responsive adjustments if needed */
@media (max-width: 900px) {
    .text-logo {
        font-size: 1.2rem;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .hero__title {
        font-size: 2.5rem;
    }

    .split-section {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .split-section__content {
        padding: var(--spacing-md);
    }

    .split-section__image {
        height: 300px;
    }

    .split-section--reverse .split-section__content {
        order: 1;
    }

    .split-section--reverse .split-section__image {
        order: 2;
    }

    .nav {
        display: none;
        /* Hide desktop nav */
    }

    .hamburger {
        display: block;
        /* Show hamburger */
    }
}